Open alicera opened 3 years ago
I think it's 0.5
Refer to lines 12, 572 and 577 of main.py
Can it set the IOU 0.5:0.75 to eval?
Try changing line 577 (main.py) from:
if ovmax >= min_overlap:
to:
if ovmax >= min_overlap and ovmax <= 0.75:
I haven't tried it but I think that should work.
Thanks for your advance. But the it should mean with IOU 0.5:0.75.
min_overlap is already defined to be 0.5 at the start of main.py. I think the variable name is different, but it gets passed to min_overlap.
Try changing line 577 (main.py) from:
if ovmax >= min_overlap:
to:if ovmax >= min_overlap and ovmax <= 0.75:
I haven't tried it but I think that should work.
if set ovmax >= min_overlap and ovmax <= 0.75 So it show the ovmax 0.9 is fail. But it is good detect when ovmax = 0.9.
If running the main.py, the mAP IOU is 0.5 or 0.5:0.75 ?