add new sampler DDIM CFG++

This commit is contained in:
v0xie
2024-06-16 17:47:21 -07:00
parent a30b19dd55
commit 663a4d80df
3 changed files with 48 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ import modules.shared as shared
samplers_timesteps = [
('DDIM', sd_samplers_timesteps_impl.ddim, ['ddim'], {}),
('DDIM CFG++', sd_samplers_timesteps_impl.ddim_cfgpp, ['ddim_cfgpp'], {}),
('PLMS', sd_samplers_timesteps_impl.plms, ['plms'], {}),
('UniPC', sd_samplers_timesteps_impl.unipc, ['unipc'], {}),
]