mnist icon indicating copy to clipboard operation
mnist copied to clipboard

MNIST data set parser https://crates.io/crates/mnist

Results 4 mnist issues
Sort by recently updated
recently updated
newest added

![Screenshot 2023-11-29 105002](https://github.com/davidMcneil/mnist/assets/84847878/87cf5e6f-99e0-496b-9429-f9fd18e7b533)

here are some test code ```rs use mnist::MnistBuilder; #[test] fn test_mnist() { let mnist = MnistBuilder::new() .label_format_digit() .training_set_length(50_000) .validation_set_length(10_000) .test_set_length(10_000) .finalize(); dbg!(mnist.trn_img); dbg!(mnist.trn_lbl); } ``` - cargo.toml ```toml [dependencies] mnist...

Some users (#12, #13) seem to be experiencing issues due to a mismatch between the default file name and the actual file name. I also had the same problem, and...

I am getting 'Unable to read whole file in memory (data/train-images-idx3-ubyte)'. Is it possible to load data partially?