mirror of
https://gitlab.com/niansa/discord_llama.git
synced 2025-03-06 20:48:25 +01:00
Use all tokens for repeat penalty
This commit is contained in:
parent
a9b912b617
commit
76acb5fb98
1 changed files with 1 additions and 1 deletions
2
main.cpp
2
main.cpp
|
@ -179,7 +179,7 @@ class Bot {
|
|||
constexpr static LM::Inference::Params llm_get_default_params() {
|
||||
return {
|
||||
.n_ctx = 1012,
|
||||
.n_repeat_last = 256,
|
||||
.n_repeat_last = 1012,
|
||||
.temp = 0.1f,
|
||||
.repeat_penalty = 1.372222224f,
|
||||
.use_mlock = false
|
||||
|
|
Loading…
Add table
Reference in a new issue