summaryrefslogtreecommitdiff
path: root/candle-book/src/training/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'candle-book/src/training/README.md')
-rw-r--r--candle-book/src/training/README.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/candle-book/src/training/README.md b/candle-book/src/training/README.md
index 8977de34..f4f9eb85 100644
--- a/candle-book/src/training/README.md
+++ b/candle-book/src/training/README.md
@@ -1 +1,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.