Closed Baytwt closed 4 years ago
`a = tf.constant(True) # 布尔类型
print(a)
print(a == True)`
输出:
tf.Tensor(True, shape=(), dtype=bool)
按照书上说的,第二个输出应该是False呀
收到,谢谢!
`a = tf.constant(True) # 布尔类型
print(a)
print(a == True)`
输出:
tf.Tensor(True, shape=(), dtype=bool)
tf.Tensor(True, shape=(), dtype=bool)
按照书上说的,第二个输出应该是False呀