You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libmultilabel/linear/utils.py
+7-8Lines changed: 7 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -109,32 +109,31 @@ class GridSearchCV(sklearn.model_selection.GridSearchCV):
109
109
The usage is similar to sklearn's, except that the parameter ``scoring`` is unavailable. Instead, specify ``scoring_metric`` in ``MultiLabelEstimator`` in the Pipeline.
110
110
111
111
Args:
112
-
pipeline (sklearn.pipeline.Pipeline): A sklearn Pipeline for grid search.
112
+
estimator (estimator object): An estimator for grid search.
113
113
param_grid (dict): Search space for a grid search containing a dictionary of
114
114
parameters and their corresponding list of candidate values.
115
115
n_jobs (int, optional): Number of CPU cores run in parallel. Defaults to None.
0 commit comments