summaryrefslogtreecommitdiff
path: root/candle-book
diff options
context:
space:
mode:
authorchoisi <simon.choi@oocl.com>2023-08-09 11:29:48 +0800
committerchoisi <simon.choi@oocl.com>2023-08-09 11:29:48 +0800
commit47a5bee24948dcffaa6cc03835c7d28bf07e7d9e (patch)
treeec66377cb1b0dcfab09b5f2a9505a41972c61b21 /candle-book
parentcf965ecaa854a2f562a11c3885a5ab837757a5a7 (diff)
downloadcandle-47a5bee24948dcffaa6cc03835c7d28bf07e7d9e.tar.gz
candle-47a5bee24948dcffaa6cc03835c7d28bf07e7d9e.tar.bz2
candle-47a5bee24948dcffaa6cc03835c7d28bf07e7d9e.zip
fix repo link
Diffstat (limited to 'candle-book')
-rw-r--r--candle-book/src/guide/hello_world.md6
-rw-r--r--candle-book/src/guide/installation.md4
2 files changed, 5 insertions, 5 deletions
diff --git a/candle-book/src/guide/hello_world.md b/candle-book/src/guide/hello_world.md
index a9767d5f..5b32181d 100644
--- a/candle-book/src/guide/hello_world.md
+++ b/candle-book/src/guide/hello_world.md
@@ -128,17 +128,17 @@ fn main() -> Result<()> {
```
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).
+But most of the classical layers are already implemented in [candle-nn](https://github.com/huggingface/candle/tree/main/candle-nn).
## Using `candle_nn`.
-For instance [Linear](https://github.com/LaurentMazare/candle/blob/main/candle-nn/src/linear.rs) is already there.
+For instance [Linear](https://github.com/huggingface/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.
So instead we can simplify our example:
```bash
-cargo add --git https://github.com/LaurentMazare/candle.git candle-nn
+cargo add --git https://github.com/huggingface/candle.git candle-nn
```
And rewrite our examples using it
diff --git a/candle-book/src/guide/installation.md b/candle-book/src/guide/installation.md
index c909a5df..d2086e0c 100644
--- a/candle-book/src/guide/installation.md
+++ b/candle-book/src/guide/installation.md
@@ -5,13 +5,13 @@ Start by creating a new app:
```bash
cargo new myapp
cd myapp
-cargo add --git https://github.com/LaurentMazare/candle.git candle
+cargo add --git https://github.com/huggingface/candle.git candle-core
```
At this point, candle will be built **without** CUDA support.
To get CUDA support use the `cuda` feature
```bash
-cargo add --git https://github.com/LaurentMazare/candle.git candle --features cuda
+cargo add --git https://github.com/huggingface/candle.git candle-core --features cuda
```
You can check everything works properly: