欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Tensorflow OutOfRangeError: FIFOQueue '_1_batch/fifo_queue' is closed and has insufficient elements

程序员文章站 2024-03-18 11:08:40
...

训练中突然报错(第一个epoch中途):

OutOfRangeError (see above for traceback): FIFOQueue '_1_batch/fifo_queue' is closed and has insufficient elements (requested 2, current size 1)
 [[Node: batch = QueueDequeueManyV2[component_types=[DT_FLOAT, DT_UINT8], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/device:CPU:0"](batch/fifo_queue, batch/n)]]

一般这种情况应该是数据有问题,但是查看图片并没有发现图片损坏。

解决方法:

我设置的batch_size为2,将shuffle置为false,让其不进行打乱操作,查看打印出来引发error对应的step,找到数据对应的batch,删除整个batch。