8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22ca031 commit 4b143a4Copy full SHA for 4b143a4
sklearn/tests/test_multioutput.py
@@ -169,7 +169,8 @@ def test_multi_target_sample_weights():
169
# 0.23. warning about tol not having its correct default value.
170
@pytest.mark.filterwarnings('ignore:max_iter and tol parameters have been')
171
def test_multi_output_classification_partial_fit_parallelism():
172
- sgd_linear_clf = SGDClassifier(loss='log', random_state=1, max_iter=5)
+ sgd_linear_clf = SGDClassifier(loss='log', random_state=1,
173
+ max_iter=5, tol=1e-3)
174
mor = MultiOutputClassifier(sgd_linear_clf, n_jobs=-1)
175
mor.partial_fit(X, y, classes)
176
est1 = mor.estimators_[0]
0 commit comments