인공지능/인공위성 객체검출 대회
파이썬, 아나콘다 , 텐서플로우
invalueable
2020. 1. 7. 20:51
텐서플로우 버전확인
$ python
> import tensorflow as tf
> tf.__version__
tensorflw / meta graph , chekpoint 란?
tensorflw model을 표현하기위한 2가지 컴포넌트가 필요하다 .
meta garph, checkpoint
오리지날
python train.py --pipeline_config_path='Path to a config file of the model'
--train_dir='Directory to save the checkpoints and training summaries'
작성
python train.py --pipeline_config_path=configs/rbox_cnn_resnet101.config --train_dir=train_result
에러 분석
INFO:tensorflow:Scale of 0 disables regularizer.
=체크포인트 모델과 특징추출 모델이 다르다?
TypeError: Expected int64 passed to parameter 'y' of op 'Greater', got of type 'function' instead.