无法在Tensorflow中运行get_session_tensor

时间:2018-09-30 10:02:18

标签: tensorflow

我试图了解为什么我在tf.get_session_tensor中遇到错误。

下面是我的代码:

https://github.com/subhobrata/Deep-Learning/blob/master/Untitled1.ipynb

请帮助我解决此错误。

1 个答案:

答案 0 :(得分:1)

您在中声明了float32类型:

p, a = tf.get_session_tensor(h.handle, tf.float32)

但是c是int类型的,因此您应该这样声明

p, a = tf.get_session_tensor(h.handle, tf.int32)

或将其类型更改为float