diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2024-10-26 11:25:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-26 11:25:04 +0200 |
commit | 3699c1a053c2789775837552b2eec37afd436c7d (patch) | |
tree | 8647146fbbfdb89c14c0ea1df98b0cf23f97c189 /candle-examples | |
parent | a2e9d41b2062be5b45c84d24fe2bf4527ec27cee (diff) | |
download | candle-3699c1a053c2789775837552b2eec37afd436c7d.tar.gz candle-3699c1a053c2789775837552b2eec37afd436c7d.tar.bz2 candle-3699c1a053c2789775837552b2eec37afd436c7d.zip |
Fix the repo name for llama 3.1. (#2576)
* Fix the repo name for llama 3.1.
* Fix the book.
Diffstat (limited to 'candle-examples')
-rw-r--r-- | candle-examples/examples/llama/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/candle-examples/examples/llama/main.rs b/candle-examples/examples/llama/main.rs index 7a555b00..cc99b6c1 100644 --- a/candle-examples/examples/llama/main.rs +++ b/candle-examples/examples/llama/main.rs @@ -139,8 +139,8 @@ fn main() -> Result<()> { Which::V2 => "meta-llama/Llama-2-7b-hf".to_string(), Which::V3 => "meta-llama/Meta-Llama-3-8B".to_string(), Which::V3Instruct => "meta-llama/Meta-Llama-3-8B-Instruct".to_string(), - Which::V31 => "meta-llama/Meta-Llama-3.1-8B".to_string(), - Which::V31Instruct => "meta-llama/Meta-Llama-3.1-8B-Instruct".to_string(), + Which::V31 => "meta-llama/Llama-3.1-8B".to_string(), + Which::V31Instruct => "meta-llama/Llama-3.1-8B-Instruct".to_string(), Which::V32_1b => "meta-llama/Llama-3.2-1B".to_string(), Which::V32_1bInstruct => "meta-llama/Llama-3.2-1B-Instruct".to_string(), Which::V32_3b => "meta-llama/Llama-3.2-3B".to_string(), |