Skip to content

Commit

Permalink
fewer elements in grid search
Browse files Browse the repository at this point in the history
  • Loading branch information
fgregg committed Jun 2, 2022
1 parent c84a0c8 commit 574aa84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dedupe/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ def __init__(
]
self.classifier = sklearn.model_selection.GridSearchCV(
estimator=sklearn.ensemble.RandomForestClassifier(),
param_grid={"n_estimators": [100, 200, 400, 800, 1600]},
param_grid={"n_estimators": [100, 200, 400, 800]},
scoring="f1",
n_jobs=-1,
)
Expand Down

0 comments on commit 574aa84

Please sign in to comment.