gagan001 commited on
Commit
d6e926a
·
1 Parent(s): ea5b125

Initial commit

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import sys
3
+ sys.path.append("../Transformers")
4
+
5
+
6
+
7
+ def greet(name):
8
+ return "Hello " + name + "!!"
9
+
10
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
11
+ iface.launch()