mirror of
https://github.com/vladmandic/automatic
synced 2026-09-19 01:04:32 +02:00
force update deis settings
This commit is contained in:
+2
-1
@@ -12,7 +12,7 @@ Service release addressing all zero-day issues reported so far...
|
||||
- fix handling of relative path for models
|
||||
- fix simple live preview device mismatch
|
||||
- fix batch img2img
|
||||
- fix diffusers dpm++ 2m and 1s samplers
|
||||
- fix diffusers dpm++ 2m, dpm++ 1s, deis samplers
|
||||
- fix new style filename template
|
||||
- fix image name template using model name
|
||||
- fix model path using relative path
|
||||
@@ -21,6 +21,7 @@ Service release addressing all zero-day issues reported so far...
|
||||
- remove lyco, multiple_tqdm
|
||||
- enhance extension compatibility for exensions directly importing codeformers
|
||||
- enhance extension compatibility for exensions directly accessing processing params
|
||||
- clearly mark external themes in ui
|
||||
- update `openvino` (thanks @disty0)
|
||||
- update `typing-extensions`
|
||||
|
||||
|
||||
@@ -77,6 +77,7 @@ function markIfModified(setting_name, value) {
|
||||
tab_nav_indicator.classList.toggle('saved', saved.size > 0);
|
||||
if (changed_items.size > 0) tab_nav_indicator.title += `click to reset ${changed_items.size} unapplied changes in this tab\n`;
|
||||
if (saved.size > 0) tab_nav_indicator.title += `${saved.size} custom values\n${unsaved.size} default values}`;
|
||||
elem.scrollIntoView({ behavior: 'smooth', block: 'center' });
|
||||
}
|
||||
|
||||
onAfterUiUpdate(async () => {
|
||||
|
||||
@@ -97,11 +97,13 @@ class DiffusionSampler:
|
||||
self.config['solver_order'] = shared.opts.schedulers_solver_order
|
||||
if 'predict_x0' in self.config:
|
||||
self.config['predict_x0'] = shared.opts.uni_pc_variant
|
||||
if name == 'DPM++ 2M':
|
||||
self.config['algorithm_type'] = shared.opts.schedulers_dpm_solver
|
||||
if 'beta_start' in self.config and shared.opts.schedulers_beta_start > 0:
|
||||
self.config['beta_start'] = shared.opts.schedulers_beta_start
|
||||
if 'beta_end' in self.config and shared.opts.schedulers_beta_end > 0:
|
||||
self.config['beta_end'] = shared.opts.schedulers_beta_end
|
||||
if name == 'DPM++ 2M':
|
||||
self.config['algorithm_type'] = shared.opts.schedulers_dpm_solver
|
||||
if name == 'DEIS':
|
||||
self.config['algorithm_type'] = 'deis'
|
||||
self.sampler = constructor(**self.config)
|
||||
self.sampler.name = name
|
||||
|
||||
Reference in New Issue
Block a user