📅  最后修改于: 2023-12-03 15:34:17.457000             🧑  作者: Mango
在 TensorFlow 中,log() 是一个数理函数,它将每个元素值的自然对数应用于给定张量中的所有元素。
tf.math.log(x)
参数说明:
x
:TensorFlow 张量。返回值:
import tensorflow as tf
x = tf.constant([1, 2, 3, 4, 5], dtype=tf.float32)
y = tf.math.log(x)
print(y)
输出:
tf.Tensor(
[0. 0.6931472 1.0986123 1.3862944 1.609438 ], shape=(5,), dtype=float32)