算术运算符
算术运算主要包括了:加(tf.add)、减(tf.subtract)、乘(tf.multiply)、除(tf.divide)、取对数(tf.math.log)和指数(tf.pow)等。 因为调用比较简单,下面只演示一个加法例子。
代码:
a = tf.constant([[3, 5], [4, 8]])
b = tf.constant([[1, 6], [2, 9]])
print(tf.add(a, b))
输出:
tf.Tensor(
[[ 4 11]
[ 6 17]], shape=(2, 2), dtype=int32)