can someone quickly explain or confirm my guess on what i.e.:
max_detections_per_class: 100
max_total_detections: 100
in my case ssdlite_mobilenet_v2_coco.config
at line 134 and 135.
From the raw output of predictions, my guess is that the predictions always "tries" to detect 100 objects in the image, despite the actual number of objects in the image. Let's say there is only one cat, there still will be 100 objects detected in my returning raw prediction data. If the model is trained right, of course there should be only one prediction with a high score.
Is that correct? Thank you!