필터 지우기
필터 지우기

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 CenterFile Exchange에서 Get 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