Change of function used in RBF
Afficher commentaires plus anciens
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
Réponse acceptée
Plus de réponses (1)
Greg Heath
le 11 Mai 2015
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 commentaires
electronx engr
le 26 Nov 2017
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
le 26 Nov 2017
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
le 4 Déc 2017
ok sir.. Thankx a lot
Catégories
En savoir plus sur Deep Learning Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!