Custom Activation Functions

Learn how to create and implement custom activation functions.

Custom activation

Activations is an active research field in deep learning and is still at its nascent stage. It’s common among researchers to attempt novel activation ideas. To enable this, custom activation implementation is shown here. Activations can be defined as a conventional Python function. Their gradient should also be defined and registered to TensorFlow for such definitions.

However, the gradient definition is usually not required if the activation is defined using TensorFlow functions. TensorFlow has derivatives predefined for its built-in functions. Therefore, explicit gradient declaration is not required. Therefore, this approach is simpler and is practically applicable in most activation definitions.

Thresholded exponential linear unit

Here, a custom activation, thresholded exponential linear unit (telu), is defined in the equation below.

g(x)={λx,if x>00,if τxτλα(exp x1),if x<τg(x)=\begin{cases}λx,& \text{if}\space x > 0 \\0,& \text{if}\space −τ≤x≤τ \\λα(\text{exp }x−1),& \text{if}\space x<−τ \end{cases}

With this activation, weak nodes smaller than ττ will be deactivated. The idea behind thresholding small activations is applying regularization directly through the telu activation function. This custom activation is a modification of selu. The activation is defined in the code below. The message "Succeeded" means the weights have been learned properly.

Get hands-on with 1200+ tech skills courses.