Why Activation Functions

In basic network like perceptron, all of the relationships are linear which can’t include all the situations. Whatever the hidden layer is, the connections are still linear. Therefore, activation functions are needed. After calculating every result with the activation, it is possible to get nonlinear functions.

What is activation functions

Activation is a simple function that can transform the result of linear calculation into nonlinear result.

Several common activation functions

  • Relu
    Relu( The Rectified Linear Unit) is a often used activation function in hidden layers.
    Function: Activiation Functions
    Figure:
    Activiation Functions

  • Sigmoid
    Also known as logistic function. It is usually seen in the study of herd population. In computer science, it can mapping the output into variables between 0 and 1.
    Function:Activiation Functions
    Figure:
    Activiation Functions

  • Tanh
    Tanh (also known as Hyperbolic tangent) is generated by sinh and cosh
    Function: Activiation Functions
    Figure:Activiation Functions

  • Softmax
    Sometimes, when doing project like recognizing the handwritten numbers, we need the model to output a single result. Therefore, the last dense layer is typically connected to a Softmax function that turns the output values into probabilities.
    Function:Activiation Functions
    Figure: Activiation Functions

相关文章:

  • 2021-11-15
  • 2021-05-14
  • 2021-06-27
  • 2021-12-24
  • 2021-08-28
  • 2021-09-26
  • 2022-02-14
  • 2022-01-04
猜你喜欢
  • 2021-11-17
  • 2022-12-23
  • 2021-08-03
  • 2021-11-26
  • 2022-01-07
相关资源
相似解决方案