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。
上一篇: java算法:FIFO队列
下一篇: 非递归实现DFS的DFS函数体