ELU layer
- Original Link : https://keras.io/api/layers/activation_layers/elu/
- Last Checked at : 2024-11-25
ELU class
keras.layers.ELU(alpha=1.0, **kwargs)Applies an Exponential Linear Unit function to an output.
Formula:
f(x) = alpha * (exp(x) - 1.) for x < 0
f(x) = x for x >= 0Arguments
- alpha: float, slope of negative section. Defaults to
1.0. - **kwargs: Base layer keyword arguments, such as
nameanddtype.