KingNish commited on
Commit
fbf0ad4
·
verified ·
1 Parent(s): 2a31a77

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -30,8 +30,7 @@ if torch.cuda.is_available():
30
  )
31
  pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
32
  pipe.load_lora_weights('ntc-ai/SDXL-LoRA-slider.extremely-detailed', weight_name='extremely detailed.safetensors', adapter_name="extremely detailed")
33
- pipe.load_lora_weights("ehristoforu/dalle-3-xl-v2", weight_name="dalle-3-xl-lora-v2.safetensors", adapter_name="dalle2")
34
- pipe.set_adapters(["extremely detailed","dalle2"], adapter_weights=[1.0, 1.0])
35
  pipe.to("cuda")
36
 
37
 
 
30
  )
31
  pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
32
  pipe.load_lora_weights('ntc-ai/SDXL-LoRA-slider.extremely-detailed', weight_name='extremely detailed.safetensors', adapter_name="extremely detailed")
33
+ pipe.set_adapters(["dalle2"]
 
34
  pipe.to("cuda")
35
 
36