NN Toolbox: What is the difference between "performance" and "plotperform"?
Show older comments
So running the following code:
[x, t] = bodyfat_dataset;
net = feedforwardnet(10);
net.performParam.regularization = 0.01;
net = train(net, x, t);
y = net(x);
perf = perform(net, t, y)
Produces an output for perf, and then i can also view the performance through the nntraintool as a plot.
What is the difference between these two measures of performance?
Accepted Answer
More Answers (0)
Categories
Find more on Define Shallow Neural Network Architectures in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!