Spaces:
Running
Running
Sapphire-356
commited on
Commit
·
c28feac
1
Parent(s):
9a5a055
add: app.py requierments.txt
Browse files- app.py +7 -0
- requirements.txt +34 -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()
|
requirements.txt
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Cython==3.0.1
|
2 |
+
h5py==3.9.0
|
3 |
+
Image==1.5.33
|
4 |
+
imageio==2.31.1
|
5 |
+
ipdb==0.13.13
|
6 |
+
ipython==8.14.0
|
7 |
+
matplotlib==3.7.1
|
8 |
+
moviepy==1.0.3
|
9 |
+
msgpack_numpy==0.4.8
|
10 |
+
msgpack_python==0.5.6
|
11 |
+
munkres==1.1.4
|
12 |
+
mxnet==1.9.1
|
13 |
+
numpy==1.24.3
|
14 |
+
opencv_python==4.8.0.74
|
15 |
+
pandas==1.5.3
|
16 |
+
Pillow==9.5.0
|
17 |
+
Pillow==9.4.0
|
18 |
+
Pillow==10.0.0
|
19 |
+
pip==23.1.2
|
20 |
+
pyarrow==13.0.0
|
21 |
+
pycocotools==2.0.6
|
22 |
+
pyqtgraph==0.13.3
|
23 |
+
PyYAML==6.0
|
24 |
+
PyYAML==6.0.1
|
25 |
+
pyzmq==25.1.1
|
26 |
+
scipy==1.10.1
|
27 |
+
setproctitle==1.3.2
|
28 |
+
setuptools==67.8.0
|
29 |
+
tensorboardX==2.6
|
30 |
+
tensorboardX==2.6.2.2
|
31 |
+
tensorflow==2.13.0
|
32 |
+
torch==1.13.0+cu117
|
33 |
+
torchvision==0.14.0+cu117
|
34 |
+
tqdm==4.65.0
|