Question 10
Which of the following are valid advantages of YOLO compared to Fast R-CNN or Faster R-CNN?
YOLO performs object classification and localization in a single forward pass, making it faster than two-stage detectors like Fast R-CNN and Faster R-CNN.
YOLO does not require region proposal generation, making the entire pipeline fully end-to-end trainable.
YOLO achieves higher localization accuracy than Faster R-CNN on small objects due to its coarse grid-based prediction.
YOLO treats bounding box coordinates and objectness score as regression outputs, while computing class probabilities through classification.
YOLO achieves higher precision by using a large number of anchor boxes per region.
YOLO treats object detection as a regression problem, which simplifies the detection pipeline and reduces computational overhead.