📅  最后修改于: 2023-12-03 15:04:10.998000             🧑  作者: Mango
tensorflow.math.multiply()
是 TensorFlow 中的一个函数,用于对两个张量(Tensor)执行元素级别的乘法操作。它将两个输入张量的对应元素逐一相乘,并返回一个新的张量作为结果。
tf.math.multiply(x, y, name=None)
参数:
x
:张量,输入之一。y
:张量,输入之二。name
:可选,操作的名称。返回:
x
和 y
对应元素的乘积。import tensorflow as tf
x = tf.constant([1, 2, 3])
y = tf.constant([4, 5, 6])
result = tf.math.multiply(x, y)
print(result)
输出:
tf.Tensor([ 4 10 18], shape=(3,), dtype=int32)
在上面的示例中,我们创建了两个常量张量 x
和 y
。然后,通过调用 tf.math.multiply()
函数将它们相乘得到新的张量 result
。最后,我们打印出结果。
更多关于 tf.math.multiply()
函数的信息可以参考 TensorFlow 官方文档的相关部分。