Spaces:
Runtime error
Runtime error
Commit
·
b86f457
1
Parent(s):
84fd981
Update app.py
Browse files
app.py
CHANGED
|
@@ -83,7 +83,7 @@ def run_lora(prompt, negative, weight, selected_state):
|
|
| 83 |
pipe.unet,
|
| 84 |
for_inference=True,
|
| 85 |
)
|
| 86 |
-
|
| 87 |
lora_model.apply_to(pipe.text_encoder, pipe.unet) #is apply too all you need?
|
| 88 |
last_merged = True
|
| 89 |
|
|
|
|
| 83 |
pipe.unet,
|
| 84 |
for_inference=True,
|
| 85 |
)
|
| 86 |
+
lora_model = lora_model.to("cuda")
|
| 87 |
lora_model.apply_to(pipe.text_encoder, pipe.unet) #is apply too all you need?
|
| 88 |
last_merged = True
|
| 89 |
|