regarding Neural network toolbox

조회 수: 2 (최근 30일)
Kshitij Tripathi
Kshitij Tripathi 2015년 12월 15일
댓글: Walter Roberson 2015년 12월 16일
Dear Sir I want to know that,whether we will implement different transfer function for different neurons on the same layer in matlab Neural Network toolbox

채택된 답변

Greg Heath
Greg Heath 2015년 12월 15일
If you do this you will have to write your own code. An equivalent, but easier alternative might be to use skip layer connections with each layer containing a different type of transfer function.
However, why in the world would you want to do this? A standard MATLAB function like FITNET or PATTERNNET with a single hidden layer with tansig transfer functions is a universal approximator.
Hope this helps.
Greg
  댓글 수: 2
Kshitij Tripathi
Kshitij Tripathi 2015년 12월 16일
ok Thanks Greg Sir,but Just help ,give me the hint,how to write my own code in Matlab to do this.
Walter Roberson
Walter Roberson 2015년 12월 16일
You can see the features you should support by looking at http://www.mathworks.com/help/nnet/ref/purelin.html
Your replacement transfer function should have the same functionality.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2015년 12월 15일
You can if you want to but it would be unusual.
You can supply your own transfer function. That function can do its calculation any way you want, including being position dependent.
I would remind you that if this is not the input layer then you probably do not really know which neurons are participating in which calculation. Neural Network weights are calculated as "whatever works to give the desired result" not by partitioning the network into portions that calculate specific features.

카테고리

Help CenterFile 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!

Translated by