Neural Networks activation function [closed]

2019-07-09 05:24发布

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?

2条回答
爱情/是我丢掉的垃圾
2楼-- · 2019-07-09 06:02

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

Selection depends on the problem.

查看更多
唯我独甜
3楼-- · 2019-07-09 06:06

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.

查看更多
登录 后发表回答