Radial Basis Function NN

2 ビュー (過去 30 日間)
Tiago Dias
Tiago Dias 2019 年 11 月 27 日
回答済み: Anshika Chaurasia 2020 年 8 月 6 日
Hello,
I got my predictors 523 observations and 41 variables (523x41) and I got my response (523 observations x 1 variable).
I used net and feedforward to build a neural network with different types of algorithms.
I came across the radial basis function:
QUESTION 1
net = newrb(P,T,goal,spread,MN,DF)
but I dont understand the inputs of the function concerning P and T,
should it be:
net = newrb(predictors',response')
because
net = newrb(predictors,response) %gives me a error saying predictiors and response are not of the same length.
QUESTION 2
is there a way to see the neural network it self? like on Neural Network Fitting App?
Thanks for your time!

回答 (1 件)

Anshika Chaurasia
Anshika Chaurasia 2020 年 8 月 6 日
Answer 1
It should be:
net = newrb(predictors',response')
Please refer to the newrb and Radial Basis Neural Networks documentations for more information about inputs P and T and some examples.
Answer 2
For visualization of the neural network use:
view(net)
Please refer to the view documentation.

Community Treasure Hunt

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

Start Hunting!

Translated by