How can i calculate training and testing time of a model using classification learner app?
2 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
Image Analyst
2016 年 7 月 30 日
Export the code, and then use tic and toc.
3 件のコメント
Image Analyst
2016 年 7 月 30 日
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
2021 年 2 月 25 日
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.
参考
カテゴリ
Help Center および File Exchange で Classification Learner App についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!