summaryrefslogtreecommitdiff
path: root/candle-book
diff options
context:
space:
mode:
authorNicolas Patry <patry.nicolas@protonmail.com>2023-08-01 14:08:13 +0200
committerNicolas Patry <patry.nicolas@protonmail.com>2023-08-01 14:26:02 +0200
commit091e7819779ec7b011891755ae88d0ce14ff3071 (patch)
treecd114f7bbb4966a19d7d2f50c5ef86ea8d2d795f /candle-book
parent5cead227efaad60ce5e1ea2c337785010c4a5f2a (diff)
downloadcandle-091e7819779ec7b011891755ae88d0ce14ff3071.tar.gz
candle-091e7819779ec7b011891755ae88d0ce14ff3071.tar.bz2
candle-091e7819779ec7b011891755ae88d0ce14ff3071.zip
Grammarly pass.
Diffstat (limited to 'candle-book')
-rw-r--r--candle-book/src/guide/hello_world.md6
-rw-r--r--candle-book/src/guide/installation.md2
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)