gpt4 book ai didi

machine-learning - TensorFlow - 无效参数 : Reshape:0 is both fed and fetched

转载 作者:行者123 更新时间:2023-11-30 08:27:59 24 4
gpt4 key购买 nike

有没有办法在 Tensorflow 中同时提供和获取同一变量?如果不是,为什么不允许这样做?

我收到此错误:

StatusNotOK: Invalid argument: Reshape:0 is both fed and fetched.

最佳答案

您不能同时提供和获取张量。解决方法是添加“tf.identity”操作并获取该操作

tf.reset_default_graph()
a = tf.placeholder(tf.int32)
a_copy = tf.identity(a)
sess = tf.InteractiveSession()
sess.run(a_copy, feed_dict={a:1})

关于machine-learning - TensorFlow - 无效参数 : Reshape:0 is both fed and fetched,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37076208/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com