Enterprise-ready security: ISO 27001 + SOC 2 Type I compliant.

Link to this sectionCaltech-101 Dataset#

The Caltech-101 dataset is a classic image classification benchmark of 9,144 images spanning 101 object categories plus one background class. Each category holds about 40 to 800 images of real-world objects — animals, vehicles, household items, and people — making it a compact yet challenging benchmark for object recognition models.



Watch: How to Train Image Classification Model using Caltech-101 Dataset with Ultralytics Platform
Automatic Data Splitting

Caltech-101 ships without a predefined train/validation split. The training commands below automatically split it 80% train / 20% validation, so no manual preparation is needed.

Link to this sectionKey Features#

  • Caltech-101 contains 9,144 color images across 101 object categories plus one BACKGROUND_Google class (102 class folders in total).
  • The categories span a wide variety of real-world objects, including animals, vehicles, household items, and people.
  • Each category holds about 40 to 800 images, so class sizes are imbalanced.
  • Images are of variable sizes, most roughly 300x200 pixels (medium resolution).
  • Caltech-101 is widely used to benchmark image classification and object recognition algorithms.

Link to this sectionDataset Structure#

Caltech-101 is distributed as 102 folders — one per class, covering 101 object categories plus a BACKGROUND_Google class — with no predefined train/validation split. When you launch training, Ultralytics automatically partitions the images so models train across all 102 classes without any manual setup:

  • Classes: 102 (101 object categories + 1 background)
  • Total images: 9,144
  • Train/validation split: automatic 80% / 20% (≈7,280 train, ≈1,864 validation)
  • Images per class: about 40 to 800 (imbalanced)

Link to this sectionApplications#

Caltech-101 is widely used to train and evaluate image classification and object recognition models, including Convolutional Neural Networks (CNNs) and Support Vector Machines (SVMs). Its broad category coverage and clean, labeled images make it a popular benchmark for machine learning and computer vision research and prototyping.

Link to this sectionUsage#

Train a YOLO model on Caltech-101 for 100 epochs at an image size of 416. For the full list of available arguments, see the Training page and the image classification task guide.

Train Example
from ultralytics import YOLO

# Load a model
model = YOLO("yolo26n-cls.pt")  # load a pretrained model (recommended for training)

# Train the model
results = model.train(data="caltech101", epochs=100, imgsz=416)

Link to this sectionSample Images and Annotations#

The Caltech-101 dataset contains high-quality color images of various objects, providing a well-structured dataset for image classification tasks. Here are some examples of images from the dataset:

Caltech-101 image classification dataset samples

The samples show the variety of categories and the natural, centered framing typical of Caltech-101, which makes it a clean starting point for training robust object recognition models.

Link to this sectionCitations and Acknowledgments#

If you use the Caltech-101 dataset in your research or development work, please cite the following paper:

Quote
@article{fei2007learning,
  title={Learning generative visual models from few training examples: An incremental Bayesian approach tested on 101 object categories},
  author={Fei-Fei, Li and Fergus, Rob and Perona, Pietro},
  journal={Computer vision and Image understanding},
  volume={106},
  number={1},
  pages={59--70},
  year={2007},
  publisher={Elsevier}
}

We would like to acknowledge Li Fei-Fei, Rob Fergus, and Pietro Perona for creating and maintaining the Caltech-101 dataset as a valuable resource for the machine learning and computer vision research community. For more information about the Caltech-101 dataset and its creators, visit the Caltech-101 dataset website.

Link to this sectionFAQ#

Link to this sectionWhat is the Caltech-101 dataset used for in machine learning?#

The Caltech-101 dataset is widely used to train and benchmark image classification and object recognition models. It contains 9,144 images across 101 object categories plus a background class, providing a challenging benchmark for evaluating algorithms such as Convolutional Neural Networks (CNNs) and Support Vector Machines (SVMs).

Link to this sectionHow can I train an Ultralytics YOLO model on the Caltech-101 dataset?#

To train an Ultralytics YOLO model on Caltech-101, use the code snippets below. The dataset downloads automatically on first use. For a full list of arguments, see the model Training page.

Train Example
from ultralytics import YOLO

# Load a model
model = YOLO("yolo26n-cls.pt")  # load a pretrained model (recommended for training)

# Train the model
results = model.train(data="caltech101", epochs=100, imgsz=416)

Link to this sectionHow many classes does the Caltech-101 dataset have?#

Caltech-101 contains 101 object categories plus one BACKGROUND_Google class, for 102 class folders and 9,144 images in total. When you train with Ultralytics, the model learns all 102 classes. Category sizes are imbalanced, ranging from about 40 to 800 images each.

Link to this sectionHow is the Caltech-101 dataset split into training and validation sets?#

Caltech-101 has no predefined split. The first time you train, Ultralytics automatically divides it 80% training / 20% validation — about 7,280 training and 1,864 validation images — so you do not need to create splits manually. To control the split yourself, organize the images into train/ and val/ folders before training.

Link to this sectionCan I use Ultralytics Platform for training models on the Caltech-101 dataset?#

Yes. Ultralytics Platform lets you manage datasets, train image classification models, and deploy them without extensive coding. It is a convenient way to run Caltech-101 experiments in the cloud, and you can explore more options in our classification datasets overview.

Comments