错误 tensorflow
OutOfRangeError (see above for traceback): PaddingFIFOQueue '_1_get_batch/batch/padding_fifo_queue'
或
OutOfRangeError (see above for traceback): PaddingFIFOQueue '_2_get_batch/batch/padding_fifo_queue'
一般是数据的问题,一定要好好检查数据,我的问题出现在,标注文件是空的。
或者局部变量没有初始化,初始化局部变量
init_op = tf.group(tf.global_variables_initializer(), tf.local_variables_initializer())
sess.run(init_op)
或
tf.local_variables_initializer().run()