mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-19 20:37:51 +00:00
settings changed to meet default open assistant configuration
This commit is contained in:
parent
269dfd5a0c
commit
b9e1a095de
@ -6,15 +6,15 @@ n_threads: 8
|
||||
host: localhost
|
||||
language: en-US
|
||||
model: gpt4all-lora-quantized-ggml.bin
|
||||
n_predict: 256
|
||||
n_predict: 1024
|
||||
nb_messages_to_remember: 5
|
||||
personality: gpt4all_chatbot
|
||||
port: 9600
|
||||
repeat_last_n: 40
|
||||
repeat_penalty: 1.3
|
||||
repeat_penalty: 1.2
|
||||
seed: 0
|
||||
temp: 0.1
|
||||
top_k: 40
|
||||
temp: 1.0
|
||||
top_k: 50
|
||||
top_p: 0.95
|
||||
voice: ""
|
||||
use_gpu: false # Not active yet
|
||||
|
@ -39,11 +39,11 @@
|
||||
</div>
|
||||
<div class="mb-4">
|
||||
<label class="block font-bold mb-2" for="top-p" id="top-p-value">Top P</label>
|
||||
<input class="w-full slider-value" id="top-p" type="range" min="0" max="1" step="0.1" value="0.95" name="top-p">
|
||||
<input class="w-full slider-value" id="top-p" type="range" min="0" max="1" step="0.01" value="0.95" name="top-p">
|
||||
</div>
|
||||
<div class="mb-4">
|
||||
<label class="block font-bold mb-2" for="repeat-penalty" id="repeat-penalty-value">Repeat penalty</label>
|
||||
<input class="w-full slider-value" id="repeat-penalty" type="range" min="0" max="2" step="0.1" value="1.3" name="repeat-penalty">
|
||||
<input class="w-full slider-value" id="repeat-penalty" type="range" min="0" max="2" step="0.01" value="1.3" name="repeat-penalty">
|
||||
</div>
|
||||
<div class="mb-4">
|
||||
<label class="block font-bold mb-2" for="repeat-last-n" id="repeat-last-n-value">Repeat last N</label>
|
||||
|
Loading…
Reference in New Issue
Block a user