Not able to run object detection training locally. Did all steps in https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/installation.md (tests are passing), followed https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/running_pets.md (I copied data to ~/gcs/data instead of gs bucket), got stuck on trying to run training and eval locally.
$ python object_detection/model_main.py --pipeline_config_path=~/gcs/data/faster_rcnn_resnet101_pets.config --model_dir=~/gcs/data/ --num_train_steps=50000 --num_eval_steps=2000 --alsologtostderr
/home/paperspace/anaconda3/lib/python3.6/site-packages/h5py/__init__.py:34: FutureWarning: Conversion of the second argument of issubdtype from float to np.floating is deprecated. In future, it will be treated as np.float64 == np.dtype(float).type.
from ._conv import register_converters as _register_converters
Traceback (most recent call last):
File "object_detection/model_main.py", line 26, in
from object_detection import model_lib
File "/home/paperspace/tensorflow/models/research/object_detection/model_lib.py", line 26, in
from object_detection import eval_util
File "/home/paperspace/tensorflow/models/research/object_detection/eval_util.py", line 28, in
from object_detection.metrics import coco_evaluation
File "/home/paperspace/tensorflow/models/research/object_detection/metrics/coco_evaluation.py", line 21, in
from object_detection.utils import object_detection_evaluation
File "/home/paperspace/tensorflow/models/research/object_detection/utils/object_detection_evaluation.py", line 842
print 'Scores and tpfp per class label: {}'.format(class_index)
^
SyntaxError: invalid syntax
Are you using python 2 or python 3. This line
/home/paperspace/anaconda3/lib/python3.6/site-packages/h5py/init.py:34
seems to suggest its python 3 and when you print in python 3 you have to use parenthesis. The error happens in a print statement that does not follow this syntax. You will either have to update the code or run it with python 2.
The current code was written in Python 2. If you run it through Python 3.X, several py files need to be revised. I documented necessary revisions based on my experience click here and hopefully they can help you.
I'm seeing the exact same error when running the script on Windows 10, Python 3.6. On Windows tensorflow-gpu is not available for Python 2.7.
@calebh try my revisions on the code and see if they help you. See it here
@cosmojiang yes your fixes worked 馃檪. Hopefully they will be incorporated into the repo soon.
This should be gone now.
Most helpful comment
The current code was written in Python 2. If you run it through Python 3.X, several py files need to be revised. I documented necessary revisions based on my experience click here and hopefully they can help you.