Skip to content

Commit

Permalink
Remove leftover debugging message
Browse files Browse the repository at this point in the history
  • Loading branch information
jteijema committed Oct 30, 2024
1 parent 71c6bdd commit 66c3445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def test_loss_value_function():

labels = [1, 1, 0, 0, 0]
loss_value = _loss_value(labels)
assert_almost_equal(loss_value, 0, decimal=6), f"{loss_value} is {int(loss_value)}"
assert_almost_equal(loss_value, 0, decimal=6)

labels = [0, 0, 0, 1, 1]
loss_value = _loss_value(labels)
Expand Down

0 comments on commit 66c3445

Please sign in to comment.