フィルターのクリア

How to give inputs to classifier ?

1 回表示 (過去 30 日間)
Sujata Patil
Sujata Patil 2018 年 5 月 12 日
回答済み: Timon Viola 2018 年 5 月 12 日
Svn classifier

採用された回答

Timon Viola
Timon Viola 2018 年 5 月 12 日
If you have extracted the trained SVM from the Classification Learner app this is how you do it:
%you trained it to predict - let's say - images:
trainedClassifier = trainedModel.ClassificationSVM; %You export the trainedModel struct from the app.
[imagepred] = predict(trainedClassifier,imagefeatures);
%imagepred - output data (usually 'categorical' type) for more information look up the predict function.
If this is not your problem please try to specify more details :)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with Statistics and Machine Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by