hello how can i use neural network to model my rainfall data?

 Réponse acceptée

Greg Heath
Greg Heath le 25 Sep 2013
NN regressors/curve-fitters are based on N examples of pairs of I-dimensional input data vectors and the corresponding O-dimensional target output vectors.
So to begin, create your input and target matrices.
[ I N ] = size(input)
[ O N ] = size(target)
Then see the documentation and examples for fitnet.
doc fitnet
help fitnet
Finally check NEWSGROUP and ANSWERS for posts using the searchword
fitnet.
Hope this helps.
Greg

2 commentaires

ok thanks...but i wanted to know how do we actually decide upon the percentage for the training,tests,number of hidden neurons etc...do we have to put it there or the toolbox itself determines the number of neurons etc
That is why I recommended reading the documentation and studying the examples.
Then you can practice with one of the MATLAB data sets with which we are familiar
help nndatasets
Greg

Connectez-vous pour commenter.

Plus de réponses (0)

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!

Translated by