What is The default kernel in fitcsvm(X,Y) function?

18 ビュー (過去 30 日間)
Ragda2
Ragda2 2021 年 2 月 16 日
回答済み: Abhishek Gupta 2021 年 2 月 19 日
hello everyone,
i read matlab documentation of fitcsvm but i coundn't find what is the defualt value of the kernal function if i used fitcsvm(X,Y)
best regards,

回答 (1 件)

Abhishek Gupta
Abhishek Gupta 2021 年 2 月 19 日
Hi,
As per my understanding, you want to know the default value of 'KernelFunction' in the 'fitcsvm()' function. It's as follows:-
  1. Gaussian or Radial Basis Function (RBF) kernel, the default for one-class learning
  2. Linear kernel, the default for two-class learning
The above information is also present in the documentation. See the table under 'KernelFunction' in 'SVM Options' section.
You can also access the 'KernelFunction' value of your model as follows: -
SVMModel = fitcsvm(x,y);
SVMModel.KernelParameters.Function

カテゴリ

Help Center および File ExchangeImage Data Workflows についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by