abdalrahmanshahrour commited on
Commit
1280251
·
1 Parent(s): 49a2966
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -1,3 +1,10 @@
1
  import gradio as gr
2
 
3
- gr.Interface.load("models/runwayml/stable-diffusion-v1-5").launch()
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
 
3
+ gr.Interface.load("models/runwayml/stable-diffusion-v1-5",
4
+ examples=[
5
+ "A mecha robot in a favela in expressionist style",
6
+ "A high tech solarpunk utopia in the Amazon rainforest",
7
+ "A pikachu fine dining with a view to the Eiffel Tower",
8
+ "A small cabin on top of a snowy mountain in the style of Disney, artstation"
9
+ ]
10
+ ).launch()