Skip to content
Snippets Groups Projects
Commit 38e92f85 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[test.test_batchmetrics] Fix test

parent f6aaad9b
No related branches found
No related tags found
1 merge request!12Streamlining
Pipeline #39140 passed
......@@ -32,7 +32,7 @@ class Tester(unittest.TestCase):
def test_batch_metrics(self):
dfs = []
for pred, gt in zip(self.predictions, self.ground_truths):
dfs.append(_sample_metrics(pred, gt))
dfs.append(_sample_metrics(pred, gt, 100))
bm = pandas.concat(dfs)
self.assertEqual(len(bm), 2 * 100)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment