summaryrefslogtreecommitdiff
path: root/candle-book
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2024-12-31 19:07:47 +0100
committerGitHub <noreply@github.com>2024-12-31 19:07:47 +0100
commitb12c7c2888c49e7f133bb2dc29f8fdbb04a37e10 (patch)
tree4d136b048eaec490041967f8e1343c919d552f1a /candle-book
parent94ffc2ec6f02e9fa067ee883957e10e902716f59 (diff)
downloadcandle-b12c7c2888c49e7f133bb2dc29f8fdbb04a37e10.tar.gz
candle-b12c7c2888c49e7f133bb2dc29f8fdbb04a37e10.tar.bz2
candle-b12c7c2888c49e7f133bb2dc29f8fdbb04a37e10.zip
Update the hf-hub dependency to 0.4.0. (#2691)
* Update the hf-hub dependency to 0.4.0. * Fix the book. * Use 0.4.1.
Diffstat (limited to 'candle-book')
-rw-r--r--candle-book/src/inference/hub.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/candle-book/src/inference/hub.md b/candle-book/src/inference/hub.md
index fb6f9e51..e8d8b267 100644
--- a/candle-book/src/inference/hub.md
+++ b/candle-book/src/inference/hub.md
@@ -11,8 +11,8 @@ Then let's start by downloading the [model file](https://huggingface.co/bert-bas
```rust
# extern crate candle_core;
-# extern crate candle_hf_hub;
-use candle_hf_hub::api::sync::Api;
+# extern crate hf_hub;
+use hf_hub::api::sync::Api;
use candle_core::Device;
let api = Api::new().unwrap();
@@ -50,8 +50,8 @@ Now that we have our weights, we can use them in our bert architecture:
```rust
# extern crate candle_core;
# extern crate candle_nn;
-# extern crate candle_hf_hub;
-# use candle_hf_hub::api::sync::Api;
+# extern crate hf_hub;
+# use hf_hub::api::sync::Api;
#
# let api = Api::new().unwrap();
# let repo = api.model("bert-base-uncased".to_string());