Perfomance value of a neural network.

2 views (last 30 days)
I solved my time series problem using NARX network. I am getting very low performance. how can i improve it???
What are the values of MSE that are good for a network. how should the graphs of correlation should look.
any source how to read these graphs???

Accepted Answer

Greg Heath
Greg Heath on 23 Nov 2014
If
MSE00 = mean(var(t',1))& Average target variance
a useful training goal is
NMSE = mse(t-y)/ mean(var(t',1)) <= 0.01
therefore
net.trainParam.goal = 0.01*MSE00
i.e. the net models more that 99% of the average target variance.
Search NEWSGROUP and ANSWERS using
greg MSEgoal
Hope this helps
Thank you for formally accepting my answer
Greg

More Answers (0)

Categories

Find more on Sequence and Numeric Feature Data Workflows 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!