Skip to content

feat: Added Scaled Exponential Linear Unit Activation Function #9025

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
"""
Implements the Scaled Exponential Linear Unit or SELU function.

The function takes a vector of K real numbers and two real numbers
alpha(default = 1.6732) & lambda (default = 1.0507) as input and
then applies the SELU function to each element of the vector.
SELU is a self-normalizing activation function. It is a variant
of the ELU. The main advantage of SELU is that we can be sure
that the output will always be standardized due to its
self-normalizing behavior. That means there is no need to
include Batch-Normalization layers.

References :
https://iq.opengenus.org/scaled-exponential-linear-unit/
"""

import numpy as np


def scaled_exponential_linear_unit(
vector: np.ndarray, alpha: float = 1.6732, _lambda: float = 1.0507
) -> np.ndarray:
"""
Applies the Scaled Exponential Linear Unit function to each element of the vector.
Parameters : vector : np.ndarray
alpha : float (default = 1.6732)
_lambda : float (default = 1.0507)
Returns : np.ndarray
Formula : f(x) = _lambda * x if x > 0
_lambda * alpha * (e**x - 1) if x <= 0
Examples :
>>> scaled_exponential_linear_unit(np.array([1.3, 3.7, 2.4]))
Output : np.array([1.36591, 3.88759, 2.52168])

>>> scaled_exponential_linear_unit(np.array([2.342, -3.455, -7.2116, 0.0, -4.532]))
Output : np.array([2.4607394, -1.70249977, -1.75673386, 0., -1.73911634])
"""
return _lambda * np.where(vector > 0, vector, alpha * (np.exp(vector) - 1))


if __name__ == "__main__":
import doctest

doctest.testmod()