| View source on GitHub | 
Layer that computes the maximum (element-wise) a list of inputs.
tf.keras.layers.Maximum(
    **kwargs
)
  It takes as input a list of tensors, all of the same shape, and returns a single tensor (also of the same shape).
tf.keras.layers.Maximum()([np.arange(5).reshape(5, 1),
                           np.arange(5, 10).reshape(5, 1)])
<tf.Tensor: shape=(5, 1), dtype=int64, numpy=
array([[5],
     [6],
     [7],
     [8],
     [9]])>
 x1 = tf.keras.layers.Dense(8)(np.arange(10).reshape(5, 2)) x2 = tf.keras.layers.Dense(8)(np.arange(10, 20).reshape(5, 2)) maxed = tf.keras.layers.Maximum()([x1, x2]) maxed.shape TensorShape([5, 8])
| Args | |
|---|---|
| **kwargs | standard layer keyword arguments. | 
    © 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/versions/r2.9/api_docs/python/tf/keras/layers/Maximum