Spaces:
Runtime error
Runtime error
Upload requirements.txt
Browse files- requirements.txt +20 -0
requirements.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
streamlit
|
| 2 |
+
|
| 3 |
+
# Install CPU version of pytorch
|
| 4 |
+
--extra-index-url https://download.pytorch.org/whl/cpu
|
| 5 |
+
torch
|
| 6 |
+
|
| 7 |
+
soundfile
|
| 8 |
+
espnet
|
| 9 |
+
espnet_model_zoo
|
| 10 |
+
|
| 11 |
+
# pyopenjtalk version must be 0.2
|
| 12 |
+
pyopenjtalk-prebuilt==0.2.0
|
| 13 |
+
|
| 14 |
+
# typeguard version must be 2.13.3(latest version python 3.8 is supported)
|
| 15 |
+
typeguard==2.13.3
|
| 16 |
+
|
| 17 |
+
# Use version < 3.7.0 as a workaround, otherwise pyinstallr fails to install some dlls
|
| 18 |
+
# https://github.com/pyinstaller/pyinstaller/pull/7505
|
| 19 |
+
# To visualize audio data
|
| 20 |
+
matplotlib<3.7.0
|