You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello
when I run "python ./-Results/Generate_detection.py --model <your test output directory, under ./-Results by default>"
I get the following error:
ValueError: operands could not be broadcast together with shapes (1560224,) (1489274,)
This error is related to line 62 that is:
mask = inter_det_mask * nis_mask
please help
The text was updated successfully, but these errors were encountered:
It is because the inter_det_mask and nis_mask are using different detections. If you are using customized object detection result, you might need to also generate a customized NIS file (to provide the nis_mask), or you could also drop the nis_mask term though considerable performance drop might be observed.
Hello
When I removed the nis_mask, the performance decreased greatly. I used the object detection that you used, I don't know why the sizes are different. How can I generate a customized NIS file?
Hello
when I run "python ./-Results/Generate_detection.py --model <your test output directory, under ./-Results by default>"
I get the following error:
ValueError: operands could not be broadcast together with shapes (1560224,) (1489274,)
This error is related to line 62 that is:
mask = inter_det_mask * nis_mask
please help
The text was updated successfully, but these errors were encountered: