How can i calculate training and testing time of a model using classification learner app?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I am using wine dataset for experiment
% load wine_dataset
% [dummy, Target] = max(wineTargets);
% wineDataset = [wineInputs; Target];
I imported wineDataset matrix in classification learner app and train the data using Linear SVM and Quadratic SVM. How can I calculate training and testing time taken by model?
0 Commenti
Risposte (1)
Image Analyst
il 30 Lug 2016
Export the code, and then use tic and toc.
3 Commenti
Image Analyst
il 30 Lug 2016
Put tic where you want to start the stop watch, and put toc where you want to stop the stop watch and discover the elapsed time.
Paul Ho
il 25 Feb 2021
I know this is an old post, but I can't seem to find where I can export MATLAB code from the classification learner app. (Of course I can just copy, paste and adapt the above, but it would be nice to know how it was generated)
If anyone could link me to any useful articles/ docs I would appreciate that too.
Vedere anche
Categorie
Scopri di più su Classification Learner App in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!