Evaluates real-time object detection capability by predicting bounding boxes and class scores directly from multi-scale feature maps, eliminating traditional proposal generation steps. It measures how well the model localizes and classifies objects across varying scales and aspect ratios under strict latency constraints. Use when the user wants to benchmark on PASCAL VOC2007, or asks about evaluating this task. Reports mAP.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill ssd-voc2007-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ssd Voc2007 Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-ssd-voc2007-eval)More formats (shields.io, HTML) on the badges page.
---
name: ssd-voc2007-eval
description: Evaluates real-time object detection capability by predicting bounding boxes and class scores directly from multi-scale feature maps, eliminating traditional proposal generation steps. It measures how well the model localizes and classifies objects across varying scales and aspect ratios under strict latency constraints. Use when the user wants to benchmark on PASCAL VOC2007, or asks about evaluating this task. Reports mAP.
metadata:
skill_kind: dataset_eval
source_arxiv: 1512.02325
bibtex_key: liu2015ssd
confidence: high
---
# ssd-voc2007-eval
> SSD: Single Shot MultiBox Detector — Wei Liu et al. (2015) (arXiv:1512.02325, 2015)
## What this evaluates
Evaluates real-time object detection capability by predicting bounding boxes and class scores directly from multi-scale feature maps, eliminating traditional proposal generation steps. It measures how well the model localizes and classifies objects across varying scales and aspect ratios under strict latency constraints.
## Datasets
- **PASCAL VOC2007** — total 4952; splits: test (4952)
## Metrics
- `mAP` **(primary)** — range: percent
- Mean Average Precision averaged over 20 object categories. Computed as the area under the precision-recall curve for each class, then averaged.
## Input / output format
**Input**: RGB image resized to 300x300 or 512x512 pixels
**Output**: List of predicted bounding boxes with associated class labels and confidence scores
## Scoring recipe
```python
def compute_mAP(preds, gts):
ap_scores = []
for cls in range(20):
cls_preds = sorted([p for p in preds if p['class'] == cls], key=lambda x: x['score'], reverse=True)
cls_gts = [g for g in gts if g['class'] == cls]
tp, fp, matched = 0, 0, set()
for p in cls_preds:
best_iou, best_gt = 0, None
for g in cls_gts:
if g['id'] not in matched:
iou = calc_iou(p['bbox'], g['bbox'])
if iou > best_iou: best_iou, best_gt = iou, g
if best_iou >= 0.5: tp += 1; matched.add(best_gt['id'])
else: fp += 1
precisions = [tp / (tp + fp + 1e-9) for _ in range(len(cls_preds))]
recalls = [tp / max(len(cls_gts), 1) for _ in range(len(cls_preds))]
ap_scores.append(trapezoidal(precisions, recalls))
return sum(ap_scores) / 20
```
## Common pitfalls
- Performance degrades significantly on small objects due to limited information in top feature layers.
- High confusion rates between visually similar categories (e.g., animals) because the model shares location predictions across classes.
## Evidence (verbatim from paper)
> Table 1 shows that our low resolution SSD300 model is already more accurate than Fast R-CNN. When we train SSD on a larger 512 × 512 input image, it is even more accurate, surpassing Faster R-CNN by 1.7% mAP.
## Citation
```bibtex
@misc{liu2015ssd,
title={SSD: Single Shot MultiBox Detector},
author={Wei Liu et al. (2015)},
year={2015},
note={arXiv:1512.02325}
}
```
- arXiv: 1512.02325
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!