diff options
author | Radamés Ajna <radamajna@gmail.com> | 2023-09-25 21:23:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-26 05:23:50 +0100 |
commit | a084f65f9a2001e7b747b6237c3fcb79719d323a (patch) | |
tree | 1bb33e6f943b5fdb7203f790b51c57204eb4f219 /candle-wasm-examples/llama2-c | |
parent | c798184c2bab5be6a02781aaa736ab1d666991ed (diff) | |
download | candle-a084f65f9a2001e7b747b6237c3fcb79719d323a.tar.gz candle-a084f65f9a2001e7b747b6237c3fcb79719d323a.tar.bz2 candle-a084f65f9a2001e7b747b6237c3fcb79719d323a.zip |
fix rep penalty min value (#963)
Diffstat (limited to 'candle-wasm-examples/llama2-c')
-rw-r--r-- | candle-wasm-examples/llama2-c/lib-example.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-wasm-examples/llama2-c/lib-example.html b/candle-wasm-examples/llama2-c/lib-example.html index 86fe9811..d832aa13 100644 --- a/candle-wasm-examples/llama2-c/lib-example.html +++ b/candle-wasm-examples/llama2-c/lib-example.html @@ -312,7 +312,7 @@ type="range" id="repeat_penalty" name="repeat_penalty" - min="-2" + min="1" max="2" step="0.01" value="1.10" |