Learn Before
sklearn.model_selection.GridSearchCV
Performs hyperparameter tuning to determine the optimal values for the input model. Some parameters are estimator: the model we want to use for the hyperparameter tuning process, and param_grid: a dictionary in which the keys are the hyperparameters, and their corresponding values are a list of values that parameter can take.
0
1
Tags
Data Science
Related
sklearn.preprocessing.OneHotEncoder
sklearn.neighbors.KNeighborsClassifier
sklearn.dummy.DummyClassifier
sklearn.preprocessing.LabelEncoder
Train Test Split Function
sklearn.datasets.make_regression
sklearn.datasets.make_friedman1
sklearn.datasets.make_classification
sklearn.svm.SVC
sklearn.tree.DecisionTreeClassifier
sklearn.ensemble.RandomForestClassifier
sklearn.dummy.DummyRegressor
sklearn.model_selection.GridSearchCV
sklearn.ensemble.RandomForestRegressor
Cross-Validation in scikit-learn