Skip to content
This repository was archived by the owner on Dec 4, 2019. It is now read-only.

Commit 3bd75e1

Browse files
committed
Updated scikit-learn version specification to 0.18.1
1 parent 1980bce commit 3bd75e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"Programming Language :: Python",
2020
"Topic :: Scientific/Engineering",
2121
]
22-
INSTALL_REQUIRES = ["scikit-learn >= 0.18"]
22+
INSTALL_REQUIRES = ["scikit-learn >= 0.18.1"]
2323

2424
# Project root
2525
ROOT = os.path.abspath(os.getcwd() + "/")

python/spark_sklearn/grid_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def __init__(self, sc, estimator, param_grid, scoring=None, fit_params=None,
243243
pre_dispatch='2*n_jobs', error_score='raise', return_train_score=True):
244244
super(GridSearchCV, self).__init__(
245245
estimator=estimator, scoring=scoring, fit_params=fit_params, n_jobs=n_jobs, iid=iid,
246-
refit=retfit, cv=cv, verbose=verbose, pre_dispatch=pre_dispatch, error_score=error_score,
246+
refit=refit, cv=cv, verbose=verbose, pre_dispatch=pre_dispatch, error_score=error_score,
247247
return_train_score=return_train_score)
248248
self.sc = sc
249249
self.param_grid = param_grid

0 commit comments

Comments
 (0)