On this page
tf.keras.backend.maximum
Element-wise maximum of two tensors.
tf.keras.backend.maximum(
x, y
)
Arguments | |
---|---|
x |
Tensor or variable. |
y |
Tensor or variable. |
Returns | |
---|---|
A tensor with the element wise maximum value(s) of x and y . |
Examples:
x = tf.Variable([[1, 2], [3, 4]])
y = tf.Variable([[2, 1], [0, -1]])
m = tf.keras.backend.maximum(x, y)
m
<tf.Tensor: shape=(2, 2), dtype=int32, numpy=
array([[2, 2],
[3, 4]], dtype=int32)>
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.3/api_docs/python/tf/keras/backend/maximum