Expand description
Load Cifar10
Cifar10 Simple Loader
Use image crate in CifarImage.
##Examples
Download CIFAR-10 binary version and extract.
//This path is directory of cifar-10-batches-bin.
//It's extracted from CIFAR-10 binary version.
let cifar10_path = "./cifar-10-batches-bin/";
let cifar_dataset = CifarDataset::new(cifar10_path).unwrap();
Structsยง
- Cifar
Dataset - CifarDataset is Top Level Struct of cifar_10_loader.
- Cifar
Image - CifarImage is inner Struct of CifarDataset.