CIFAR-10#

The CIFAR-10 dataset of images.

The dataset consists of 60,000 32 x 32 color images in 10 classes, with 6,000 images per class. There are 50,000 training images and 10,000 test images.

Details

Note

You must have the Torch or TensorFlow backend(s) installed to load this dataset.

Example usage

1import fiftyone as fo
2import fiftyone.zoo as foz
3
4dataset = foz.load_zoo_dataset("cifar10", split="test")
5
6session = fo.launch_app(dataset)
cifar10-test