tommy24 commited on
Commit
5e6e594
·
1 Parent(s): f9edb9f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -2
app.py CHANGED
@@ -1,3 +1,12 @@
1
- import gradio as gr
2
 
3
- gr.Interface.load("models/prompthero/openjourney").launch()
 
 
 
 
 
 
 
 
 
 
1
+ # import gradio as gr
2
 
3
+ # gr.Interface.load("models/prompthero/openjourney").launch()
4
+
5
+ from diffusers import StableDiffusionPipeline
6
+ import torch
7
+ model_id = "prompthero/openjourney"
8
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
9
+ pipe = pipe.to("cuda")
10
+ prompt = "retro serie of different cars with different colors and shapes, mdjrny-v4 style"
11
+ image = pipe(prompt).images[0]
12
+ image.save("./retro_cars.png")