Closed philipxue39 closed 4 years ago
x = tf.constant([1.,2.]) x = 10**x tf.math.log(x)/tf.math.log(10.) 输出有些问题,应该是和最开始的输入一样。 <tf.Tensor: id=252, shape=(2,), dtype=float32, numpy=array([1., 2.], dtype=float32)>
这个输出估计搞混了,代码可以的。 谢谢。
x = tf.constant([1.,2.]) x = 10**x tf.math.log(x)/tf.math.log(10.) 输出有些问题,应该是和最开始的输入一样。 <tf.Tensor: id=252, shape=(2,), dtype=float32, numpy=array([1., 2.], dtype=float32)>