标签: python tensorflow
以下代码会抛出TypeError
TypeError
import tensorflow as tf h=tf.int32(6)
错误:
Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'DType' object is not callable
为什么?
答案 0 :(得分:3)
tf.int32对象不是构造函数。如果要创建值为tf.int32的{{1}}类型的张量,则应使用tf.constant(),如下所示:
tf.int32
tf.constant()
6