Skip to content

Commit

Permalink
correct test
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasDrews97 committed Apr 12, 2024
1 parent e4600d8 commit ad2f735
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_calibration.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,10 @@ def test_beta_calibration(binary_calibration_data, binary_test_scores):
assert proba.shape == (len(binary_test_scores),)
assert_array_almost_equal(
proba,
np.array([0.526125, 0.423743, 0.363907, 0.785855, 0.323201, 0.417089, 0.0]),
np.array(
[0.526125, 0.423743, 0.363907, 0.785855, 0.323201, 0.417089, 0.0],
),
decimal=3,
)


Expand Down

0 comments on commit ad2f735

Please sign in to comment.