Update README.md
Browse files
README.md
CHANGED
|
@@ -15,7 +15,7 @@ You can use this with the 🧨Diffusers library from [Hugging Face](https://hugg
|
|
| 15 |
from diffusers import StableDiffusionXLPipeline
|
| 16 |
import torch
|
| 17 |
|
| 18 |
-
pipeline =
|
| 19 |
|
| 20 |
image = pipeline(prompt="a girl standing in the rain").images[0]
|
| 21 |
image.save("not.png")
|
|
|
|
| 15 |
from diffusers import StableDiffusionXLPipeline
|
| 16 |
import torch
|
| 17 |
|
| 18 |
+
pipeline = StableDiffusionXLPipeline.from_pretrained("nroggendorff/juggernautxl").to("cuda")
|
| 19 |
|
| 20 |
image = pipeline(prompt="a girl standing in the rain").images[0]
|
| 21 |
image.save("not.png")
|