lvyb commited on
Commit
5cb6eb4
β€’
1 Parent(s): b3a8146
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ description = "ζ–‡ε­—η”Ÿζˆε›Ύη‰‡"
5
+ examples = [["落ζ—₯图片", "小猫", "cat", "car"]]
6
+
7
+ demo = gr.Interface.load("models/runwayml/stable-diffusion-v1-5", description=description, examples=examples)
8
+ demo.launch()