diff options
author | Laurent <laurent.mazare@gmail.com> | 2023-11-02 10:31:47 +0100 |
---|---|---|
committer | Laurent <laurent.mazare@gmail.com> | 2023-11-02 10:31:47 +0100 |
commit | b97463098ceeb80feabfd385d7062dfdb55068ee (patch) | |
tree | 9286c6d0c2d14da80a14f7cd6f94be1204830944 /candle-wasm-examples/llama2-c | |
parent | fbd69f952cd19bab894560ece91569923bac90ef (diff) | |
download | candle-b97463098ceeb80feabfd385d7062dfdb55068ee.tar.gz candle-b97463098ceeb80feabfd385d7062dfdb55068ee.tar.bz2 candle-b97463098ceeb80feabfd385d7062dfdb55068ee.zip |
llama2-c wasm fix.
Diffstat (limited to 'candle-wasm-examples/llama2-c')
-rw-r--r-- | candle-wasm-examples/llama2-c/src/model.rs | 4 |
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}; |