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

 Respuesta aceptada

Kenta
Kenta el 22 de Feb. de 2019

2 votos

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

Más respuestas (0)

Categorías

Más información sobre Statistics and Machine Learning Toolbox en Centro de ayuda y File Exchange.

Productos

Versión

R2018b

Preguntada:

el 22 de Feb. de 2019

Respondida:

el 22 de Feb. de 2019

Community Treasure Hunt

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

Start Hunting!