在tensorflow里,区别在于输出的是否是值
比如,a = [[1, 2], [3, 4]]
print(a.numpy())
[[1 2] [3 4]]
print(a)
tf.Tensor( [[1 2] [3 4]], shape=(2, 2), dtype=int32)
a返回的是张量
在tensorflow里,区别在于输出的是否是值
比如,a = [[1, 2], [3, 4]]
print(a.numpy())
[[1 2] [3 4]]
print(a)
tf.Tensor( [[1 2] [3 4]], shape=(2, 2), dtype=int32)
a返回的是张量