Skip to content

kcc999/rust_mnist_decoder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rust_mnist_decoder

A rust crate used to decode the mnist dataset.

The API is a single function which returns a vector of images, it's implementation expects the files to be matching Yann LeCun's MNIST database.

pub fn read_mnist(data_path: String) -> Vec<Image>;
pub struct Image {
  pixels: Vec<u8>,
  label: u8
}

About

MNIST on Rust from scratch

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published