diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-03-11 11:45:31 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-11 11:45:31 +0300 |
commit | a11ce2b96cc933ebb9e10d46603a89457ddcb9df (patch) | |
tree | 4c9efccb08f591e3a27b7dab6e39ce4adab17bab /modules/sd_samplers.py | |
parent | 0cc0ee1bcb4c24a8c9715f66cede06601bfc00c8 (diff) | |
parent | 5fef67f6ee949a61826a3a043ea8610fd89fc371 (diff) |
Merge pull request #7710 from space-nuko/unipc
Implement UniPC sampler
Diffstat (limited to 'modules/sd_samplers.py')
-rw-r--r-- | modules/sd_samplers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/sd_samplers.py b/modules/sd_samplers.py index 28c2136f..ff361f22 100644 --- a/modules/sd_samplers.py +++ b/modules/sd_samplers.py @@ -32,7 +32,7 @@ def set_samplers(): global samplers, samplers_for_img2img
hidden = set(shared.opts.hide_samplers)
- hidden_img2img = set(shared.opts.hide_samplers + ['PLMS'])
+ hidden_img2img = set(shared.opts.hide_samplers + ['PLMS', 'UniPC'])
samplers = [x for x in all_samplers if x.name not in hidden]
samplers_for_img2img = [x for x in all_samplers if x.name not in hidden_img2img]
|