Skip to content

Commit

Permalink
changed inputmodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Concedo authored and Concedo committed Oct 6, 2023
1 parent b89157b commit 73978b9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10053,7 +10053,7 @@
class="helptext">Randomness of sampling. High values can increase creativity but
may make text less sensible. Lower values will make text more predictable but
can become repetitious.</span></span></div>
<input inputmode="numeric" class="justifyright flex-push-right settingsmall" id="temperature" value=0.5
<input inputmode="decimal" class="justifyright flex-push-right settingsmall" id="temperature" value=0.5
oninput="
document.getElementById('temperature_slide').value = this.value;">
</div>
Expand Down Expand Up @@ -10116,7 +10116,7 @@
<div class="justifyleft settingsmall">Top p Sampling <span class="helpicon">?<span class="helptext">Used
to discard unlikely text in the sampling process. Lower values will make text
more predictable but can become repetitious. Set to 1 to deactivate it.</span></span></div>
<input inputmode="numeric" class="justifyright flex-push-right settingsmall" id="top_p" value=80 oninput="
<input inputmode="decimal" class="justifyright flex-push-right settingsmall" id="top_p" value=80 oninput="
document.getElementById('top_p_slide').value = this.value;">
</div>
<div><input type="range" class="form-range airange" min="0" max="1" step="0.01" id="top_p_slide"
Expand All @@ -10135,7 +10135,7 @@
<div class="justifyleft settingsmall">Repetition Penalty <span class="helpicon">?<span
class="helptext">Used to penalize words that were already generated or belong to
the context (Going over 1.2 breaks 6B models).</span></span></div>
<input inputmode="numeric" class="justifyright flex-push-right settingsmall" id="rep_pen" value=80
<input inputmode="decimal" class="justifyright flex-push-right settingsmall" id="rep_pen" value=80
oninput="
document.getElementById('rep_pen_slide').value = this.value;">
</div>
Expand Down Expand Up @@ -10261,13 +10261,13 @@
<th title="Tail-Free Sampling. 1 to Deactivate.">TFS</th>
</tr>
<tr>
<td><input class="" type="text" placeholder="0" value="0"
<td><input class="" type="text" inputmode="decimal" placeholder="0" value="0"
id="top_k"></td>
<td><input class="" type="text" placeholder="0" value="0"
<td><input class="" type="text" inputmode="decimal" placeholder="0" value="0"
id="top_a"></td>
<td><input class="" type="text" placeholder="0" value="0"
<td><input class="" type="text" inputmode="decimal" placeholder="0" value="0"
id="typ_s"></td>
<td><input class="" type="text" placeholder="0" value="0"
<td><input class="" type="text" inputmode="decimal" placeholder="0" value="0"
id="tfs_s"></td>
</tr>
</table>
Expand Down

0 comments on commit 73978b9

Please sign in to comment.