Skip to content

Commit

Permalink
fix(tests): collect all predictions in generator
Browse files Browse the repository at this point in the history
  • Loading branch information
MinhxNguyen7 committed Jun 21, 2024
1 parent dce51f3 commit 016d7ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/imaging/image_processor_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ def test_irl_dataset(self, gen_confusion_matrices = True):
prediction_list = []

for img, ground_truth in zip(imgs, labels):
predictions = image_processor.process_image(img)
predictions = list(image_processor.process_image(img))


if gen_confusion_matrices:
Expand Down

0 comments on commit 016d7ad

Please sign in to comment.