Struct mnist::Mnist [] [src]

pub struct Mnist {
    pub trn_img: Vec<u8>,
    pub trn_lbl: Vec<u8>,
    pub val_img: Vec<u8>,
    pub val_lbl: Vec<u8>,
    pub tst_img: Vec<u8>,
    pub tst_lbl: Vec<u8>,
}

Struct containing image and label vectors for the training, validation, and test sets.

Fields

The training images vector.

The training labels vector.

The validation images vector.

The validation labels vector.

The test images vector.

The test labels vector.

Trait Implementations

impl Debug for Mnist
[src]

Formats the value using the given formatter.