delrickOliveira commited on
Commit
7ef87d6
1 Parent(s): d8643d3

Add initial project files

Browse files

Signed-off-by: Delrick Nunes de Oliveira <delricknunes@gmail.com>

Files changed (3) hide show
  1. .gitignore +1 -0
  2. app.py +8 -0
  3. requirements.txt +3 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ .idea/*
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name):
4
+ return "Hello " + name + "!!"
5
+
6
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
+ iface.launch()
8
+ #%%
requirements.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ gradio
2
+ tensorflow
3
+ transformers