Grid search for hyperparameter evaluation of clustering in scikit-learn
I'm clustering a sample of about 100 records (unlabelled) and trying to use grid_search to evaluate the clustering algorithm with various hyperparameters. I'm scoring using silhouette_score which works fine. My problem here is that I don't need to use the cross-validation aspect of the GridSearchCV / RandomizedSearchCV , but I can't find a simple GridSearch / RandomizedSearch . I can write my own but the ParameterSampler and ParameterGrid objects are very useful. My next step will be to subclass BaseSearchCV and implement my own _fit() method, but thought it was worth asking is there a simpler