Skip to content

Commit

Permalink
Fixed failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
vfdev-5 committed Mar 20, 2024
1 parent 3a62b35 commit d4604e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ignite/metrics/test_recall.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ def update(engine, i):
warnings.simplefilter("ignore", category=UndefinedMetricWarning)
assert recall_score(np_y_true, np_y_preds, average=sk_average_parameter) == pytest.approx(res)

@pytest.mark.parametrize("average", [False, "macro", "weighted", "micro", "samples"])
@pytest.mark.parametrize("average", [False, "macro", "weighted", "micro"])
def test_accumulator_device(self, average):
# Binary accuracy on input of shape (N, 1) or (N, )

Expand Down

0 comments on commit d4604e5

Please sign in to comment.