Spaces:
Sleeping
Sleeping
Commit
·
98bb424
1
Parent(s):
859c25a
testing with 2 loras
Browse files
app.py
CHANGED
@@ -49,7 +49,7 @@ def run_lora(prompt, negative_prompt, cfg_scale, steps, selected_index, schedule
|
|
49 |
|
50 |
# Load LoRA weights
|
51 |
pipe.load_lora_weights("Abdullah-Habib/logolora",scale = 1)
|
52 |
-
pipe.load_lora_weights("Abdullah-Habib/icon-lora",scale = 0.5)
|
53 |
|
54 |
# Set scheduler
|
55 |
scheduler_config = pipe.scheduler.config
|
@@ -105,8 +105,24 @@ def run_lora(prompt, negative_prompt, cfg_scale, steps, selected_index, schedule
|
|
105 |
|
106 |
# Unload LoRA weights
|
107 |
pipe.unload_lora_weights()
|
|
|
108 |
|
109 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
|
111 |
with gr.Blocks(theme=gr.themes.Soft()) as app:
|
112 |
|
|
|
49 |
|
50 |
# Load LoRA weights
|
51 |
pipe.load_lora_weights("Abdullah-Habib/logolora",scale = 1)
|
52 |
+
# pipe.load_lora_weights("Abdullah-Habib/icon-lora",scale = 0.5)
|
53 |
|
54 |
# Set scheduler
|
55 |
scheduler_config = pipe.scheduler.config
|
|
|
105 |
|
106 |
# Unload LoRA weights
|
107 |
pipe.unload_lora_weights()
|
108 |
+
pipe.load_lora_weights("Abdullah-Habib/icon-lora", scale=1)
|
109 |
|
110 |
+
# Pass the generated logo through the icon LoRA
|
111 |
+
rounded_square_image = pipe(
|
112 |
+
prompt="rounded square icon",
|
113 |
+
image=logo_image, # Pass the generated logo image
|
114 |
+
num_inference_steps=steps,
|
115 |
+
guidance_scale=cfg_scale,
|
116 |
+
width=width,
|
117 |
+
height=height,
|
118 |
+
generator=generator,
|
119 |
+
).images[0]
|
120 |
+
|
121 |
+
# Unload the icon LoRA
|
122 |
+
pipe.unload_lora_weights()
|
123 |
+
|
124 |
+
return rounded_square_image
|
125 |
+
# return image
|
126 |
|
127 |
with gr.Blocks(theme=gr.themes.Soft()) as app:
|
128 |
|