diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-07-30 09:53:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-30 09:53:05 +0100 |
commit | ba2254556cc28ca3db9aa420c1d3dd74ead5c8e6 (patch) | |
tree | ba118a183855d227ab3818cb0907fb9bd17fc8e6 /candle-wasm-examples/llama2-c | |
parent | c950a5c6b1bd207f6f9cba18780e0baa44e3254a (diff) | |
download | candle-ba2254556cc28ca3db9aa420c1d3dd74ead5c8e6.tar.gz candle-ba2254556cc28ca3db9aa420c1d3dd74ead5c8e6.tar.bz2 candle-ba2254556cc28ca3db9aa420c1d3dd74ead5c8e6.zip |
Display the temperature being used for text generation. (#278)
Diffstat (limited to 'candle-wasm-examples/llama2-c')
-rw-r--r-- | candle-wasm-examples/llama2-c/src/app.rs | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/candle-wasm-examples/llama2-c/src/app.rs b/candle-wasm-examples/llama2-c/src/app.rs index 2ecd771e..f433d0da 100644 --- a/candle-wasm-examples/llama2-c/src/app.rs +++ b/candle-wasm-examples/llama2-c/src/app.rs @@ -30,6 +30,7 @@ async fn fetch_url(url: &str) -> Result<Vec<u8>, JsValue> { } pub enum Msg { + Refresh, Run, UpdateStatus(String), SetModel(ModelData), @@ -166,18 +167,20 @@ impl Component for App { self.status = status; true } + Msg::Refresh => true, } } fn view(&self, ctx: &Context<Self>) -> Html { use yew::TargetCast; let temperature = self.temperature.clone(); - let oninput = move |e: yew::InputEvent| { + let oninput = ctx.link().callback(move |e: yew::InputEvent| { let input: web_sys::HtmlInputElement = e.target_unchecked_into(); if let Ok(temp) = f64::from_str(&input.value()) { *temperature.borrow_mut() = temp } - }; + Msg::Refresh + }); html! { <div style="margin: 2%;"> <div><p>{"Running "} @@ -188,8 +191,9 @@ impl Component for App { <p>{"Once the weights have loaded, click on the run button to start generating content."} </p> </div> - {"temperature: "}<input type="range" min="0." max="1.2" step="0.1" value={self.temperature.borrow().to_string()} {oninput} id="temp"/> - + {"temperature \u{00a0} "} + <input type="range" min="0." max="1.2" step="0.1" value={self.temperature.borrow().to_string()} {oninput} id="temp"/> + {format!(" \u{00a0} {}", self.temperature.borrow())} <br/ > { if self.loaded{ |