diff options
Diffstat (limited to 'candle-book/src/guide/hello_world.md')
-rw-r--r-- | candle-book/src/guide/hello_world.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-book/src/guide/hello_world.md b/candle-book/src/guide/hello_world.md index bdf7b712..ee630979 100644 --- a/candle-book/src/guide/hello_world.md +++ b/candle-book/src/guide/hello_world.md @@ -127,7 +127,7 @@ fn main() -> Result<()> { Now it works, great and 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 a `candle_nn`. +## Using `candle_nn`. For instance [Linear](https://github.com/LaurentMazare/candle/blob/main/candle-nn/src/linear.rs) is already there. This Linear is coded with PyTorch layout in mind, to reuse better existing models out there, so it uses the transpose of the weights and not the weights directly. |