Can you please tell me how to use multi class classification using support vector machine?
조회 수: 3 (최근 30일)
이전 댓글 표시
Can you please tell me how to use multi class classification using support vector machine?
I have studies in material that use fitcecoc, but how to use it. Please dont reply fisheriris example.
Is it like so....
Training_feat = dataTraining(:,1:16);
Testing_feat = dataTesting(:,1:16);
Training_class = dataTraining(:,17);
Testing_class = dataTesting(:,17);
Training=Training_feat;
Group=Training_class;
Sample=Testing_feat;
Mdl = fitcecoc(Training,Group)
Class = predict(Mdl,Sample);
then compare Class with Testing_class?
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Predictive Maintenance Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!