Image Classification predicts one or more labels for an image by learning visual patterns from examples.
Classification turns images into structured labels that systems can store and query. It supports tasks like catalog tagging, medical triage, and defect sorting.
Quick Answers
- What it does. Assigns categories or tags to images for downstream decisions
- How it works. Learns visual patterns, then scores new images against known classes
- Why it matters. Supports consistent routing when image volume exceeds human review
- Common uses. Defect types, content policy tags, medical triage flags, and product categories
What The Model Outputs
The model returns a score for each class, then selects the best match. The score is a confidence estimate, not a guarantee.
Single-label setups choose one category from a fixed set. Multi-label setups assign several tags when multiple concepts appear.
Common Variants
- Binary. Two classes, such as defect vs no defect
- Single-label. One class per image from a mutually exclusive set
- Multi-label. Multiple independent tags per image
- Fine-grained. Similar categories, like bird species or product subtypes
Many systems share a backbone, the feature extractor that learns visual patterns. Teams reuse it for detection, segmentation, and retrieval tasks.