Reads generic data and label files in the MNIST file format for Rust.
As simple as that.
```rust
// Raw format
let trainlabels: Vec
// Ndarray (Maths lib)
let usizelabels:Vec
let f32data:Vec
// Cogent (Neural network library) let mut net = cogent::NeuralNetwork::new(784,&[ cogent::Layer::Dense(1000, cogent::Activation::ReLU), cogent::Layer::Dropout(0.2), cogent::Layer::Dense(500, cogent::Activation::ReLU), cogent::Layer::Dropout(0.2), cogent::Layer::Dense(10, cogent::Activation::Softmax) ]) net.train(&mut arraydata, &mut arraylabels).go() ```