diff --git a/modules/core.py b/modules/core.py index 8562e69..28ec744 100644 --- a/modules/core.py +++ b/modules/core.py @@ -15,7 +15,7 @@ from modules.samplers_advanced import KSampler, KSamplerWithRefiner from modules.adm_patch import patch_negative_adm -# patch_negative_adm() +patch_negative_adm() opCLIPTextEncode = CLIPTextEncode() opEmptyLatentImage = EmptyLatentImage() opVAEDecode = VAEDecode() diff --git a/webui.py b/webui.py index 932c270..00bd392 100644 --- a/webui.py +++ b/webui.py @@ -4,7 +4,7 @@ from modules.default_pipeline import process def generate_clicked(positive_prompt): return process(positive_prompt=positive_prompt, - negative_prompt='plastic, blur, blurred, lack of detail, surface, plain, toon, clip art, flat') + negative_prompt='') block = gr.Blocks().queue()