SSD (Single Shot MultiBox Detector) is used for object detection. It finds objects and draws boxes around them. The key metrics are Precision, Recall, and mAP (mean Average Precision).
Precision tells us how many detected boxes are correct. Recall tells us how many real objects were found. mAP combines these to show overall detection quality across all object types and sizes.
We want high precision to avoid false alarms and high recall to find all objects. mAP summarizes this balance and is the main score to compare SSD models.