You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
HuangCongQing
changed the title
TensorFlow报错:InvalidArgumentError: You must feed a value for placeholder tensor 'inputs/y_input'
TensorFboard报错:InvalidArgumentError: You must feed a value for placeholder tensor 'inputs/y_input'
Jul 29, 2020
HuangCongQing
changed the title
TensorFboard报错:InvalidArgumentError: You must feed a value for placeholder tensor 'inputs/y_input'
Tensorboard报错:InvalidArgumentError: You must feed a value for placeholder tensor 'inputs/y_input'
Jul 29, 2020
TensorFlow报错:InvalidArgumentError: You must feed a value for placeholder tensor 'inputs/y_input'
https://blog.csdn.net/zsf442553199/article/details/79869377<br
https://blog.csdn.net/qq_36512295/article/details/100024759
自动模式:https://blog.csdn.net/qq_34197612/article/details/79313430
四种解决方法:https://blog.csdn.net/qq_36512295/article/details/100024759
其实就是汇合记录点的时候,也就是sess.run(merged)的时候需要喂入数据
手动管理模式
注意:tf.summary.merge_all()和tf.summary.merge()区别,多个_all
merge = tf.summary.merge_all()
改成用merge查看需要的量:
merge = tf.summary.merge([s_loss,s_acc])
解决方法:
修改为
自动管理(推荐)
注意:自动管理模式下,导入已保存的模型继续训练时,会抛异常,该种场景下建议使用手动模式
The text was updated successfully, but these errors were encountered: