Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -9,8 +9,8 @@ pipeline.enable_model_cpu_offload() #save some VRAM by offloading the model to C
|
|
9 |
|
10 |
|
11 |
# Set the model to the appropriate device
|
12 |
-
|
13 |
-
|
14 |
|
15 |
def generate_image(prompt, guidance_scale=7.5, num_inference_steps=50):
|
16 |
# Generate an image based on the prompt
|
|
|
9 |
|
10 |
|
11 |
# Set the model to the appropriate device
|
12 |
+
device = "cuda" if torch.cuda.is_available() else "cpu"
|
13 |
+
pipeline.to(device)
|
14 |
|
15 |
def generate_image(prompt, guidance_scale=7.5, num_inference_steps=50):
|
16 |
# Generate an image based on the prompt
|