TensorFlow 2.0怎么执行加法
时间: 2024-01-22 19:02:38 浏览: 70
简单粗暴 TensorFlow 2.0.pdf
在 TensorFlow 2.0 中,可以使用 tf.add() 函数来执行张量之间的加法操作。例如,下面的代码将两个张量相加:
```
import tensorflow as tf
a = tf.constant([1, 2, 3])
b = tf.constant([4, 5, 6])
c = tf.add(a, b)
print(c)
```
输出结果为:
```
tf.Tensor([5 7 9], shape=(3,), dtype=int32)
```
在这个例子中,我们定义了两个常量张量 a 和 b,并使用 tf.add() 函数将它们相加,得到了一个新的张量 c。最后,我们将结果打印出来。
阅读全文