not-lain commited on
Commit
97a281b
·
verified ·
1 Parent(s): a95d2c6

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def search(img):
4
+ return img
5
+
6
+ demo = gr.Interface(search, inputs="image",outputs=["image"])