how can use static feedforward neural network to predict futre observation
Show older comments
As newff the appropriate choice or we must use others functions like feedforwardnet???
Accepted Answer
More Answers (2)
Greg Heath
on 30 Jun 2015
Use one of these
help nndatasets (Also see : doc nndatasets)
Single time-series prediction involves predicting the next value of a time-series given its past values.
simplenar_dataset - Simple single series prediction dataset.
chickenpox_dataset - Monthly chickenpox instances dataset.
ice_dataset - Gobal ice volume dataset.
laser_dataset - Chaotic far-infrared laser dataset.
oil_dataset - Monthly oil price dataset.
river_dataset - River flow dataset.
solar_dataset - Sunspot activity dataset
Unlike the datasets for FITNET, PATTERNNET and NARXNET, I have not posted these NARNET data set sizes in the NEWSGROUP.
Word to the wise:
ALWAYS begin using ALL of the defaults. This will simplify your code so much that you will think that you know what you are doing. To see what I mean see the documentation examples at
help fitnet % default H = 10
doc fitnet
and
help narnet % defaults FD = 1:2, H = 10
doc narnet
TYPICALLY, the only default you may have to change is, H, the number of hidden nodes!
However, if that doesn't work you may have to
1. Design 10 or more nets to mitigate unfortunate choices of random initial weights and random data divisions.
2. Determine the statistically significant lags from the target autocorrelation function as I have posted in the NEWSGROUP.
Hope this helps
If you want to accept this answer instead of the previous one, I don't mind
Greg
Greg Heath
on 2 Jul 2015
If you want to use the static net FITNET to predict d timesteps ahead of a single N timestep timeseries, use defaults and double ( NOT CELL ) variables
input = data( 1:N-d); % No transpose;
target = data( 1+d : N );
MSE00 = var(target',1) % Reference MSE
net = fitnet; % default H = 10
net.divideParam.valRatio = 10/100;
net.divideParam.testRatio = 20/100;
[net tr output error ] = train(net, input, target);
%output = net(input); error = target - output;
NMSE = mse(error)/MSE00 % Range [ 0 1 ]
R2 = 1- NMSE
% Rsquared = fraction of target variance modeled by the net
Hope this helps.
Greg
11 Comments
coqui
on 2 Jul 2015
Greg Heath
on 3 Jul 2015
yes
coqui
on 3 Jul 2015
coqui
on 3 Jul 2015
coqui
on 3 Jul 2015
coqui
on 3 Jul 2015
coqui
on 3 Jul 2015
Greg Heath
on 3 Jul 2015
> NMSE=0.3943 and R2=0.6057.
I get very similar results from 10 trials: 0.568(thrice),0.602 (thrice),0.604(once)&0.611(thrice).
After looking at the plot of data I'm not surprised.
There is no reason why NARNET will be any better than fitnet.
Timedelaynet and Narxnet are for separate inputs and outputs.
Next, consider increasing the number of lags and hidden nodes.
Ntrneq ~ 0.7*3263 ~ 2283 No. training equations
Nw ~ (1+1+1)*10+11*1 = 41 unknown weights
Ntrneq can easily support a factor of 50 increase in weights.
Hope this helps.
Greg
coqui
on 5 Jul 2015
Greg Heath
on 6 Jul 2015
I think that using narnet is better than usin fitnet for timeseries because you can close the loop and predict well beyond the time of the target.
Greg Heath
on 8 Sep 2016
What dataset was used?
Greg
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!