Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
from diffusers import StableDiffusionPipeline
|
2 |
import torch
|
3 |
|
4 |
-
model_id = "
|
5 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
6 |
pipe = pipe.to("cuda")
|
7 |
|
|
|
1 |
from diffusers import StableDiffusionPipeline
|
2 |
import torch
|
3 |
|
4 |
+
model_id = "runwayml/stable-diffusion-v1-5"
|
5 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
6 |
pipe = pipe.to("cuda")
|
7 |
|