From 0e5226b3d7b95eb565dc6f1eb10939e07e41c159 Mon Sep 17 00:00:00 2001 From: trevorstephens Date: Sat, 23 May 2015 12:14:11 -0700 Subject: [PATCH] unused params in gridsearchcv --- sklearn/grid_search.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sklearn/grid_search.py b/sklearn/grid_search.py index 658b99e1cc060..021dcf7938f6c 100644 --- a/sklearn/grid_search.py +++ b/sklearn/grid_search.py @@ -705,10 +705,9 @@ class GridSearchCV(BaseSearchCV): """ - def __init__(self, estimator, param_grid, scoring=None, loss_func=None, - score_func=None, fit_params=None, n_jobs=1, iid=True, - refit=True, cv=None, verbose=0, pre_dispatch='2*n_jobs', - error_score='raise'): + def __init__(self, estimator, param_grid, scoring=None, fit_params=None, + n_jobs=1, iid=True, refit=True, cv=None, verbose=0, + pre_dispatch='2*n_jobs', error_score='raise'): super(GridSearchCV, self).__init__( estimator, scoring, fit_params, n_jobs, iid,