rahul7star commited on
Commit
33b9c55
·
verified ·
1 Parent(s): dcec9a6

Update app-quick.py

Browse files
Files changed (1) hide show
  1. app-quick.py +10 -2
app-quick.py CHANGED
@@ -40,10 +40,18 @@ pipe = QwenImageEditPlusPipeline.from_pretrained(
40
  torch_dtype=dtype
41
  ).to(device)
42
 
 
 
 
 
 
43
  pipe.load_lora_weights(
44
- "rahul7star/qwen-char-lora",
45
- weight_name="qwen_lora/Qwen-Image-Edit-2509-Lightning-4steps-V1.0-bf16_dim1.safetensors"
46
  )
 
 
 
47
  pipe.fuse_lora(lora_scale=1.0)
48
 
49
 
 
40
  torch_dtype=dtype
41
  ).to(device)
42
 
43
+ # pipe.load_lora_weights(
44
+ # "rahul7star/qwen-char-lora",
45
+ # weight_name="qwen_lora/Qwen-Image-Edit-2509-Lightning-4steps-V1.0-bf16_dim1.safetensors"
46
+ # )
47
+
48
  pipe.load_lora_weights(
49
+ "yty9/GGUF-V5-NSFW-Qwen-Image-Edit-Rapid-AIO",
50
+ weight_name="Qwen-Rapid-AIO-NSFW-v5.safetensors"
51
  )
52
+
53
+
54
+
55
  pipe.fuse_lora(lora_scale=1.0)
56
 
57