NN Toolbox: What is the difference between "performance" and "plotperform"?
显示 更早的评论
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?
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Define Shallow Neural Network Architectures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!