diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-12-17 05:20:05 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-17 05:20:05 -0600 |
commit | 1e86717bf274c6a0380f56f195727812e49f80a2 (patch) | |
tree | 10ced030940fa76dac22e86af8204b886ea352d3 /candle-wasm-examples/llama2-c | |
parent | c630622a071756860499ea7914d3a032a47be1b0 (diff) | |
download | candle-1e86717bf274c6a0380f56f195727812e49f80a2.tar.gz candle-1e86717bf274c6a0380f56f195727812e49f80a2.tar.bz2 candle-1e86717bf274c6a0380f56f195727812e49f80a2.zip |
Fix a couple typos (#1451)
* Mixtral quantized instruct.
* Fix a couple typos.
Diffstat (limited to 'candle-wasm-examples/llama2-c')
-rw-r--r-- | candle-wasm-examples/llama2-c/src/app.rs | 2 | ||||
-rw-r--r-- | candle-wasm-examples/llama2-c/src/worker.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/candle-wasm-examples/llama2-c/src/app.rs b/candle-wasm-examples/llama2-c/src/app.rs index ea04a810..f254a5ae 100644 --- a/candle-wasm-examples/llama2-c/src/app.rs +++ b/candle-wasm-examples/llama2-c/src/app.rs @@ -108,7 +108,7 @@ impl Component for App { fn update(&mut self, ctx: &Context<Self>, msg: Self::Message) -> bool { match msg { Msg::SetModel(md) => { - self.status = "weights loaded succesfully!".to_string(); + self.status = "weights loaded successfully!".to_string(); self.loaded = true; console_log!("loaded weights"); self.worker.send(WorkerInput::ModelData(md)); diff --git a/candle-wasm-examples/llama2-c/src/worker.rs b/candle-wasm-examples/llama2-c/src/worker.rs index 79dd2f32..e38561b9 100644 --- a/candle-wasm-examples/llama2-c/src/worker.rs +++ b/candle-wasm-examples/llama2-c/src/worker.rs @@ -24,7 +24,7 @@ macro_rules! console_log { } // Communication to the worker happens through bincode, the model weights and configs are fetched -// on the main thread and transfered via the following structure. +// on the main thread and transferred via the following structure. #[derive(Serialize, Deserialize)] pub struct ModelData { pub tokenizer: Vec<u8>, |