diff options
author | Nicolas Patry <patry.nicolas@protonmail.com> | 2023-07-19 15:04:38 +0200 |
---|---|---|
committer | Nicolas Patry <patry.nicolas@protonmail.com> | 2023-07-19 15:04:38 +0200 |
commit | 439321745a0110223bd20d3b5cacb98f97aad6ce (patch) | |
tree | 5f8fb9cd7ed67987434b5a3d2458197e98810c47 /candle-examples/examples/llama | |
parent | 67e20c37920d9f7677e3a4274eef8c73455274c8 (diff) | |
download | candle-439321745a0110223bd20d3b5cacb98f97aad6ce.tar.gz candle-439321745a0110223bd20d3b5cacb98f97aad6ce.tar.bz2 candle-439321745a0110223bd20d3b5cacb98f97aad6ce.zip |
Removing `candle-hub` internal to extract into `hf-hub` standalone.
Diffstat (limited to 'candle-examples/examples/llama')
-rw-r--r-- | candle-examples/examples/llama/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-examples/examples/llama/main.rs b/candle-examples/examples/llama/main.rs index aa02299d..40f1af06 100644 --- a/candle-examples/examples/llama/main.rs +++ b/candle-examples/examples/llama/main.rs @@ -16,9 +16,9 @@ use anyhow::{Error as E, Result}; use clap::Parser; use candle::{DType, Device, Tensor, D}; -use candle_hub::{api::sync::Api, Repo, RepoType}; use candle_nn::VarBuilder; use candle_transformers::generation::LogitsProcessor; +use hf_hub::{api::sync::Api, Repo, RepoType}; mod model; use model::{Config, Llama}; |