Vision
Draws a box around every object it recognises and reports how confident it is. It knows exactly 80 categories and nothing else — watching it fail on the 81st is the interesting part.
Nothing detected yet
Add an image on the left, then run the detector. Try the night-concert sample first — it is the more interesting failure.
Each detection will appear here with its confidence score. Hover a row to isolate that object in the image.
The image is divided into a grid. For every cell the network predicts, in a single forward pass, whether an object centre falls there, how big it is, and which of 80 classes it belongs to. That one-pass design is what the name means: You Only Look Once.
Trained on the COCO dataset, which is heavy on everyday Western scenes. Unusual objects, extreme angles, motion blur and heavy occlusion all degrade it sharply.
- Confidence is not accuracy. A 0.9 means the pattern strongly matched what the model saw in training, not that it is 90% correct.
- Raise the threshold and small or partly hidden objects vanish first — those are the detections the model was least sure about.
- Anything outside the 80 COCO classes gets forced into the nearest one, or missed entirely. There is no 'I don't know' output.
This page says “the model predicts”, not “the model knows”. That is deliberate. None of these systems understand the images or sentences you give them; they map inputs to outputs using patterns fixed at training time. The difference matters most exactly when the output is impressive.