cifar-10-loader-rs

Crate of loading cifar10 implemented by Rust

Load Cifar10

Cifar10 Simple Loader

Documentation

crates.io

Examples

Download CIFAR-10 binary version and extact. ``` extern crate cifar10loader; use cifar10loader::CifarDataset;

//This path is directory of cifar-10-batches-bin. //It's extracted from CIFAR-10 binary version. let cifar10path = "./cifar-10-batches-bin/"; let cifardataset = CifarDataset::new(cifar10_path).unwrap(); ```