blob: 8ec00c1ce1f24dca885195d9766ec94415f8d1f0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# MNIST
So we now have downloaded the MNIST parquet files, let's put them in a simple struct.
```rust,ignore
{{#include ../../../candle-examples/src/lib.rs:book_training_3}}
```
The parsing of the file and putting it into single tensors requires the dataset to fit the entire memory.
It is quite rudimentary, but simple enough for a small dataset like MNIST.
|