What is the primary purpose of python code quoted below? ##…
What is the primary purpose of python code quoted below? ## param_grid = { ‘bootstrap’: [True], ‘max_depth’: [40, 60, 80, 100], ‘max_features’: [1,2,3], ‘min_samples_leaf’: [3, 4, 5], ‘min_samples_split’: [8, 10, 12], ‘n_estimators’: [100, 200, 300, 1000] } rfc = RandomForestClassifier() grid_search = GridSearchCV(estimator = rfc, param_grid = param_grid, cv = 3, n_jobs = -1, verbose = True) ##
Read Details