cifar_10_loader

Crates.iocifar_10_loader
lib.rscifar_10_loader
version0.2.0
sourcesrc
created_at2017-10-21 07:59:08.314888
updated_at2017-12-20 10:39:13.973602
descriptionCrate of loading cifar10
homepage
repositoryhttps://github.com/29rou/cifar-10-loader-rs
max_upload_size
id36439
size21,717
Yoshiki Sakamoto (29rou)

documentation

https://docs.rs/cifar_10_loader/

README

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 extract.

extern crate cifar_10_loader;
use cifar_10_loader::CifarDataset;

//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();
Commit count: 49

cargo fmt