diff options
Diffstat (limited to 'candle-book')
-rw-r--r-- | candle-book/src/guide/hello_world.md | 6 | ||||
-rw-r--r-- | candle-book/src/guide/installation.md | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/candle-book/src/guide/hello_world.md b/candle-book/src/guide/hello_world.md index d7cb76c9..b1d24d85 100644 --- a/candle-book/src/guide/hello_world.md +++ b/candle-book/src/guide/hello_world.md @@ -1,8 +1,8 @@ -# Hello world ! +# Hello world! We will now create the hello world of the ML world, building a model capable of solving MNIST dataset. -Open `src/main.rs` and fill in with this content: +Open `src/main.rs` and fill in this content: ```rust # extern crate candle; @@ -127,7 +127,7 @@ fn main() -> Result<()> { } ``` -Now it works, great and is a great way to create your own layers. +Now it works, it is a great way to create your own layers. But most of the classical layers are already implemented in [candle-nn](https://github.com/LaurentMazare/candle/tree/main/candle-nn). ## Using `candle_nn`. diff --git a/candle-book/src/guide/installation.md b/candle-book/src/guide/installation.md index 8e549d01..c909a5df 100644 --- a/candle-book/src/guide/installation.md +++ b/candle-book/src/guide/installation.md @@ -21,4 +21,4 @@ cargo build ``` -You can also see feature `mkl` which could be interesting to get faster inference on CPU. [Using mkl](./advanced/mkl.md) +You can also see the `mkl` feature which could be interesting to get faster inference on CPU. [Using mkl](./advanced/mkl.md) |