Spaces:
Running
on
T4
Running
on
T4
gorkemgoknar
commited on
Commit
•
0c81c46
1
Parent(s):
8f57164
preinstall requirements
Browse files- requirements.txt +54 -2
requirements.txt
CHANGED
@@ -1,5 +1,57 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
2 |
cython==0.29.30
|
|
|
|
|
|
|
3 |
scikit-learn==1.3.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
TTS==0.17.4
|
5 |
-
langid
|
|
|
1 |
+
# Preinstall requirements from TTS
|
2 |
+
torch==2.0.1 --index-url https://download.pytorch.org/whl/cu118
|
3 |
+
torchvision==0.15.2 --index-url https://download.pytorch.org/whl/cu118
|
4 |
+
torchaudio==2.0.2 --index-url https://download.pytorch.org/whl/cu118
|
5 |
+
numpy==1.22.0;python_version<="3.10"
|
6 |
+
numpy==1.24.3;python_version>"3.10"
|
7 |
cython==0.29.30
|
8 |
+
scipy>=1.11.2
|
9 |
+
soundfile==0.12.*
|
10 |
+
librosa==0.10.*
|
11 |
scikit-learn==1.3.0
|
12 |
+
numba==0.55.1;python_version<"3.9"
|
13 |
+
numba==0.57.0;python_version>="3.9"
|
14 |
+
inflect==5.6.*
|
15 |
+
tqdm==4.64.*
|
16 |
+
anyascii==0.3.*
|
17 |
+
pyyaml==6.*
|
18 |
+
fsspec==2023.6.0 # <= 2023.9.1 makes aux tests fail
|
19 |
+
aiohttp==3.8.*
|
20 |
+
packaging==23.1
|
21 |
+
# deps for examples
|
22 |
+
flask==2.*
|
23 |
+
# deps for inference
|
24 |
+
pysbd==0.3.4
|
25 |
+
# deps for notebooks
|
26 |
+
umap-learn==0.5.*
|
27 |
+
pandas>=1.4,<2.0
|
28 |
+
# deps for training
|
29 |
+
matplotlib==3.7.*
|
30 |
+
# coqui stack
|
31 |
+
trainer
|
32 |
+
# config management
|
33 |
+
coqpit>=0.0.16
|
34 |
+
# chinese g2p deps
|
35 |
+
jieba
|
36 |
+
pypinyin==0.47.1
|
37 |
+
# gruut+supported langs
|
38 |
+
gruut[de,es,fr]==2.2.3
|
39 |
+
# deps for korean
|
40 |
+
jamo
|
41 |
+
nltk
|
42 |
+
g2pkk>=0.1.1
|
43 |
+
# deps for bangla
|
44 |
+
bangla
|
45 |
+
bnnumerizer
|
46 |
+
bnunicodenormalizer
|
47 |
+
#deps for tortoise
|
48 |
+
k_diffusion
|
49 |
+
einops==0.6.*
|
50 |
+
transformers==4.33.*
|
51 |
+
#deps for bark
|
52 |
+
encodec==0.1.*
|
53 |
+
# deps for XTTS
|
54 |
+
unidecode==1.3.*
|
55 |
+
langid
|
56 |
+
# Install tts
|
57 |
TTS==0.17.4
|
|