Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -34,8 +34,6 @@ if torch.cuda.is_available():
|
|
34 |
|
35 |
if ENABLE_CPU_OFFLOAD:
|
36 |
pipe.enable_model_cpu_offload()
|
37 |
-
if ENABLE_REFINER:
|
38 |
-
refiner.enable_model_cpu_offload()
|
39 |
else:
|
40 |
pipe.to(device)
|
41 |
|
@@ -186,7 +184,6 @@ with gr.Blocks(css="style.css") as demo:
|
|
186 |
width,
|
187 |
height,
|
188 |
guidance_scale_base,
|
189 |
-
guidance_scale_refiner,
|
190 |
num_inference_steps_base,
|
191 |
],
|
192 |
outputs=result,
|
|
|
34 |
|
35 |
if ENABLE_CPU_OFFLOAD:
|
36 |
pipe.enable_model_cpu_offload()
|
|
|
|
|
37 |
else:
|
38 |
pipe.to(device)
|
39 |
|
|
|
184 |
width,
|
185 |
height,
|
186 |
guidance_scale_base,
|
|
|
187 |
num_inference_steps_base,
|
188 |
],
|
189 |
outputs=result,
|