Question 10
Which of the following are valid advantages of YOLO compared to Fast R-CNN or Faster R-CNN?
YOLO is faster at inference time because it predicts bounding boxes and class probabilities in a single pass.
YOLO is fully end-to-end trainable and does not rely on external region proposal mechanisms.
YOLO achieves higher recall than Faster R-CNN on all types of objects, especially small and overlapping ones.
YOLO formulates detection as a combination of regression (for bounding box coordinates and objectness score) and classification (for discrete object categories).
YOLO uses multi-scale feature fusion to improve detection of small objects.
YOLO’s architecture allows it to be deployed more easily on real-time and edge devices due to its compactness.