Allow Repetition Penalty up to 3
A user expressed positive feedback when trying higher than 2 repetition penalty on some models, lets allow people the freedom to do so. If there is a demonstrable benefit to running higher than 3 I am open to raising it again.
This commit is contained in:
parent
7a4834b8d0
commit
38bad263e1
|
@ -48,10 +48,10 @@ gensettingstf = [{
|
||||||
"label": "Repetition Penalty",
|
"label": "Repetition Penalty",
|
||||||
"id": "setreppen",
|
"id": "setreppen",
|
||||||
"min": 1.0,
|
"min": 1.0,
|
||||||
"max": 2.0,
|
"max": 3.0,
|
||||||
"step": 0.01,
|
"step": 0.01,
|
||||||
"default": 1.1,
|
"default": 1.1,
|
||||||
"tooltip": "Used to penalize words that were already generated or belong to the context."
|
"tooltip": "Used to penalize words that were already generated or belong to the context (Going over 1.2 breaks 6B models)."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"uitype": "slider",
|
"uitype": "slider",
|
||||||
|
@ -277,4 +277,4 @@ formatcontrols = [{
|
||||||
"label": "Single Line",
|
"label": "Single Line",
|
||||||
"id": "singleline",
|
"id": "singleline",
|
||||||
"tooltip": "Only allows the AI to output anything before the enter"
|
"tooltip": "Only allows the AI to output anything before the enter"
|
||||||
}]
|
}]
|
||||||
|
|
Loading…
Reference in New Issue