7 releases (breaking)

0.6.0 Oct 30, 2023
0.5.0 Nov 8, 2021
0.4.1 Aug 20, 2020
0.4.0 Apr 17, 2017
0.1.0 Jan 16, 2017

#45 in Machine learning

Download history 682/week @ 2023-12-13 379/week @ 2023-12-20 191/week @ 2023-12-27 515/week @ 2024-01-03 434/week @ 2024-01-10 642/week @ 2024-01-17 374/week @ 2024-01-24 585/week @ 2024-01-31 518/week @ 2024-02-07 616/week @ 2024-02-14 1128/week @ 2024-02-21 872/week @ 2024-02-28 445/week @ 2024-03-06 558/week @ 2024-03-13 613/week @ 2024-03-20 428/week @ 2024-03-27

2,157 downloads per month
Used in 8 crates

MIT license

37KB
640 lines

MNIST

A crate for parsing the MNIST and Fashion MNIST data set into vectors to be used by Rust programs.

Example

use mnist::*;
use ndarray::prelude::*;

fn main() {

    // Deconstruct the returned Mnist struct.
    let Mnist {
        trn_img,
        trn_lbl,
        tst_img,
     tst_lbl,
        ..
    } = MnistBuilder::new()
        .label_format_digit()
        .training_set_length(50_000)
        .validation_set_length(10_000)
        .test_set_length(10_000)
        .finalize();

    let image_num = 0;
    // Can use an Array2 or Array3 here (Array3 for visualization)
    let train_data = Array3::from_shape_vec((50_000, 28, 28), trn_img)
        .expect("Error converting images to Array3 struct")
        .map(|x| *x as f32 / 256.0);
    println!("{:#.1?}\n",train_data.slice(s![image_num, .., ..]));

    // Convert the returned Mnist struct to Array2 format
    let train_labels: Array2<f32> = Array2::from_shape_vec((50_000, 1), trn_lbl)
        .expect("Error converting training labels to Array2 struct")
        .map(|x| *x as f32);
    println!("The first digit is a {:?}",train_labels.slice(s![image_num, ..]) );

    let _test_data = Array3::from_shape_vec((10_000, 28, 28), tst_img)
        .expect("Error converting images to Array3 struct")
        .map(|x| *x as f32 / 256.);

    let _test_labels: Array2<f32> = Array2::from_shape_vec((10_000, 1), tst_lbl)
        .expect("Error converting testing labels to Array2 struct")
        .map(|x| *x as f32);
}

Fashion MNIST

The Fasion MNIST dataset offers a similarly-formatted drop-in replacement dataset for the original MNIST set, but typically poses a more difficult classification challenge that handwritten numbers.

An example of downloading this dataset may be found by running:

$ cargo run --features download --example fashion_mnist

Dependencies

~0.1–11MB
~94K SLoC