Spaces:
Runtime error
Runtime error
christinac
commited on
Commit
•
506ff08
1
Parent(s):
20943b6
Update app.py
Browse files
app.py
CHANGED
@@ -11,8 +11,8 @@ from diffusers import StableDiffusionImg2ImgPipeline
|
|
11 |
|
12 |
YOUR_TOKEN=MY_SECRET_TOKEN
|
13 |
device="cpu"
|
14 |
-
|
15 |
-
|
16 |
|
17 |
#draw an image based off of user's text input
|
18 |
|
|
|
11 |
|
12 |
YOUR_TOKEN=MY_SECRET_TOKEN
|
13 |
device="cpu"
|
14 |
+
pipe = StableDiffusionImg2ImgPipeline.from_pretrained("runwayml/stable-diffusion-v1-5", use_auth_token=YOUR_TOKEN)
|
15 |
+
pipe.to(device)
|
16 |
|
17 |
#draw an image based off of user's text input
|
18 |
|