summary of activation function in deep learning
1. Introduction
The neaural network is linear without non-linear activation function, we add non-linear transformation for complex task, such as language translation or image classification. However, there are lot of activation functions, what's the diffetence between them and what are the characteristics of corresponding activation function? To analyze their features, we write this document.
2. features of different activation function
2.1 setp function
mathematically
\begin{array}{l}f(x)=1, \text { if } \mathrm{x}>=0 \\f(x)=0, \text { if } \mathrm{x}<0\end{array}
diagram

description:
2.2 Identity
mathematically
diagram

2.3 Relu
mathematically
diagram

2.4 Sigmoid
mathematically
diagram

2.5 tanh
mathematically
diagram

2.6 Leaky ReLU
mathematically
diagram

2.7 PReLU (Parameteric Rectified Linear Unit)
mathematically
diagram

2.8 RReLU (Randomized Leaky Rectified Linear Unit)
mathematically
diagram

Reference
1 [what, why and which??activation functions]( https://medium.com/@snaily16/what-why-and-which-activation-functions-b2bf748c0441#:~:text=4.1 Linear or Identity Activation ,signal%20proportional%20to%20the%20input. "what, why and which??activation functions")
2 ReLU paper
3 PReLU paper
4 RReLU paper
浙公网安备 33010602011771号