Neural Networks activation function [closed]

2019-07-09 05:33发布

问题:

The only activation function I have seen for neural networks so far is the logistic function. Are there other functions commonly used? If so, how do you choose the activation function?

回答1:

Yeap there are: http://en.wikipedia.org/wiki/Activation_function

Selection depends on the problem.



回答2:

Hyperbolic Tangent function is another widely used activation function for neural network. The hyperbolic tangent function will produce positive numbers between -1 and 1. Because the hyperbolic tangent activation function has a derivative, it can be used with gradient descent based training methods.

You can also use your own custom activation function but you need to design your own cost function. For novice, it is better you follow the literature.