plot the performance of a neural network
Show older comments
Hi
Look at this code please:
P = [ -1 -1 2 2 ;0 5 0 5];
T = [-1 -1 1 1];
net = newff( minmax(P),[3 1],{'tansig','purelin'}, 'traingd']; [net, tr]= train(net, P, T);
a = sim(net, P);
After Running it, when i click to see the peformance (MSE versus epochs) it shows a plot comparing train , test and validation data. How can i chande train and test data and not having validation?
thanks in advance
Accepted Answer
More Answers (0)
Categories
Find more on Downloads 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!