diff options
Diffstat (limited to 'candle-book/src/training/mnist.md')
-rw-r--r-- | candle-book/src/training/mnist.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-book/src/training/mnist.md b/candle-book/src/training/mnist.md index 8ec00c1c..1394921b 100644 --- a/candle-book/src/training/mnist.md +++ b/candle-book/src/training/mnist.md @@ -3,7 +3,7 @@ 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}} +{{#include ../lib.rs:book_training_3}} ``` The parsing of the file and putting it into single tensors requires the dataset to fit the entire memory. |