cars196

The Cars dataset contains 16,185 images of 196 classes of cars. The data is split into 8,144 training images and 8,041 testing images, where each class has been split roughly in a 50-50 split. Classes are typically at the level of Make, Model, Year, e.g. 2012 Tesla Model S or 2012 BMW M3 coupe.

Split Examples
'test' 8,041
'train' 8,144
  • Feature structure:
FeaturesDict({
    'bbox': BBoxFeature(shape=(4,), dtype=float32),
    'id': Text(shape=(), dtype=string),
    'image': Image(shape=(None, None, 3), dtype=uint8),
    'label': ClassLabel(shape=(), dtype=int64, num_classes=196),
})
  • Feature documentation:
Feature Class Shape Dtype Description
FeaturesDict
bbox BBoxFeature (4,) float32
id Text string
image Image (None, None, 3) uint8
label ClassLabel int64

Visualization

  • Citation:
@inproceedings{KrauseStarkDengFei-Fei_3DRR2013,
title = {3D Object Representations for Fine-Grained Categorization},
booktitle = {4th International IEEE Workshop on  3D Representation and Recognition (3dRR-13)},
year = {2013},
address = {Sydney, Australia},
author = {Jonathan Krause and Michael Stark and Jia Deng and Li Fei-Fei}
}