NN Toolbox: What is the difference between "performance" and "plotperform"?
Mostra commenti meno recenti
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?
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Define Shallow Neural Network Architectures in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!