RandomizedSearchCVAnd also GridSearchCV, do support conveyors (in fact, they do not depend on their implementation, and conveyors are designed so that they are equivalent to conventional classifiers).
, , . ( + ), , . , - , / /.
, , , , gamma ( ), gamma , rbf_svm ( ). , sklearn :
param_dist = {
'rbf_svm__C': [1, 10, 100, 1000],
'rbf_svm__gamma': [0.001, 0.0001],
'rbf_svm__kernel': ['rbf', 'linear'],
}