Recall & Review
beginner
What does SSD stand for in object detection?
SSD stands for Single Shot MultiBox Detector, a method to detect objects in images in one pass.
Click to reveal answer
intermediate
How does SSD detect objects differently from two-stage detectors like Faster R-CNN?
SSD detects objects in a single step without a separate region proposal stage, making it faster but still accurate.
Click to reveal answer
intermediate
What role do default boxes (anchor boxes) play in SSD?
Default boxes are pre-set boxes of different sizes and aspect ratios used to predict object locations and classes at multiple scales.
Click to reveal answer
intermediate
Why does SSD use multiple feature maps at different scales?
Using multiple feature maps helps SSD detect objects of various sizes by looking at different levels of detail.
Click to reveal answer
beginner
What are the main outputs of the SSD model for each default box?
For each default box, SSD outputs a class score (what object it might be) and box offsets (how to adjust the box to fit the object).Click to reveal answer
What is the main advantage of SSD over two-stage detectors?
✗ Incorrect
SSD detects objects in one step without separate region proposals, which speeds up detection.
What are default boxes in SSD used for?
✗ Incorrect
Default boxes are pre-defined boxes that help SSD predict where objects are and their sizes.
Why does SSD use multiple feature maps at different scales?
✗ Incorrect
Multiple feature maps let SSD detect small and large objects by looking at different detail levels.
What does SSD output for each default box?
✗ Incorrect
SSD predicts both what object is inside and how to adjust the box to fit it better.
Which of these is NOT a characteristic of SSD?
✗ Incorrect
SSD does not use a separate region proposal network; that is typical of two-stage detectors.
Explain how SSD detects objects in an image and why it is faster than two-stage detectors.
Think about how SSD predicts boxes and classes all at once.
You got /4 concepts.
Describe the purpose of default boxes and multi-scale feature maps in SSD.
Consider how SSD handles small and large objects.
You got /4 concepts.