summaryrefslogtreecommitdiff
path: root/candle-wasm-examples/llama2-c
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-12-17 05:20:05 -0600
committerGitHub <noreply@github.com>2023-12-17 05:20:05 -0600
commit1e86717bf274c6a0380f56f195727812e49f80a2 (patch)
tree10ced030940fa76dac22e86af8204b886ea352d3 /candle-wasm-examples/llama2-c
parentc630622a071756860499ea7914d3a032a47be1b0 (diff)
downloadcandle-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.rs2
-rw-r--r--candle-wasm-examples/llama2-c/src/worker.rs2
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>,