YOLO is used for object detection. It finds objects and draws boxes around them. The key metrics are Precision, Recall, and Mean Average Precision (mAP).
Precision tells us how many detected boxes are correct. High precision means few false alarms.
Recall tells us how many real objects were found. High recall means few missed objects.
mAP combines precision and recall over all object classes and detection thresholds. It shows overall detection quality.
We want a balance: find most objects (high recall) and be accurate (high precision).