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

what does training and validation and all mean in it do i need to calculate these things or are they given by matlab itself?

 채택된 답변

Greg Heath
Greg Heath 2013년 9월 25일

1 개 추천

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

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

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

추가 답변 (0개)

카테고리

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

질문:

2013년 9월 23일

댓글:

2013년 9월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by