diff options
Diffstat (limited to 'modules/sd_samplers_timesteps.py')
-rw-r--r-- | modules/sd_samplers_timesteps.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/sd_samplers_timesteps.py b/modules/sd_samplers_timesteps.py index 8560d009..d89d0efb 100644 --- a/modules/sd_samplers_timesteps.py +++ b/modules/sd_samplers_timesteps.py @@ -7,9 +7,9 @@ from modules.shared import opts import modules.shared as shared
samplers_timesteps = [
- ('k_DDIM', sd_samplers_timesteps_impl.ddim, ['k_ddim'], {}),
- ('k_PLMS', sd_samplers_timesteps_impl.plms, ['k_plms'], {}),
- ('k_UniPC', sd_samplers_timesteps_impl.unipc, ['k_unipc'], {}),
+ ('DDIM', sd_samplers_timesteps_impl.ddim, ['ddim'], {}),
+ ('PLMS', sd_samplers_timesteps_impl.plms, ['plms'], {}),
+ ('UniPC', sd_samplers_timesteps_impl.unipc, ['unipc'], {}),
]
|