diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-08 18:07:18 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-08 18:08:50 +0000 |
commit | a8a256f9b5b445206818bfc8a363ed5a1ba50c86 (patch) | |
tree | a034936fe504c20e5f748fe01af56a2d7b88db8f /modules/sd_samplers_timesteps.py | |
parent | 8285a149d8c488ae6c7a566eb85fb5e825145464 (diff) | |
download | stable-diffusion-webui-gfx803-a8a256f9b5b445206818bfc8a363ed5a1ba50c86.tar.gz stable-diffusion-webui-gfx803-a8a256f9b5b445206818bfc8a363ed5a1ba50c86.tar.bz2 stable-diffusion-webui-gfx803-a8a256f9b5b445206818bfc8a363ed5a1ba50c86.zip |
REMOVE
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'], {}),
]
|