Germansage commited on
Commit
364474a
1 Parent(s): 7a6bd91

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
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
+
8
+ prompt = "a photo of an astronaut riding a horse on mars"
9
+ image = pipe(prompt).images[0]
10
+
11
+ image.save("astronaut_rides_horse.png")