Bhuvan R Shetty commited on
Commit
ae14a0c
·
1 Parent(s): c97e296

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def imageclassifer(text):
4
+ return "hello"
5
+
6
+ interface=gr.Interface(fn=imageclassifer,inputs=str,outputs=str)
7
+ interface.launch()