Skip to content

Commit

Permalink
fix : minor bug in verified_test.py fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Dec 18, 2023
1 parent 6a143fd commit 7667391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Test/verified_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
>>> assert isclose(cm.OC[1], 0.9636363636363636, abs_tol=ABS_TOL, rel_tol=REL_TOL)
>>> assert isclose(cm.OOC[1], 0.9383838571303771, abs_tol=ABS_TOL, rel_tol=REL_TOL)
>>> cm = ConfusionMatrix(matrix={1: {1: 63, 0: 1}, 0: {0: 50, 1: 2}})
>>> assert isclose(cm.TI(alpha=1, beta=1)[1], 0.9545454545454546 abs_tol=ABS_TOL, rel_tol=REL_TOL)
>>> assert isclose(cm.TI(alpha=1, beta=1)[1], 0.9545454545454546, abs_tol=ABS_TOL, rel_tol=REL_TOL)
>>> cm.TI(alpha=0.5, beta=0.5)[1] == cm.F1[1]
True
>>> cm.TI(alpha=0.5, beta=0.5)[0] == cm.F1[0]
Expand Down

0 comments on commit 7667391

Please sign in to comment.