I want to forecast for next period
이전 댓글 표시
I read source code of nax neural network on http://in.mathworks.com/help/fuzzy/examples/chaotic-time-series-prediction.html?refresh=true but i dntd find forecasting time series for next period exampl for one month or more or less plz can any one help to get the source for forecasting next period or understanding
thank u
답변 (2개)
Greg Heath
2015년 7월 16일
Since you obviously wrote NAX in error, it is not clear whether you meant NAR or NARX. Assuming NAR,
1. Start with the documentation and simple example
help narnet
doc narnet
2. Consider the other NARNET examples
help nndatasets
doc nndatasets
3. Search the NEWGROUP and ANSWERS for relevant posts
NARNET
NARNET tutorial
NARNET greg
NARNET tutorial greg
Hope this helps.
Greg
Greg Heath
2015년 7월 17일
2005 to 2010 is 5 years, not 3.
[ I N ] = size(input)% = ?
[ O N ] = size(target)% = ?
Try divideblock with a (4/6)/(1/6)/(1/6) data division over 6 years.
Sounds straightforward using some of my posted code.
Do not use test data to estimate significant lags, number of hidden nodes, etc.
Hope this helps.
Greg
댓글 수: 7
abduall hassn
2015년 7월 22일
편집: abduall hassn
2015년 7월 22일
Greg Heath
2015년 7월 23일
Apply your code to one of the NARNET example data sets other than the simplenar-dataset set and I will compare results.
help nndatasets
doc nndatasets
chickenpox_dataset- 498 Monthly chickenpox instances dataset
ice_dataset - 219 Global ice volume dataset
laser_dataset - 10093 Chaotic far-infrared laser dataset
oil_dataset - 180 Monthly oil price dataset.
river_dataset - 264 River flow dataset.
solar_dataset - 2899 Sunspot activity dataset.
Greg
Greg Heath
2015년 7월 23일
How often are your 2551 measurements ?
Daily: 2551/365.25 ~ 7 years
So you want to use 2521 to predict the last 30?
abduall hassn
2015년 7월 23일
Greg Heath
2015년 7월 23일
OK. However, how will you know if the answer is correct?
If you don't, I suggest first doing 2521 + 30. Once that works then you can update the net with the last 30 and then predict 2552 t0 2581.
Have you used the autocorrelation function to find the significant lags?
abduall hassn
2015년 7월 23일
abduall hassn
2015년 8월 31일
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!