From 554f26296e0045db78f86e97ffee60805c93fc9a Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Wed, 17 May 2023 08:46:57 -0400 Subject: [PATCH] update initial samplers --- modules/sd_samplers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/sd_samplers.py b/modules/sd_samplers.py index 84ae96576..bc82371c8 100644 --- a/modules/sd_samplers.py +++ b/modules/sd_samplers.py @@ -6,8 +6,8 @@ all_samplers = [ *sd_samplers_compvis.samplers_data_compvis, ] all_samplers_map = {x.name: x for x in all_samplers} -samplers = ['PLMS', 'UniPC'] # set default to keep some extensions happy -samplers_for_img2img = [] +samplers = all_samplers +samplers_for_img2img = all_samplers samplers_map = {}