ooops'
Browse files- README.md +1 -1
- app.py +1 -1
- pyproject.toml +14 -0
- requirements.txt +12 -12
README.md
CHANGED
@@ -5,7 +5,7 @@ colorFrom: green
|
|
5 |
colorTo: blue
|
6 |
sdk: gradio
|
7 |
sdk_version: 3.4
|
8 |
-
python_version: 3.
|
9 |
app_file: app.py
|
10 |
pinned: false
|
11 |
---
|
|
|
5 |
colorTo: blue
|
6 |
sdk: gradio
|
7 |
sdk_version: 3.4
|
8 |
+
python_version: 3.9
|
9 |
app_file: app.py
|
10 |
pinned: false
|
11 |
---
|
app.py
CHANGED
@@ -118,4 +118,4 @@ iface = gr.Interface(
|
|
118 |
)
|
119 |
|
120 |
|
121 |
-
iface.launch()
|
|
|
118 |
)
|
119 |
|
120 |
|
121 |
+
iface.launch(share=True)
|
pyproject.toml
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[tool.poetry]
|
2 |
+
name = "stablepod"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = ""
|
5 |
+
authors = ["Your Name <[email protected]>"]
|
6 |
+
readme = "README.md"
|
7 |
+
|
8 |
+
[tool.poetry.dependencies]
|
9 |
+
python = "3.10.8"
|
10 |
+
|
11 |
+
|
12 |
+
[build-system]
|
13 |
+
requires = ["poetry-core"]
|
14 |
+
build-backend = "poetry.core.masonry.api"
|
requirements.txt
CHANGED
@@ -6,17 +6,17 @@ ftfy
|
|
6 |
moviepy
|
7 |
gradio
|
8 |
spodcast
|
9 |
-
tensorflow
|
10 |
-
tensorflow-datasets
|
11 |
-
tensorflow-addons
|
12 |
-
absl-py
|
13 |
-
gin-config
|
14 |
-
parameterized
|
15 |
-
|
16 |
-
|
|
|
17 |
google-cloud-bigquery-storage==1.1.0 # Suppresses a harmless error from beam
|
18 |
-
natsort
|
19 |
image-tools
|
20 |
-
opencv-python
|
21 |
-
moviepy
|
22 |
-
mediapy
|
|
|
6 |
moviepy
|
7 |
gradio
|
8 |
spodcast
|
9 |
+
tensorflow==2.6.2 # The latest should include tensorflow-gpu
|
10 |
+
tensorflow-datasets==4.4.0
|
11 |
+
tensorflow-addons==0.15.0
|
12 |
+
absl-py==0.12.0
|
13 |
+
gin-config==0.5.0
|
14 |
+
parameterized==0.8.1
|
15 |
+
mediapy==1.0.3
|
16 |
+
scikit-image==0.19.1
|
17 |
+
apache-beam==2.34.0
|
18 |
google-cloud-bigquery-storage==1.1.0 # Suppresses a harmless error from beam
|
19 |
+
natsort==8.1.0
|
20 |
image-tools
|
21 |
+
opencv-python==4.6.0.66
|
22 |
+
moviepy==1.0.3
|
|