More than one estimator in GridSearchCV(sklearn)
问题 I was checking sklearn documentation webpage about GridSearchCV . One of attributes of GridSearchCV object is best_estimator_ . So here is my question. How to pass more than one estimator to GSCV object? Using a dictionary like: {'SVC()':{'C':10, 'gamma':0.01}, ' DecTreeClass()':{....}} ? 回答1: GridSearchCV works on parameters. It will train multiple estimators (but same class (one of SVC, or DecisionTreeClassifier, or other classifiers) with different parameter combinations from specified in