How to pass parameters to a custom kernel function in fitcsvm?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello
I'm using the fitcsvm method of Matlab for training a SVM classifier. Using the name-value pair 'KernelFunction', 'myKernel' it is possible to provide a custom kernel implementation. The kernel must be defined in a .m file in the following way
function G = kernel(U,V).
The only way I see for passing parameters to the kernel (like gamma for the Gaussian kernel) is to use global variables which is not so nice in the context of parallel execution.
Is there another possibility for passing parameters to the kernel?
0 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!