diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2024-12-31 11:00:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-31 11:00:44 +0100 |
commit | 94ffc2ec6f02e9fa067ee883957e10e902716f59 (patch) | |
tree | a28ff0b3bf1587a3d1bff79bc1f19a8f8cc95183 | |
parent | 7354afc6735ae387cd2d86c18d902fbd24439b78 (diff) | |
download | candle-94ffc2ec6f02e9fa067ee883957e10e902716f59.tar.gz candle-94ffc2ec6f02e9fa067ee883957e10e902716f59.tar.bz2 candle-94ffc2ec6f02e9fa067ee883957e10e902716f59.zip |
Actually remove the default hf-hub cache path for glm. (#2696)
-rw-r--r-- | candle-examples/examples/glm4/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-examples/examples/glm4/main.rs b/candle-examples/examples/glm4/main.rs index a6ba7c72..3fa948cb 100644 --- a/candle-examples/examples/glm4/main.rs +++ b/candle-examples/examples/glm4/main.rs @@ -109,7 +109,7 @@ impl TextGeneration { #[derive(Parser, Debug)] #[command(author, version, about, long_about = None)] struct Args { - #[arg(name = "cache", short, long, default_value = ".")] + #[arg(name = "cache", short)] cache_path: Option<String>, /// Run on CPU rather than on GPU. |