Filter löschen
Filter löschen

How to give inputs to classifier ?

1 Ansicht (letzte 30 Tage)
Sujata Patil
Sujata Patil am 12 Mai 2018
Beantwortet: Timon Viola am 12 Mai 2018
Svn classifier

Akzeptierte Antwort

Timon Viola
Timon Viola am 12 Mai 2018
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 :)

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by