- Gaussian or Radial Basis Function (RBF) kernel, the default for one-class learning
- Linear kernel, the default for two-class learning
What is The default kernel in fitcsvm(X,Y) function?
조회 수: 8(최근 30일)
표시 이전 댓글
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,
댓글 수: 0
답변(1개)
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:-
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
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!