-
Notifications
You must be signed in to change notification settings - Fork 633
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
training question #238
Comments
still no answer? |
I have encountered the same problem. Maybe you can check if the image suffix in the "kitti_train_files.txt" is "jpg", but the suffix of the kitti images is "png". |
@jiansheng1993 Hi, have you solved the problem? I have encountered the same mistake. |
hi please i encounter the same problem any solution |
@jiansheng1993 @qiutzh @yamnaben I had this same problem and I resolved it, though I'm not sure its universal. I think the main problem from this means that queue wants to dequeue but it can't. This means its something wrong with requesting the training file (so check your file names in the train image txt file). The problem in the end was in line 100 of monodepth_dataloader.py.
If you request the variable through sess.run, you will see that it does not work
This gives a correct int when requested through sess.run. Hopefully this works for you! |
OutOfRangeError (see above for traceback): RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed and has insufficient elements (requested 8, current size 0)
[[Node: shuffle_batch = QueueDequeueManyV2[component_types=[DT_FLOAT, DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/device:CPU:0"](shuffle_batch/random_shuffle_queue, shuffle_batch/n)]]
How to deal with this issue when I train the model in kitti ???
The text was updated successfully, but these errors were encountered: