Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ pipe.load_lora_weights(lora_repo, adapter_name='kaytoo')
|
|
21 |
lora_repo_2 = "aleksa-codes/flux-ghibsky-illustration"
|
22 |
pipe.load_lora_weights(lora_repo_2, adapter_name='lora_2')
|
23 |
|
24 |
-
pipe.set_adapters(["kaytoo", "lora_2"], adapter_weights=[0.85, 0])
|
25 |
|
26 |
pipe.to("cuda")
|
27 |
|
@@ -70,7 +70,7 @@ example_width = 1152
|
|
70 |
example_height = 896
|
71 |
example_seed = 3981632454
|
72 |
example_lora_scale = 0.85
|
73 |
-
example_lora_scale_2 = 0
|
74 |
|
75 |
def load_example():
|
76 |
# Load example image from file
|
|
|
21 |
lora_repo_2 = "aleksa-codes/flux-ghibsky-illustration"
|
22 |
pipe.load_lora_weights(lora_repo_2, adapter_name='lora_2')
|
23 |
|
24 |
+
pipe.set_adapters(["kaytoo", "lora_2"], adapter_weights=[0.85, 0.0])
|
25 |
|
26 |
pipe.to("cuda")
|
27 |
|
|
|
70 |
example_height = 896
|
71 |
example_seed = 3981632454
|
72 |
example_lora_scale = 0.85
|
73 |
+
example_lora_scale_2 = 0.0
|
74 |
|
75 |
def load_example():
|
76 |
# Load example image from file
|