バイナリ分類のサポートベクターマシンの学習データ(特徴ベクトル)についてお尋ねします。
ドキュメンテーションでは2次元(平面)でのfitcsvmやpredictの使い方が解説されています。
これを3次元や4次元の特徴ベクトルに拡張するためには、fitcsvmのベクトルXを3列(4列)にすればよいのでしょうか?
また,この場合の分離空間の表示の例がありましたら御教示ください。

 Accepted Answer

Kenta
Kenta on 22 Feb 2019

2 votes

したのコードにあるように、3列にすればできます。
分離平面の例としては、下のようなものがありました。一度試してみてください。
load fisheriris
X = meas(:,1:3);
y = ones(size(X,1),1);
SVMModel = fitcsvm(X,y,'KernelScale','auto','Standardize',true,...
'OutlierFraction',0.05);

More Answers (0)

Categories

Find more on Statistics and Machine Learning Toolbox in Help Center and File Exchange

Products

Release

R2018b

Asked:

on 22 Feb 2019

Answered:

on 22 Feb 2019

Community Treasure Hunt

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

Start Hunting!