AssertionError Traceback (most recent call last)
in
43 from unit_tests import test_yolo_non_max_suppression
44
—> 45 test_yolo_non_max_suppression(yolo_non_max_suppression)
46 # END UNIT TEST
~/work/W3A1/unit_tests.py in test_yolo_non_max_suppression(target)
16
17 assert type(scores) == EagerTensor, “Use tensoflow functions”
—> 18 assert scores.shape == (33,), “Wrong shape”
19 assert boxes.shape == (33, 4), “Wrong shape”
20 assert classes.shape == (33,), “Wrong shape”
AssertionError: Wrong shape