Skip to content

Commit b79b448

Browse files
authored
Merge pull request #552 from Trusted-AI/dependabot/pip/scikit-learn-0.23.2
Bump scikit-learn from 0.22.1 to 0.23.2
2 parents 8f2d0da + d42f667 commit b79b448

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
numpy==1.18.1
33
scipy==1.4.1
44
matplotlib==3.3.1
5-
scikit-learn==0.22.1
5+
scikit-learn==0.23.2
66
six==1.15.0
77
Pillow==7.2.0
88
tqdm==4.48.2

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"numpy",
1111
"scipy==1.4.1",
1212
"matplotlib",
13-
"scikit-learn==0.22.1",
13+
"scikit-learn==0.23.2",
1414
"six",
1515
"setuptools",
1616
"Pillow",
@@ -32,7 +32,7 @@
3232
"numpy",
3333
"scipy==1.4.1",
3434
"six==1.13.0",
35-
"scikit-learn==0.22.1",
35+
"scikit-learn==0.23.2",
3636
"Pillow>=6.0.0",
3737
]
3838

tests/metrics/test_verification_decision_trees.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def test_GradientBoosting(self):
117117
x=self.x_test, y=self.y_test, eps_init=0.3, nb_search_steps=10, max_clique=2, max_level=2
118118
)
119119

120-
self.assertEqual(average_bound, 0.009117187499999995)
120+
self.assertAlmostEqual(average_bound, 0.008982421874999, delta=0.00000001)
121121
self.assertEqual(verified_error, 1.0)
122122

123123
def test_RandomForest(self):

0 commit comments

Comments
 (0)