anns is perform same as tr.best_perf

4 views (last 30 days)
Antrea Plastira
Antrea Plastira on 26 Nov 2022
Answered: Kausthub on 1 Sep 2023
hello, im new to artificial neural networks and im trying to find the training performance, total validation and testing eror, and test performance.
does the command perform have the same use as tr.best_perf ?

Answers (1)

Kausthub
Kausthub on 1 Sep 2023
Hi Antrea Plastira,
I understand that you want to know whether “perform” andtr.best_perf” have the same use and whether they can be used interchangeably?
Even though both the functions are used to find the performance of the model they are used in different scenarios. tr.best_perf is used during the training phase on the training set which returns the best performance of the model evaluated at each epoch. Whereas the perform function is used during the testing phase on the testing data to evaluate the performance of the model.
Here is an example to better explain the difference:
% Load the example dataset
load iris_dataset
% Create and train a neural network
net = feedforwardnet(10);
[net,tr] = train(net, irisInputs, irisTargets);
% Access the best performance achieved during training
bestPerf = tr.best_perf;
% Evaluate the performance of the trained network on test data
testInputs = irisInputs(:, 51:end);
testTargets = irisTargets(:, 51:end);
perf = perform(net, testTargets, net(testInputs));
% Display the results
disp(['Best performance achieved during training: ' num2str(bestPerf)]);
disp(['Performance on test data: ' num2str(perf)]);
Also mentioning a few references which would be helpful:
Hope it helps!

Categories

Find more on Deep Learning Toolbox 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!