mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-04-03 21:51:04 +02:00
embetterify Sampler Select function
This commit is contained in:
parent
8ff4a4a36a
commit
7acc78db0a
@ -1273,7 +1273,7 @@
|
|||||||
<input class="neo-range-slider" type="range" id="max_tokens_second_textgenerationwebui" name="volume" min="0" max="20" step="1" />
|
<input class="neo-range-slider" type="range" id="max_tokens_second_textgenerationwebui" name="volume" min="0" max="20" step="1" />
|
||||||
<input class="neo-range-input" type="number" min="0" max="20" step="1" data-for="max_tokens_second_textgenerationwebui" id="max_tokens_second_counter_textgenerationwebui">
|
<input class="neo-range-input" type="number" min="0" max="20" step="1" data-for="max_tokens_second_textgenerationwebui" id="max_tokens_second_counter_textgenerationwebui">
|
||||||
</div>
|
</div>
|
||||||
<div data-newbie-hidden data-tg-type="mancer, ooba, koboldcpp, aphrodite, tabby" name="smoothingBlock" class="wide100p">
|
<div data-newbie-hidden data-tg-type="mancer, ooba, koboldcpp, aphrodite, tabby" id="smoothingBlock" name="smoothingBlock" class="wide100p">
|
||||||
<h4 class="wide100p textAlignCenter">
|
<h4 class="wide100p textAlignCenter">
|
||||||
<label data-i18n="Smooth Sampling">Smooth Sampling</label>
|
<label data-i18n="Smooth Sampling">Smooth Sampling</label>
|
||||||
<div class=" fa-solid fa-circle-info opacity50p " data-i18n="[title]Smooth_Sampling_desc" title="Allows you to use quadratic/cubic transformations to adjust the distribution. Lower Smoothing Factor values will be more creative, usually between 0.2-0.3 is the sweetspot (assuming the curve = 1). Higher Smoothing Curve values will make the curve steeper, which will punish low probability choices more aggressively. 1.0 curve is equivalent to only using Smoothing Factor."></div>
|
<div class=" fa-solid fa-circle-info opacity50p " data-i18n="[title]Smooth_Sampling_desc" title="Allows you to use quadratic/cubic transformations to adjust the distribution. Lower Smoothing Factor values will be more creative, usually between 0.2-0.3 is the sweetspot (assuming the curve = 1). Higher Smoothing Curve values will make the curve steeper, which will punish low probability choices more aggressively. 1.0 curve is equivalent to only using Smoothing Factor."></div>
|
||||||
@ -1387,7 +1387,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div data-newbie-hidden data-tg-type="ooba, vllm" name="beamSearchBlock" class="wide100p">
|
<div data-newbie-hidden data-tg-type="ooba, vllm" id="beamSearchBlock" name="beamSearchBlock" class="wide100p">
|
||||||
<h4 class="wide100p textAlignCenter">
|
<h4 class="wide100p textAlignCenter">
|
||||||
<label>
|
<label>
|
||||||
<span data-i18n="Beam search">Beam Search</span>
|
<span data-i18n="Beam search">Beam Search</span>
|
||||||
@ -1413,7 +1413,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div data-tg-type="ooba" data-newbie-hidden name="contrastiveSearchBlock" class="alignitemscenter flex-container flexFlowColumn flexBasis48p flexGrow flexShrink gap0">
|
<div data-tg-type="ooba" data-newbie-hidden id="contrastiveSearchBlock" name="contrastiveSearchBlock" class="alignitemscenter flex-container flexFlowColumn flexBasis48p flexGrow flexShrink gap0">
|
||||||
<h4 class="textAlignCenter" data-i18n="Contrastive search">Contrastive Search
|
<h4 class="textAlignCenter" data-i18n="Contrastive search">Contrastive Search
|
||||||
<div class=" fa-solid fa-circle-info opacity50p " data-i18n="Contrastive_search_txt" title="A sampler that encourages diversity while maintaining coherence, by exploiting the isotropicity of the representation space of most LLMs. For details, see the paper A Contrastive Framework for Neural Text Generation by Su et al. (2022)."></div>
|
<div class=" fa-solid fa-circle-info opacity50p " data-i18n="Contrastive_search_txt" title="A sampler that encourages diversity while maintaining coherence, by exploiting the isotropicity of the representation space of most LLMs. For details, see the paper A Contrastive Framework for Neural Text Generation by Su et al. (2022)."></div>
|
||||||
</h4>
|
</h4>
|
||||||
@ -1554,13 +1554,13 @@
|
|||||||
</h4>
|
</h4>
|
||||||
<textarea id="grammar_string_textgenerationwebui" rows="4" class="text_pole textarea_compact monospace" data-i18n="[placeholder]Type in the desired custom grammar" placeholder="Type in the desired custom grammar"></textarea>
|
<textarea id="grammar_string_textgenerationwebui" rows="4" class="text_pole textarea_compact monospace" data-i18n="[placeholder]Type in the desired custom grammar" placeholder="Type in the desired custom grammar"></textarea>
|
||||||
</div>
|
</div>
|
||||||
<div id="sampler_order_block" data-newbie-hidden data-tg-type="koboldcpp" class="range-block flexFlowColumn wide100p">
|
<div id="sampler_order_block_kcpp" data-newbie-hidden data-tg-type="koboldcpp" class="range-block flexFlowColumn wide100p">
|
||||||
<hr class="wide100p">
|
<hr class="wide100p">
|
||||||
<div class="range-block-title">
|
<div class="range-block-title">
|
||||||
<span data-i18n="Samplers Order">Samplers Order</span>
|
<span data-i18n="Samplers Order">Samplers Order</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="toggle-description widthUnset" data-i18n="Samplers will be applied in a top-down order. Use with caution.">
|
<div class="toggle-description widthUnset" data-i18n="Samplers will be applied in a top-down order. Use with caution.">
|
||||||
Samplers will be applied in a top-down order.
|
kcpp only. Samplers will be applied in a top-down order.
|
||||||
Use with caution.
|
Use with caution.
|
||||||
</div>
|
</div>
|
||||||
<div id="koboldcpp_order" class="prompt_order">
|
<div id="koboldcpp_order" class="prompt_order">
|
||||||
@ -1597,10 +1597,10 @@
|
|||||||
<span data-i18n="Load default order">Load default order</span>
|
<span data-i18n="Load default order">Load default order</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div data-newbie-hidden data-tg-type="llamacpp" class="range-block flexFlowColumn wide100p">
|
<div id="sampler_order_block_lcpp" data-newbie-hidden data-tg-type="llamacpp" class="range-block flexFlowColumn wide100p">
|
||||||
<hr class="wide100p">
|
<hr class="wide100p">
|
||||||
<h4 class="range-block-title justifyCenter">
|
<h4 class="range-block-title justifyCenter">
|
||||||
<span data-i18n="Samplers Order">Samplers Order</span>
|
<span data-i18n="Sampler Order">Sampler Order</span>
|
||||||
<div class="margin5 fa-solid fa-circle-info opacity50p" data-i18n="[title]llama.cpp only. Determines the order of samplers. If Mirostat mode is not 0, sampler order is ignored." title="llama.cpp only. Determines the order of samplers. If Mirostat mode is not 0, sampler order is ignored."></div>
|
<div class="margin5 fa-solid fa-circle-info opacity50p" data-i18n="[title]llama.cpp only. Determines the order of samplers. If Mirostat mode is not 0, sampler order is ignored." title="llama.cpp only. Determines the order of samplers. If Mirostat mode is not 0, sampler order is ignored."></div>
|
||||||
</h4>
|
</h4>
|
||||||
<div class="toggle-description widthUnset" data-i18n="llama.cpp only. Determines the order of samplers. If Mirostat mode is not 0, sampler order is ignored.">
|
<div class="toggle-description widthUnset" data-i18n="llama.cpp only. Determines the order of samplers. If Mirostat mode is not 0, sampler order is ignored.">
|
||||||
@ -1618,7 +1618,7 @@
|
|||||||
<span data-i18n="Load default order">Load default order</span>
|
<span data-i18n="Load default order">Load default order</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div data-newbie-hidden data-tg-type="ooba" class="range-block flexFlowColumn wide100p">
|
<div id="sampler_priority_block_ooba" data-newbie-hidden data-tg-type="ooba" class="range-block flexFlowColumn wide100p">
|
||||||
<hr class="wide100p">
|
<hr class="wide100p">
|
||||||
<h4 class="range-block-title justifyCenter">
|
<h4 class="range-block-title justifyCenter">
|
||||||
<span data-i18n="Sampler Priority">Sampler Priority</span>
|
<span data-i18n="Sampler Priority">Sampler Priority</span>
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
import {
|
import {
|
||||||
main_api,
|
main_api,
|
||||||
saveSettingsDebounced,
|
saveSettingsDebounced,
|
||||||
novelai_setting_names,
|
|
||||||
callPopup,
|
callPopup,
|
||||||
settings,
|
|
||||||
} from '../script.js';
|
} from '../script.js';
|
||||||
import { power_user } from './power-user.js';
|
import { power_user } from './power-user.js';
|
||||||
//import { BIAS_CACHE, displayLogitBias, getLogitBiasListResult } from './logit-bias.js';
|
//import { BIAS_CACHE, displayLogitBias, getLogitBiasListResult } from './logit-bias.js';
|
||||||
@ -20,132 +18,6 @@ const forcedOffColoring = 'filter: sepia(1) hue-rotate(308deg) contrast(0.7) sat
|
|||||||
|
|
||||||
let userDisabledSamplers, userShownSamplers;
|
let userDisabledSamplers, userShownSamplers;
|
||||||
|
|
||||||
/*
|
|
||||||
|
|
||||||
for reference purposes:
|
|
||||||
|
|
||||||
//NAI
|
|
||||||
const nai_settings = {
|
|
||||||
temperature: 1.5,
|
|
||||||
repetition_penalty: 2.25,
|
|
||||||
repetition_penalty_range: 2048,
|
|
||||||
repetition_penalty_slope: 0.09,
|
|
||||||
repetition_penalty_frequency: 0,
|
|
||||||
repetition_penalty_presence: 0.005,
|
|
||||||
tail_free_sampling: 0.975,
|
|
||||||
top_k: 10,
|
|
||||||
top_p: 0.75,
|
|
||||||
top_a: 0.08,
|
|
||||||
typical_p: 0.975,
|
|
||||||
min_length: 1,
|
|
||||||
model_novel: 'clio-v1',
|
|
||||||
preset_settings_novel: 'Talker-Chat-Clio',
|
|
||||||
streaming_novel: false,
|
|
||||||
preamble: default_preamble,
|
|
||||||
prefix: '',
|
|
||||||
cfg_uc: '',
|
|
||||||
banned_tokens: '',
|
|
||||||
order: default_order,
|
|
||||||
logit_bias: [],
|
|
||||||
};
|
|
||||||
|
|
||||||
// TG Types
|
|
||||||
export const textgen_types = {
|
|
||||||
OOBA: 'ooba',
|
|
||||||
MANCER: 'mancer',
|
|
||||||
VLLM: 'vllm',
|
|
||||||
APHRODITE: 'aphrodite',
|
|
||||||
TABBY: 'tabby',
|
|
||||||
KOBOLDCPP: 'koboldcpp',
|
|
||||||
TOGETHERAI: 'togetherai',
|
|
||||||
LLAMACPP: 'llamacpp',
|
|
||||||
OLLAMA: 'ollama',
|
|
||||||
INFERMATICAI: 'infermaticai',
|
|
||||||
DREAMGEN: 'dreamgen',
|
|
||||||
OPENROUTER: 'openrouter',
|
|
||||||
};
|
|
||||||
|
|
||||||
//KAI and TextGen
|
|
||||||
const setting_names = [
|
|
||||||
'temp',
|
|
||||||
'temperature_last',
|
|
||||||
'rep_pen',
|
|
||||||
'rep_pen_range',
|
|
||||||
'no_repeat_ngram_size',
|
|
||||||
'top_k',
|
|
||||||
'top_p',
|
|
||||||
'top_a',
|
|
||||||
'tfs',
|
|
||||||
'epsilon_cutoff',
|
|
||||||
'eta_cutoff',
|
|
||||||
'typical_p',
|
|
||||||
'min_p',
|
|
||||||
'penalty_alpha',
|
|
||||||
'num_beams',
|
|
||||||
'length_penalty',
|
|
||||||
'min_length',
|
|
||||||
'dynatemp',
|
|
||||||
'min_temp',
|
|
||||||
'max_temp',
|
|
||||||
'dynatemp_exponent',
|
|
||||||
'smoothing_factor',
|
|
||||||
'smoothing_curve',
|
|
||||||
'max_tokens_second',
|
|
||||||
'encoder_rep_pen',
|
|
||||||
'freq_pen',
|
|
||||||
'presence_pen',
|
|
||||||
'do_sample',
|
|
||||||
'early_stopping',
|
|
||||||
'seed',
|
|
||||||
'add_bos_token',
|
|
||||||
'ban_eos_token',
|
|
||||||
'skip_special_tokens',
|
|
||||||
'streaming',
|
|
||||||
'mirostat_mode',
|
|
||||||
'mirostat_tau',
|
|
||||||
'mirostat_eta',
|
|
||||||
'guidance_scale',
|
|
||||||
'negative_prompt',
|
|
||||||
'grammar_string',
|
|
||||||
'json_schema',
|
|
||||||
'banned_tokens',
|
|
||||||
'legacy_api',
|
|
||||||
//'n_aphrodite',
|
|
||||||
//'best_of_aphrodite',
|
|
||||||
'ignore_eos_token',
|
|
||||||
'spaces_between_special_tokens',
|
|
||||||
//'logits_processors_aphrodite',
|
|
||||||
//'log_probs_aphrodite',
|
|
||||||
//'prompt_log_probs_aphrodite'
|
|
||||||
'sampler_order',
|
|
||||||
'sampler_priority',
|
|
||||||
'samplers',
|
|
||||||
'n',
|
|
||||||
'logit_bias',
|
|
||||||
'custom_model',
|
|
||||||
'bypass_status_check',
|
|
||||||
];
|
|
||||||
|
|
||||||
//OAI settings
|
|
||||||
|
|
||||||
const default_settings = {
|
|
||||||
preset_settings_openai: 'Default',
|
|
||||||
temp_openai: 1.0,
|
|
||||||
freq_pen_openai: 0,
|
|
||||||
pres_pen_openai: 0,
|
|
||||||
count_pen: 0.0,
|
|
||||||
top_p_openai: 1.0,
|
|
||||||
top_k_openai: 0,
|
|
||||||
min_p_openai: 0,
|
|
||||||
top_a_openai: 1,
|
|
||||||
repetition_penalty_openai: 1,
|
|
||||||
stream_openai: false,
|
|
||||||
//...
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Goal 1: show popup with all samplers for active API
|
// Goal 1: show popup with all samplers for active API
|
||||||
async function showSamplerSelectPopup() {
|
async function showSamplerSelectPopup() {
|
||||||
const popup = $('#dialogue_popup');
|
const popup = $('#dialogue_popup');
|
||||||
@ -190,6 +62,15 @@ async function showSamplerSelectPopup() {
|
|||||||
power_user.selectSamplers.forceHidden = [];
|
power_user.selectSamplers.forceHidden = [];
|
||||||
await validateDisabledSamplers(true);
|
await validateDisabledSamplers(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('#textgen_type').on('change', async function () {
|
||||||
|
console.log('changed TG Type, resetting custom samplers'); //unfortunate, but necessary unless we save custom samplers for each TGTytpe
|
||||||
|
userDisabledSamplers = [];
|
||||||
|
userShownSamplers = [];
|
||||||
|
power_user.selectSamplers.forceShown = [];
|
||||||
|
power_user.selectSamplers.forceHidden = [];
|
||||||
|
await validateDisabledSamplers();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function setSamplerListListeners() {
|
function setSamplerListListeners() {
|
||||||
@ -221,6 +102,11 @@ function setSamplerListListeners() {
|
|||||||
targetDisplayType = 'block';
|
targetDisplayType = 'block';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (samplerName === 'dry_multiplier') {
|
||||||
|
relatedDOMElement = $('#dryBlock');
|
||||||
|
targetDisplayType = 'block';
|
||||||
|
}
|
||||||
|
|
||||||
if (samplerName === 'dynatemp') {
|
if (samplerName === 'dynatemp') {
|
||||||
relatedDOMElement = $('#dynatemp_block_ooba');
|
relatedDOMElement = $('#dynatemp_block_ooba');
|
||||||
targetDisplayType = 'block';
|
targetDisplayType = 'block';
|
||||||
@ -231,9 +117,30 @@ function setSamplerListListeners() {
|
|||||||
targetDisplayType = 'block';
|
targetDisplayType = 'block';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (samplerName === 'sampler_order') {
|
if (samplerName === 'sampler_order') { //this is for kcpp sampler order
|
||||||
relatedDOMElement = $('#sampler_order_block');
|
relatedDOMElement = $('#sampler_order_block_kcpp');
|
||||||
targetDisplayType = 'flex';
|
}
|
||||||
|
|
||||||
|
if (samplerName === 'samplers') { //this is for lcpp sampler order
|
||||||
|
relatedDOMElement = $('#sampler_order_block_lcpp');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (samplerName === 'sampler_priority') { //this is for ooba's sampler priority
|
||||||
|
relatedDOMElement = $('#sampler_priority_block_ooba');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (samplerName === 'penalty_alpha') { //contrastive search only has one sampler, does it need its own block?
|
||||||
|
relatedDOMElement = $('#contrastiveSearchBlock');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (samplerName === 'num_beams') { // num_beams is the killswitch for Beam Search
|
||||||
|
relatedDOMElement = $('#beamSearchBlock');
|
||||||
|
targetDisplayType = 'block';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (samplerName === 'smoothing_factor') { // num_beams is the killswitch for Beam Search
|
||||||
|
relatedDOMElement = $('#smoothingBlock');
|
||||||
|
targetDisplayType = 'block';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the current state of the custom data attribute
|
// Get the current state of the custom data attribute
|
||||||
@ -301,7 +208,7 @@ async function listSamplers(main_api, arrayOnly = false) {
|
|||||||
let availableSamplers;
|
let availableSamplers;
|
||||||
if (main_api === 'textgenerationwebui') {
|
if (main_api === 'textgenerationwebui') {
|
||||||
availableSamplers = TGsamplerNames;
|
availableSamplers = TGsamplerNames;
|
||||||
const valuesToRemove = new Set(['streaming', 'seed', 'bypass_status_check', 'custom_model', 'legacy_api', 'samplers']);
|
const valuesToRemove = new Set(['streaming', 'bypass_status_check', 'custom_model', 'legacy_api']);
|
||||||
availableSamplers = availableSamplers.filter(sampler => !valuesToRemove.has(sampler));
|
availableSamplers = availableSamplers.filter(sampler => !valuesToRemove.has(sampler));
|
||||||
availableSamplers.sort();
|
availableSamplers.sort();
|
||||||
}
|
}
|
||||||
@ -312,8 +219,70 @@ async function listSamplers(main_api, arrayOnly = false) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const samplersListHTML = availableSamplers.reduce((html, sampler) => {
|
const samplersListHTML = availableSamplers.reduce((html, sampler) => {
|
||||||
let customColor;
|
let customColor, displayname;
|
||||||
const targetDOMelement = $(`#${sampler}_${main_api}`);
|
let targetDOMelement = $(`#${sampler}_${main_api}`);
|
||||||
|
|
||||||
|
if (sampler === 'sampler_order') { //this is for kcpp sampler order
|
||||||
|
targetDOMelement = $('#sampler_order_block_kcpp');
|
||||||
|
displayname = 'KCPP Sampler Order Block';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'samplers') { //this is for lcpp sampler order
|
||||||
|
targetDOMelement = $('#sampler_order_block_lcpp');
|
||||||
|
displayname = 'LCPP Sampler Order Block';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'sampler_priority') { //this is for ooba's sampler priority
|
||||||
|
targetDOMelement = $('#sampler_priority_block_ooba');
|
||||||
|
displayname = 'Ooba Sampler Priority Block';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'penalty_alpha') { //contrastive search only has one sampler, does it need its own block?
|
||||||
|
targetDOMelement = $('#contrastiveSearchBlock');
|
||||||
|
displayname = 'Contrast Search Block';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'num_beams') { // num_beams is the killswitch for Beam Search
|
||||||
|
targetDOMelement = $('#beamSearchBlock');
|
||||||
|
displayname = 'Beam Search Block';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'smoothing_factor') { // num_beams is the killswitch for Beam Search
|
||||||
|
targetDOMelement = $('#smoothingBlock');
|
||||||
|
displayname = 'Smoothing Block';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'dry_multiplier') {
|
||||||
|
targetDOMelement = $('#dryBlock');
|
||||||
|
displayname = 'DRY Rep Pen Block';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'dynatemp') {
|
||||||
|
targetDOMelement = $('#dynatemp_block_ooba');
|
||||||
|
displayname = 'DynaTemp Block';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'json_schema') {
|
||||||
|
targetDOMelement = $('#json_schema_block');
|
||||||
|
displayname = 'JSON Schema Block';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'grammar_string') {
|
||||||
|
targetDOMelement = $('#grammar_block_ooba');
|
||||||
|
displayname = 'Grammar Block';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'guidance_scale') {
|
||||||
|
targetDOMelement = $('#cfg_block_ooba');
|
||||||
|
displayname = 'CFG Block';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'mirostat_mode') {
|
||||||
|
targetDOMelement = $('#mirostat_block_ooba');
|
||||||
|
displayname = 'Mirostat Block';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const isInForceHiddenArray = userDisabledSamplers.includes(sampler);
|
const isInForceHiddenArray = userDisabledSamplers.includes(sampler);
|
||||||
const isInForceShownArray = userShownSamplers.includes(sampler);
|
const isInForceShownArray = userShownSamplers.includes(sampler);
|
||||||
@ -335,11 +304,12 @@ async function listSamplers(main_api, arrayOnly = false) {
|
|||||||
}
|
}
|
||||||
else { return isVisibleInDOM; }
|
else { return isVisibleInDOM; }
|
||||||
};
|
};
|
||||||
console.log(sampler, isInDefaultState(), isInForceHiddenArray, shouldBeChecked());
|
console.log(sampler, targetDOMelement.prop('id'), isInDefaultState(), isInForceShownArray, isInForceHiddenArray, shouldBeChecked());
|
||||||
|
if (displayname === undefined) { displayname = sampler; }
|
||||||
return html + `
|
return html + `
|
||||||
<div class="sampler_view_list_item wide50p flex-container">
|
<div class="sampler_view_list_item wide50p flex-container">
|
||||||
<input type="checkbox" name="${sampler}_checkbox" ${shouldBeChecked() ? 'checked' : ''}>
|
<input type="checkbox" name="${sampler}_checkbox" ${shouldBeChecked() ? 'checked' : ''}>
|
||||||
<small class="sampler_name" style="${customColor}">${sampler}</small>
|
<small class="sampler_name" style="${customColor}">${displayname}</small>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
}, '');
|
}, '');
|
||||||
@ -391,8 +361,33 @@ export async function validateDisabledSamplers(redraw = false) {
|
|||||||
targetDisplayType = 'block';
|
targetDisplayType = 'block';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sampler === 'sampler_order') {
|
if (sampler === 'sampler_order') { //this is for kcpp sampler order
|
||||||
relatedDOMElement = $('#sampler_order_block');
|
relatedDOMElement = $('#sampler_order_block_kcpp');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'samplers') { //this is for lcpp sampler order
|
||||||
|
relatedDOMElement = $('#sampler_order_block_lcpp');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'sampler_priority') { //this is for ooba's sampler priority
|
||||||
|
relatedDOMElement = $('#sampler_priority_block_ooba');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'dry_multiplier') {
|
||||||
|
relatedDOMElement = $('#dryBlock');
|
||||||
|
targetDisplayType = 'block';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'penalty_alpha') { //contrastive search only has one sampler, does it need its own block?
|
||||||
|
relatedDOMElement = $('#contrastiveSearchBlock');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'num_beams') { // num_beams is the killswitch for Beam Search
|
||||||
|
relatedDOMElement = $('#beamSearchBlock');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sampler === 'smoothing_factor') { // num_beams is the killswitch for Beam Search
|
||||||
|
relatedDOMElement = $('#smoothingBlock');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (power_user?.selectSamplers?.forceHidden.includes(sampler)) {
|
if (power_user?.selectSamplers?.forceHidden.includes(sampler)) {
|
||||||
@ -418,6 +413,7 @@ export async function validateDisabledSamplers(redraw = false) {
|
|||||||
setSamplerListListeners();
|
setSamplerListListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await saveSettingsDebounced();
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user