tf.keras.activations.relu
tf.keras.activations.relu(
x,
alpha=0.0,
max_value=None
)
Defined in tensorflow/python/keras/activations.py
.
@tf_export('keras.activations.relu')
def relu(x, alpha=0., max_value=None):
return K.relu(x, alpha=alpha, max_value=max_value)