How to pass parameters to a custom kernel function in fitcsvm?
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Statistics and Machine Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!