tf.constant(
value,
dtype=None,
shape=None,
name='Const',
verify_shape=False
)
value
: A constant value (or list) of output type dtype
.
dtype
: The type of the elements of the resulting tensor.
shape
: Optional dimensions of resulting tensor.
name
: Optional name for the tensor.
verify_shape
: Boolean that enables verification of a shape of values.
创建一个常量张量,产生的张量为dtype类型,可指定参数如value和可选的shape(可查看下方的示例)。value参数可以是一个常量值,或者一个dtype类型的值列表。如果value为一个列表,那么这个列表的长度必须小于或等于shape参数所指定的大小(如果设置shape的话)。当列表长度小于shape参数所指定的大小时,缺少的列表项会被填充为列表的