summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent <laurent.mazare@gmail.com>2023-11-02 10:31:47 +0100
committerLaurent <laurent.mazare@gmail.com>2023-11-02 10:31:47 +0100
commitb97463098ceeb80feabfd385d7062dfdb55068ee (patch)
tree9286c6d0c2d14da80a14f7cd6f94be1204830944
parentfbd69f952cd19bab894560ece91569923bac90ef (diff)
downloadcandle-b97463098ceeb80feabfd385d7062dfdb55068ee.tar.gz
candle-b97463098ceeb80feabfd385d7062dfdb55068ee.tar.bz2
candle-b97463098ceeb80feabfd385d7062dfdb55068ee.zip
llama2-c wasm fix.
-rw-r--r--candle-wasm-examples/llama2-c/src/model.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/candle-wasm-examples/llama2-c/src/model.rs b/candle-wasm-examples/llama2-c/src/model.rs
index 7471938a..ab9333d2 100644
--- a/candle-wasm-examples/llama2-c/src/model.rs
+++ b/candle-wasm-examples/llama2-c/src/model.rs
@@ -1,5 +1,7 @@
use candle::{DType, Device, IndexOp, Result, Tensor, D};
-use candle_nn::{embedding, linear, rms_norm, Embedding, Linear, Module, RmsNorm, VarBuilder};
+use candle_nn::{
+ embedding, linear_no_bias as linear, rms_norm, Embedding, Linear, Module, RmsNorm, VarBuilder,
+};
use std::collections::HashMap;
use std::sync::{Arc, Mutex};