Manish Chhetri commited on
Commit
5812c3e
1 Parent(s): 600d4fb
Files changed (2) hide show
  1. app.py +7 -0
  2. requirement.txt +11 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
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()
requirement.txt ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ opencv-python
2
+ keras==2.15.0
3
+ numpy>=1.23.5
4
+ keras-applications==1.0.8
5
+ tqdm
6
+ flask-cors
7
+ Werkzeug==2.0.2
8
+ tensorflow
9
+ keras_preprocessing==1.1.2
10
+ nltk==3.6.5
11
+ gradio