ELU layer
- 원본 링크 : https://keras.io/api/layers/activation_layers/elu/
- 최종 확인 : 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 >= 0
Arguments
- alpha: float, slope of negative section. Defaults to
1.0
. - **kwargs: Base layer keyword arguments, such as
name
anddtype
.