TypeError:'DType'对象不可调用

时间:2017-12-31 14:43:00

标签: python tensorflow

以下代码会抛出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

为什么?

1 个答案:

答案 0 :(得分:3)

tf.int32对象不是构造函数。如果要创建值为tf.int32的{​​{1}}类型的张量,则应使用tf.constant(),如下所示:

6