W3cubDocs

/TensorFlow

tf.keras.ops.add

Add arguments element-wise.

Args
x1 First input tensor.
x2 Second input tensor.
Returns
The tensor containing the element-wise sum of x1 and x2.

Examples:

x1 = keras.ops.convert_to_tensor([1, 4])
x2 = keras.ops.convert_to_tensor([5, 6])
keras.ops.add(x1, x2)
array([6, 10], dtype=int32)

keras.ops.add also broadcasts shapes:

>>> x1 = keras.ops.convert_to_tensor(
...     [[5, 4],
...      [5, 6]]
... )
>>> x2 = keras.ops.convert_to_tensor([5, 6])
>>> keras.ops.add(x1, x2)
array([[10 10]
       [10 12]], shape=(2, 2), dtype=int32)

© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/keras/ops/add