Spaces:
Runtime error
Runtime error
Commit
·
517045d
1
Parent(s):
2c61a1f
Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ import gradio as gr
|
|
4 |
def run(prompt):
|
5 |
model_id = "runwayml/stable-diffusion-v1-5"
|
6 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
7 |
-
pipe = pipe.to("cuda")
|
8 |
image = pipe(prompt).images[0]
|
9 |
return image
|
10 |
|
|
|
4 |
def run(prompt):
|
5 |
model_id = "runwayml/stable-diffusion-v1-5"
|
6 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
7 |
+
# pipe = pipe.to("cuda")
|
8 |
image = pipe(prompt).images[0]
|
9 |
return image
|
10 |
|