the example code for yolo_non_max_suppression use tf.image.non_max_suppression(boxes, scores, max_boxes, iou_threshold) to suppress the high IoU box.
While my understanding in this step, only the box with same class and overlap each other can be suppressed, that implies “classes” should be one parameter for this function of suppression, but there isn’t in the example code.
can anyone explain why is not used here for the suppression?
Thank you!