Browse Source

Add: JuggernautXL & SDXL DPO TURBO Fix: Dreamshaper 8

Add: 
JuggernautXL: https://huggingface.co/stablediffusionapi/juggernaut-xl
SDXL DPO TURBO: https://huggingface.co/thibaud/sdxl_dpo_turbo

Fix:
Dreamshaper 8: https://huggingface.co/Lykon/dreamshaper-8
pull/101/head
tin2tin 9 months ago committed by GitHub
parent
commit
1aa82d4bef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      __init__.py

3
__init__.py

@ -1183,6 +1183,7 @@ class GeneratorAddonPreferences(AddonPreferences):
#("PixArt-alpha/PixArt-XL-2-1024-MS", "PixArt (1024 x 1024)", "PixArt-alpha/PixArt-XL-2-1024-MS"),
### ("ptx0/terminus-xl-gamma-v1", "Terminus XL Gamma v1", "ptx0/terminus-xl-gamma-v1"),
# ("warp-ai/wuerstchen", "Würstchen (1024x1024)", "warp-ai/wuerstchen"),
("imagepipeline/JuggernautXL-v8", "JuggernautXL-v8 (1024x1024)", "imagepipeline/JuggernautXL-v8"),
### ("lrzjason/playground-v2-1024px-aesthetic-fp16", "Playground v2 (1024x1024)", "lrzjason/playground-v2-1024px-aesthetic-fp16"),
# (
# "playgroundai/playground-v2-1024px-aesthetic",
@ -3801,7 +3802,7 @@ class SEQUENCER_OT_generate_image(Operator):
scene.movie_num_guidance = 0
pipe.load_lora_weights("segmind/Segmind-VegaRT")
pipe.fuse_lora()
elif image_model_card != "PixArt-alpha/PixArt-XL-2-1024-MS":
elif image_model_card != "PixArt-alpha/PixArt-XL-2-1024-MS" and image_model_card != "Lykon/dreamshaper-8":
print("Use LCM: False")
pipe.scheduler = DPMSolverMultistepScheduler.from_config(
pipe.scheduler.config

Loading…
Cancel
Save