Why do I receive 'You must pass class labels as a vector.' error?

14 ビュー (過去 30 日間)
Daniil Podtesov
Daniil Podtesov 2022 年 10 月 15 日
コメント済み: Hiro Yoshino 2022 年 10 月 15 日
clear; clc;
X_train = readmatrix("x_train.csv",'NumHeaderLines',1);
X_test = readmatrix("x_test.csv",'NumHeaderLines',1);
y_train = readmatrix("y_train.csv",'NumHeaderLines',1);
y_test = readmatrix("y_test.csv",'NumHeaderLines',1);
model = fitcsvm(X_train, y_train, 'KernelFunction','rbf');
Here's my code. After trying to run I receive this error (error is in attached screenshot):

回答 (1 件)

Hiro Yoshino
Hiro Yoshino 2022 年 10 月 15 日
It said the y_train is not a vector.
The argument should be any on of: categorical array, string array, character array, logical array, numerical array, cell array.
You should make sure you give right data for x and y respectively.
  4 件のコメント
Daniil Podtesov
Daniil Podtesov 2022 年 10 月 15 日
I see, in Python Y was two cols (id, boolean), that's why I remained this column. Thank You, I'll try the solution
Hiro Yoshino
Hiro Yoshino 2022 年 10 月 15 日
Good luck 🤞

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeInstall Products についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by