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

#53 in Machine learning

Download history 515/week @ 2024-01-08 478/week @ 2024-01-15 443/week @ 2024-01-22 680/week @ 2024-01-29 444/week @ 2024-02-05 638/week @ 2024-02-12 927/week @ 2024-02-19 1061/week @ 2024-02-26 460/week @ 2024-03-04 621/week @ 2024-03-11 475/week @ 2024-03-18 490/week @ 2024-03-25 934/week @ 2024-04-01 357/week @ 2024-04-08 409/week @ 2024-04-15 534/week @ 2024-04-22

2,325 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–10MB
~89K SLoC