Skip to content

Commit

Permalink
Change default presets
Browse files Browse the repository at this point in the history
Disable Mirostate and OpenAI compliance being enabled by default.
  • Loading branch information
lmg-anon committed Dec 4, 2023
1 parent 3973d2a commit 6611b1c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mikupad.html
Original file line number Diff line number Diff line change
Expand Up @@ -1365,19 +1365,19 @@
temperature: 0.7,
repeatPenalty: 1.1,
repeatLastN: 256,
penalizeNl: true,
penalizeNl: false,
presencePenalty: 0,
frequencyPenalty: 0,
topK: 40,
topP: 0.95,
typicalP: 1,
minP: 0,
tfsZ: 1,
mirostat: 2,
mirostat: 0,
mirostatTau: 5.0,
mirostatEta: 0.1,
ignoreEos: false,
openaiPresets: true,
openaiPresets: false,
};

function joinPrompt(prompt) {
Expand Down Expand Up @@ -2067,7 +2067,7 @@
<div className="hbox">
<${InputBox} label="Typical p" type="number" step="0.01"
readOnly=${!!cancel} value=${typicalP} onValueChange=${setTypicalP}/>
<${InputBox} label="Tail Free Sampling z" type="number" step="0.01"
<${InputBox} label="TFS z" type="number" step="0.01"
readOnly=${!!cancel} value=${tfsZ} onValueChange=${setTfsZ}/>
</div>
<div className="hbox">
Expand Down

0 comments on commit 6611b1c

Please sign in to comment.