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)
QUESTION 2
is there a way to see the neural network it self? like on Neural Network Fitting App?
Thanks for your time!