summaryrefslogtreecommitdiff
path: root/candle-book/src/training/README.md
blob: f4f9eb8576a602e3157824f28bc3343245b35b61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Training


Training starts with data. We're going to use the huggingface hub and 
start with the Hello world dataset of machine learning, MNIST.

Let's start with downloading `MNIST` from [huggingface](https://huggingface.co/datasets/mnist).


```rust
use candle_datasets::from_hub;


let dataset = from_hub("mnist")?;
```

This uses the standardized `parquet` files from the `refs/convert/parquet` branch on every dataset.