how to tune parameters of custom kernel function with pipeline in scikit-learn

前端 未结 2 2007
南旧
南旧 2020-12-16 15:49

currently I have successfully defined a custom kernel function(pre-computing the kernel matrix) using def function, and now I am using the GridSearchCV function to get the b

2条回答
  •  感情败类
    2020-12-16 16:33

    Attacking the problem from a slightly different angle - how about using an automated parameter tuning with auto-sklearn? It is a drop-in replacement of sklearn and frequently it does a better job than manually tuned parameters.

提交回复
热议问题