From b97463098ceeb80feabfd385d7062dfdb55068ee Mon Sep 17 00:00:00 2001 From: Laurent Date: Thu, 2 Nov 2023 10:31:47 +0100 Subject: llama2-c wasm fix. --- candle-wasm-examples/llama2-c/src/model.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'candle-wasm-examples/llama2-c') 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}; -- cgit v1.2.3