Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望在 MATLAB 中对 fisheriris 数据使用一对一的方法来实现多类 SVM。
我该怎么做?
您可以将libsvm库用于 SVM。
您可以使用以下方法训练 svm:
model = svmtrain(features, labels);
并做出预测:
predictions = svmpredict(features);
默认情况下,如果 'labels' 中有多个值,libsvm 会进行 1vs1 分类。