How can i calculate training and testing time of a model using classification learner app?

7 views (last 30 days)
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?

Answers (1)

Image Analyst
Image Analyst on 30 Jul 2016
Export the code, and then use tic and toc.
  3 Comments
Image Analyst
Image Analyst on 30 Jul 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
Paul Ho on 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.

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!