mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 16:17:57 +01:00
Make llama.cpp use tfs parameter
This commit is contained in:
parent
e19cbea719
commit
05a743d6ad
@ -10,10 +10,21 @@ llama.cpp only uses the following parameters:
|
|||||||
* top_p
|
* top_p
|
||||||
* top_k
|
* top_k
|
||||||
* repetition_penalty
|
* repetition_penalty
|
||||||
|
* tfs
|
||||||
* mirostat_mode
|
* mirostat_mode
|
||||||
* mirostat_tau
|
* mirostat_tau
|
||||||
* mirostat_eta
|
* mirostat_eta
|
||||||
|
|
||||||
|
### ExLlama
|
||||||
|
|
||||||
|
ExLlama only uses the following parameters:
|
||||||
|
|
||||||
|
* temperature
|
||||||
|
* top_p
|
||||||
|
* top_k
|
||||||
|
* repetition_penalty
|
||||||
|
* typical_p
|
||||||
|
|
||||||
### RWKV
|
### RWKV
|
||||||
|
|
||||||
RWKV only uses the following parameters when loaded through the old .pth weights:
|
RWKV only uses the following parameters when loaded through the old .pth weights:
|
||||||
|
@ -68,6 +68,7 @@ class LlamaCppModel:
|
|||||||
top_p=state['top_p'],
|
top_p=state['top_p'],
|
||||||
top_k=state['top_k'],
|
top_k=state['top_k'],
|
||||||
repeat_penalty=state['repetition_penalty'],
|
repeat_penalty=state['repetition_penalty'],
|
||||||
|
tfs_z=state['tfs'],
|
||||||
mirostat_mode=int(state['mirostat_mode']),
|
mirostat_mode=int(state['mirostat_mode']),
|
||||||
mirostat_tau=state['mirostat_tau'],
|
mirostat_tau=state['mirostat_tau'],
|
||||||
mirostat_eta=state['mirostat_eta'],
|
mirostat_eta=state['mirostat_eta'],
|
||||||
|
Loading…
Reference in New Issue
Block a user