Search for pages and actions
Classify 32x32 color images into 100 fine-grained categories. CIFAR-100 is a standard benchmark for image recognition, grouped into 20 superclasses each containing 5 fine-grained classes.
The dataset contains 60,000 color images of size 32x32 pixels:
Each image belongs to exactly one fine-grained class and one superclass. Images are stored as numpy arrays with shape (32, 32, 3) in RGB channel order.
Submissions are scored using top-1 accuracy on fine-grained labels — the fraction of test images whose predicted class matches the true class.
$$\text{Accuracy} = \frac{\text{Correct Predictions}}{\text{Total Predictions}}$$
Submit a CSV with exactly two columns:
| Column | Description |
|---|---|
| image_id | Zero-indexed ID from the test set (0–9999) |
| label | Predicted fine-grained class name |
Spec version: v1