Hi,
I am interested to know, how can I change the default Gaussian function of Radial Basis Function Neural Network to other functions such as "Cauchy, Multiquadric or inverse multiquadric.
It is mentioned in MATLAB help that it is possible to change the function via Model Setting, but I do not know where is the model setting. I am using a RBF code also nntool.
I will be appreciated if you guide me in this case.
Thanks in advance

 채택된 답변

Greg Heath
Greg Heath 2015년 5월 12일

1 개 추천

You misunderstood my answer.
Instead of using NEWRB which has limited flexibility, consider FITNET for regression and curvefitting or PATTERNNET for classification and pattern-recognition (Both call FEEDFORWARDNET). The catch is REPLACING
net.layers(1).transferFCN = 'tansig';
with
net.layers(1).transferFCN = 'radbas';
to create a RBF with much more flexibility.
After establishing a subset of baseline performances with radbas, you can replace radbas with Cauchy or other functions for comparison.
This will be much, much easier than using NEWRB.
Hope this helps.
Thank you for formally accepting my answer
Greg

추가 답변 (1개)

Greg Heath
Greg Heath 2015년 5월 11일

1 개 추천

I don't know exactly. However my first step would be to look at
type newrb
and consider the consequences of altering
net.layers{1}.transferFcn = 'radbas';
and corresponding statements.
Next, I would look at
type feedforwardnet
and consider the consequences of altering
net.layers{i}.transferFcn = 'tansig';
and corresponding statements.
Hope this helps.
Thank you for formally accepting my answer
Greg

댓글 수: 3

electronx engr
electronx engr 2017년 11월 26일
Sir fitnet uses TRAIN command for regression. If we simply replace 'tansig' with 'radbas', doesn't it mean we are training radial basis network with backpropagation?
Greg Heath
Greg Heath 2017년 11월 26일
1. Yes, it means that backpropagation is used.
2. Yes, the hidden layer functions are radbas
3. HOWEVER, each hidden layer high dimensional radbas function has a different shape and alignment in each projected input plane.
Hope this helps.
Greg
electronx engr
electronx engr 2017년 12월 4일
ok sir.. Thankx a lot

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

카테고리

도움말 센터File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

태그

질문:

2015년 5월 9일

댓글:

2017년 12월 4일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by