benchmark image datasets
Beyond ImageNet, a small family of standard datasets serves as the proving ground for classification ideas, prized because they are small enough to iterate on in minutes yet rich enough to expose real differences between methods. MNIST holds 70000 greyscale 28-by-28 images of handwritten digits in 10 classes; it is the classic 'hello world' of image classification, now so easy that strong models exceed 99 percent accuracy and it no longer discriminates well between good methods.
CIFAR-10 and CIFAR-100 contain 60000 tiny 32-by-32 colour photographs, split into 10 broad classes (airplane, dog, ship, and so on) and 100 finer classes respectively. They are the workhorse benchmarks for prototyping architectures, augmentation schemes, and regularisers, because a full training run fits on a single GPU in a reasonable time while CIFAR-100's smaller per-class count makes overfitting and class confusion easy to study.
Using these benchmarks well means respecting their conventions: report on the official test split, never tune on it, and remember that conclusions drawn on tiny low-resolution images do not always transfer to high-resolution, large-class settings like ImageNet. They are tools for fast, controlled comparison, not proof of real-world performance.
Because these datasets are so heavily reused, published state-of-the-art numbers risk subtle test-set overfitting accumulated across the whole community. Treat a one-point gain on CIFAR-10 with healthy scepticism and prefer methods that also improve on harder, less saturated benchmarks.