Fitcsvm kernel scale on polynomial
Show older comments
I am looking at how the 'Kernel Scale' parameter changes the output function of your hyperplane when using a polynomial kernel. I know when using the gaussian kernel the kernel scale is just gamma in the kernel (i.e. kernel = gamma*||x-y||^2). However I cannot seem to find an answer for it when it comes to the polynomial kernel. Here were some of my attempts to find how the polynomial kernel is changed, but all did not work:
- (1+scale*xy')^d
- (1+1/scale*xy')^d
- (scale+scale*xy')^d
- (1/scale+1/scale*xy')^d
- (1+1/sqrt(scale)*xy')^d
- scale*(1+xy')^d
All the above were tested by plotting the appropriate hyperplane. Any help is much appreciated.
Accepted Answer
More Answers (0)
Categories
Find more on Platform and License in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!