Skip to content

Commit d42f667

Browse files
author
Beat Buesser
committed
Update expected value
- because of deprecation of min_impurity_split in sklearn.ensemble.GradientBoostingClassifier with sklearn==0.23.0 Signed-off-by: Beat Buesser <[email protected]>
1 parent 5458918 commit d42f667

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)