Revert TFS granularity
This commit is contained in:
parent
22cebe3176
commit
dcca49e848
|
@ -438,7 +438,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="range-block-range-and-counter">
|
<div class="range-block-range-and-counter">
|
||||||
<div class="range-block-range">
|
<div class="range-block-range">
|
||||||
<input type="range" id="tail_free_sampling_novel" name="volume" min="0" max="1" step="0.01">
|
<input type="range" id="tail_free_sampling_novel" name="volume" min="0" max="1" step="0.001">
|
||||||
</div>
|
</div>
|
||||||
<div class="range-block-counter">
|
<div class="range-block-counter">
|
||||||
<input type="number" min="0" max="1" step="0.01" data-for="tail_free_sampling_novel" id="tail_free_sampling_counter_novel">
|
<input type="number" min="0" max="1" step="0.01" data-for="tail_free_sampling_novel" id="tail_free_sampling_counter_novel">
|
||||||
|
@ -5075,4 +5075,4 @@
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -188,7 +188,7 @@ function loadNovelSettingsUi(ui_settings) {
|
||||||
$("#rep_pen_presence_novel").val(ui_settings.repetition_penalty_presence);
|
$("#rep_pen_presence_novel").val(ui_settings.repetition_penalty_presence);
|
||||||
$("#rep_pen_presence_counter_novel").val(Number(ui_settings.repetition_penalty_presence).toFixed(2));
|
$("#rep_pen_presence_counter_novel").val(Number(ui_settings.repetition_penalty_presence).toFixed(2));
|
||||||
$("#tail_free_sampling_novel").val(ui_settings.tail_free_sampling);
|
$("#tail_free_sampling_novel").val(ui_settings.tail_free_sampling);
|
||||||
$("#tail_free_sampling_counter_novel").val(Number(ui_settings.tail_free_sampling).toFixed(2));
|
$("#tail_free_sampling_counter_novel").val(Number(ui_settings.tail_free_sampling).toFixed(3));
|
||||||
$("#top_k_novel").val(ui_settings.top_k);
|
$("#top_k_novel").val(ui_settings.top_k);
|
||||||
$("#top_k_counter_novel").val(Number(ui_settings.top_k).toFixed(0));
|
$("#top_k_counter_novel").val(Number(ui_settings.top_k).toFixed(0));
|
||||||
$("#top_p_novel").val(ui_settings.top_p);
|
$("#top_p_novel").val(ui_settings.top_p);
|
||||||
|
@ -257,7 +257,7 @@ const sliders = [
|
||||||
sliderId: "#tail_free_sampling_novel",
|
sliderId: "#tail_free_sampling_novel",
|
||||||
counterId: "#tail_free_sampling_counter_novel",
|
counterId: "#tail_free_sampling_counter_novel",
|
||||||
format: (val) => `${val}`,
|
format: (val) => `${val}`,
|
||||||
setValue: (val) => { nai_settings.tail_free_sampling = Number(val).toFixed(2); },
|
setValue: (val) => { nai_settings.tail_free_sampling = Number(val).toFixed(3); },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
sliderId: "#top_k_novel",
|
sliderId: "#top_k_novel",
|
||||||
|
|
Loading…
Reference in New Issue