Why sets Matlab automatically the activation functions for a neural network like this?
6 ビュー (過去 30 日間)
古いコメントを表示
I am asking myself why chooses Matlab always automatically for the hidden layer tan-Sigmoid and for the output layer pureline as an activation function?
If it refers to a study, which discovers, that those activation functions are more efficient than the other, please let me know.
0 件のコメント
回答 (3 件)
Greg Heath
2019 年 6 月 29 日
That is a standard configuation for a neural net. It's operation is explained in every elementary text.
Thank you for formally accepting my answer
Greg
3 件のコメント
Greg Heath
2019 年 7 月 30 日
編集済み: Greg Heath
2019 年 7 月 30 日
Sorry, I lost all of my several hundred books via a moving van error..
See your library.
Greg
Greg Heath
2019 年 7 月 30 日
The simplest useful approximation is is a series of blocks with different heights and widths.
The simplest useful DIFFERENTIABLE approximation is is a series of ROUNDED blocks with different heights and lengths.
Combining sigmoids fits the bill!
GREG
Sai Bhargav Avula
2019 年 8 月 16 日
As mentioned by others thats the default setup in MATLAB.
Coming to comparision between different activation functions.
It is generally recommended to use ReLU as the activation function. If your model suffers form dead neurons during training we should use leaky ReLu or Maxout function.
The Sigmoid and Tanh are generally not preferred as they suffer with vanishing Gradient Problem which causes a lots of problems to train,degrades the accuracy and performance of a deep Neural Network Model.
参考
カテゴリ
Help Center および File Exchange で Sequence and Numeric Feature Data Workflows についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!