mirror of
https://github.com/elder-plinius/AutoTemp.git
synced 2026-02-12 17:22:46 +00:00
chore(ui): reduce max_tokens dotbar density and simplify defaults
This commit is contained in:
@@ -264,7 +264,8 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
|
||||
initDotbar('tempDots', 0.0, 1.5, 0.1, parseFloat, 'temperatures');
|
||||
initDotbar('topDots', 0.0, 1.0, 0.1, parseFloat, 'tops');
|
||||
initDotbar('maxTokDots', 64, 2048, 64, x=>parseInt(x,10), 'maxTokens');
|
||||
// Reduce noise: wider steps for max_tokens
|
||||
initDotbar('maxTokDots', 128, 8192, 384, x=>parseInt(x,10), 'maxTokens');
|
||||
initDotbar('freqDots', 0.0, 2.0, 0.1, parseFloat, 'freqPen');
|
||||
initDotbar('presDots', 0.0, 2.0, 0.1, parseFloat, 'presPen');
|
||||
|
||||
|
||||
@@ -50,19 +50,19 @@
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="maxTokens">max_tokens list</label>
|
||||
<input id="maxTokens" value="256,512" />
|
||||
<input id="maxTokens" value="512" />
|
||||
<div class="dotbar" id="maxTokDots"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid-3">
|
||||
<div class="field">
|
||||
<label for="freqPen">frequency_penalty list</label>
|
||||
<input id="freqPen" value="0,0.2" />
|
||||
<input id="freqPen" value="0" />
|
||||
<div class="dotbar" id="freqDots"></div>
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="presPen">presence_penalty list</label>
|
||||
<input id="presPen" value="0,0.2" />
|
||||
<input id="presPen" value="0" />
|
||||
<div class="dotbar" id="presDots"></div>
|
||||
</div>
|
||||
<div class="field">
|
||||
|
||||
Reference in New Issue
Block a user