From 1e86717bf274c6a0380f56f195727812e49f80a2 Mon Sep 17 00:00:00 2001 From: Laurent Mazare <laurent.mazare@gmail.com> Date: Sun, 17 Dec 2023 05:20:05 -0600 Subject: Fix a couple typos (#1451) * Mixtral quantized instruct. * Fix a couple typos. --- candle-wasm-examples/llama2-c/src/app.rs | 2 +- candle-wasm-examples/llama2-c/src/worker.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'candle-wasm-examples/llama2-c') 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>, -- cgit v1.2.3