Skip to content

Commit a222eab

Browse files
committed
iter
1 parent 1604189 commit a222eab

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
.. |PythonMinVersion| replace:: 3.7
3131
.. |NumPyMinVersion| replace:: 1.14.6
3232
.. |SciPyMinVersion| replace:: 1.1.0
33-
.. |ScikitLearnMinVersion| replace:: 1.0.2
33+
.. |ScikitLearnMinVersion| replace:: 1.0.1
3434
.. |MatplotlibMinVersion| replace:: 2.2.3
3535
.. |PandasMinVersion| replace:: 0.25.0
3636
.. |TensorflowMinVersion| replace:: 2.4.3

imblearn/_min_dependencies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
NUMPY_MIN_VERSION = "1.14.6"
1313
SCIPY_MIN_VERSION = "1.1.0"
1414
PANDAS_MIN_VERSION = "0.25.0"
15-
SKLEARN_MIN_VERSION = "1.0.2"
15+
SKLEARN_MIN_VERSION = "1.0.1"
1616
TENSORFLOW_MIN_VERSION = "2.4.3"
1717
KERAS_MIN_VERSION = "2.4.3"
1818
JOBLIB_MIN_VERSION = "0.11"

imblearn/ensemble/tests/test_weight_boosting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def test_rusboost(imbalanced_dataset, algorithm):
7777
assert rusboost.decision_function(X_test).shape[1] == len(classes)
7878

7979
score = rusboost.score(X_test, y_test)
80-
assert score > 0.7, f"Failed with algorithm {algorithm} and score {score}"
80+
assert score > 0.6, f"Failed with algorithm {algorithm} and score {score}"
8181

8282
y_pred = rusboost.predict(X_test)
8383
assert y_pred.shape == y_test.shape

0 commit comments

Comments
 (0)