Does this work on HF
Browse files- .python-version +1 -0
- Pipfile +0 -11
- app.py +1 -1
- requirements.txt +10 -11
.python-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
3.9.15
|
Pipfile
DELETED
|
@@ -1,11 +0,0 @@
|
|
| 1 |
-
[[source]]
|
| 2 |
-
url = "https://pypi.org/simple"
|
| 3 |
-
verify_ssl = true
|
| 4 |
-
name = "pypi"
|
| 5 |
-
|
| 6 |
-
[packages]
|
| 7 |
-
|
| 8 |
-
[dev-packages]
|
| 9 |
-
|
| 10 |
-
[requires]
|
| 11 |
-
python_version = "3.10"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app.py
CHANGED
|
@@ -118,4 +118,4 @@ iface = gr.Interface(
|
|
| 118 |
)
|
| 119 |
|
| 120 |
|
| 121 |
-
iface.launch(
|
|
|
|
| 118 |
)
|
| 119 |
|
| 120 |
|
| 121 |
+
iface.launch()
|
requirements.txt
CHANGED
|
@@ -1,11 +1,4 @@
|
|
| 1 |
-
|
| 2 |
-
transformers
|
| 3 |
-
nvidia-ml-py3
|
| 4 |
-
ftfy
|
| 5 |
-
--extra-index-url https://download.pytorch.org/whl/cu113 torch
|
| 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
|
|
@@ -17,6 +10,12 @@ 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 |
-
|
| 21 |
-
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# frame_interpolation dependencies
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
tensorflow==2.6.2 # The latest should include tensorflow-gpu
|
| 3 |
tensorflow-datasets==4.4.0
|
| 4 |
tensorflow-addons==0.15.0
|
|
|
|
| 10 |
apache-beam==2.34.0
|
| 11 |
google-cloud-bigquery-storage==1.1.0 # Suppresses a harmless error from beam
|
| 12 |
natsort==8.1.0
|
| 13 |
+
|
| 14 |
+
# Our dependencies
|
| 15 |
+
fastapi==0.74.1 # This is because of reasons
|
| 16 |
+
gradio
|
| 17 |
+
spodcast
|
| 18 |
+
moviepy
|
| 19 |
+
huggingface-hub
|
| 20 |
+
opencv-python
|
| 21 |
+
image_tools
|