mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-12-27 20:32:35 -08:00
updates for the noise schedule settings
This commit is contained in:
parent
654234ec56
commit
e8e7fe11e9
4 changed files with 35 additions and 33 deletions
|
|
@ -306,17 +306,17 @@ Steps: 20, Sampler: Euler a, CFG scale: 7, Seed: 965400086, Size: 512x512, Model
|
|||
if "RNG" not in res:
|
||||
res["RNG"] = "GPU"
|
||||
|
||||
if "KDiff Schedule Type" not in res:
|
||||
res["KDiff Schedule Type"] = "Automatic"
|
||||
if "Schedule type" not in res:
|
||||
res["Schedule type"] = "Automatic"
|
||||
|
||||
if "KDiff Schedule max sigma" not in res:
|
||||
res["KDiff Schedule max sigma"] = 14.6
|
||||
if "Schedule max sigma" not in res:
|
||||
res["Schedule max sigma"] = 0
|
||||
|
||||
if "KDiff Schedule min sigma" not in res:
|
||||
res["KDiff Schedule min sigma"] = 0.3
|
||||
if "Schedule min sigma" not in res:
|
||||
res["Schedule min sigma"] = 0
|
||||
|
||||
if "KDiff Schedule rho" not in res:
|
||||
res["KDiff Schedule rho"] = 7.0
|
||||
if "Schedule rho" not in res:
|
||||
res["Schedule rho"] = 0
|
||||
|
||||
return res
|
||||
|
||||
|
|
@ -330,10 +330,10 @@ infotext_to_setting_name_mapping = [
|
|||
('Conditional mask weight', 'inpainting_mask_weight'),
|
||||
('Model hash', 'sd_model_checkpoint'),
|
||||
('ENSD', 'eta_noise_seed_delta'),
|
||||
('KDiff Schedule Type', 'k_sched_type'),
|
||||
('KDiff Schedule max sigma', 'sigma_max'),
|
||||
('KDiff Schedule min sigma', 'sigma_min'),
|
||||
('KDiff Schedule rho', 'rho'),
|
||||
('Schedule type', 'k_sched_type'),
|
||||
('Schedule max sigma', 'sigma_max'),
|
||||
('Schedule min sigma', 'sigma_min'),
|
||||
('Schedule rho', 'rho'),
|
||||
('Noise multiplier', 'initial_noise_multiplier'),
|
||||
('Eta', 'eta_ancestral'),
|
||||
('Eta DDIM', 'eta_ddim'),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue