aifeifei798 commited on
Commit
0bd0fb4
·
verified ·
1 Parent(s): 78891d6

Update feifeilib/feifeimodload.py

Browse files
Files changed (1) hide show
  1. feifeilib/feifeimodload.py +8 -3
feifeilib/feifeimodload.py CHANGED
@@ -14,10 +14,15 @@ def feifeimodload():
14
  taef1 = AutoencoderTiny.from_pretrained("aifeifei798/taef1", torch_dtype=dtype).to(
15
  device
16
  )
17
- pipe = DiffusionPipeline.from_pretrained(
18
- "aifeifei798/DarkIdol-flux-v1", torch_dtype=dtype, vae=taef1
19
- ).to(device)
 
20
 
 
 
 
 
21
  pipe.load_lora_weights(
22
  hf_hub_download("aifeifei798/feifei-flux-lora-v1", "feifei.safetensors"),
23
  adapter_name="feifei",
 
14
  taef1 = AutoencoderTiny.from_pretrained("aifeifei798/taef1", torch_dtype=dtype).to(
15
  device
16
  )
17
+
18
+ # pipe = DiffusionPipeline.from_pretrained(
19
+ # "aifeifei798/DarkIdol-flux-v1", torch_dtype=dtype, vae=taef1
20
+ # ).to(device)
21
 
22
+ pipe = DiffusionPipeline.from_pretrained(
23
+ "shuttleai/shuttle-3.1-aesthetic", torch_dtype=dtype, vae=taef1
24
+ ).to(device)
25
+
26
  pipe.load_lora_weights(
27
  hf_hub_download("aifeifei798/feifei-flux-lora-v1", "feifei.safetensors"),
28
  adapter_name="feifei",