VisualComputingInstitute/TrackR-CNN

OutOfRangeError

EddieEduardo opened this issue · 3 comments

**Hi, thanks for sharing the source codes.

When training on my own dataset ( same format with KITTI, and I also put my dataset into data/KITTI/train/... ), the OutOfRangeError raised on my end (I just changed the batch size to 2 ), concrete errors are as follows:**

"""
Caused by op 'IteratorGetNext', defined at:
File "main.py", line 39, in
tf.app.run(main)
File "C:\Users\xmt1\Anaconda3\envs\py35\lib\site-packages\tensorflow\python\platform\app.py", line 125, in run
_sys.exit(main(argv))
File "main.py", line 34, in main
engine = Engine(config)
File "D:\TrackRCNN\TrackR-CNN-master\core\Engine.py", line 41, in init
name="trainnet")
File "D:\TrackRCNN\TrackR-CNN-master\network\Network.py", line 16, in init
self.input_tensors_dict = dataset.create_input_tensors_dict(self.batch_size)
File "D:\TrackRCNN\TrackR-CNN-master\datasets\Dataset.py", line 303, in create_input_tensors_dict
res = tfdata.make_one_shot_iterator().get_next()
................
OutOfRangeError (see above for traceback): End of sequence
[[node IteratorGetNext (defined at D:\TrackRCNN\TrackR-CNN-master\datasets\Dataset.py:303) ]]
"""

Could you tell me how to fix this error ? Looking forward to your reply.

This is a bit difficult to debug from the error message... Can you check if your files are correctly loaded in read_inputfile_lists in KITTI_segtrack.py?

Closing for now, please reopen if needed

Hi EddieEduardo,
Did you fix this error? I am getting the same error.