Hello,
I get the following trace-back on my 1st Programming assignment of CNN W3:
AssertionError Traceback (most recent call last)
in
12 box2 = (5,6,7,8)
13 print("iou for non-intersecting boxes = " + str(iou(box1,box2)))
—> 14 assert iou(box1, box2) == 0, “Intersection must be 0”
15
16 ## Test case 3: boxes intersect at vertices only
AssertionError: Intersection must be 0
What would you suggest?
Many thanks, Pilar