Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +34 -31
requirements.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
#
|
2 |
-
numpy==1.22.0;python_version<="3.10"
|
3 |
-
numpy>=1.24.3;python_version>"3.10"
|
4 |
cython>=0.29.30
|
5 |
scipy>=1.11.2
|
6 |
torch>=2.1
|
@@ -8,60 +8,63 @@ torchaudio
|
|
8 |
soundfile>=0.12.0
|
9 |
librosa>=0.10.0
|
10 |
scikit-learn>=1.3.0
|
11 |
-
numba==0.55.1;python_version<"3.9"
|
12 |
-
numba>=0.57.0;python_version>="3.9"
|
13 |
inflect>=5.6.0
|
14 |
tqdm>=4.64.1
|
15 |
anyascii>=0.3.0
|
16 |
pyyaml>=6.0
|
17 |
-
fsspec>=2023.6.0
|
18 |
aiohttp>=3.8.1
|
19 |
packaging>=23.1
|
20 |
-
|
|
|
|
|
21 |
flask>=2.0.1
|
22 |
-
|
|
|
23 |
pysbd>=0.3.4
|
24 |
-
|
|
|
25 |
umap-learn>=0.5.1
|
26 |
-
pandas>=1.4
|
27 |
-
|
|
|
28 |
matplotlib>=3.7.0
|
29 |
-
|
30 |
-
|
31 |
-
# config management
|
32 |
coqpit>=0.0.16
|
33 |
-
|
|
|
34 |
jieba
|
35 |
pypinyin
|
36 |
-
|
|
|
37 |
hangul_romanize
|
38 |
-
# gruut+supported langs
|
39 |
-
gruut[de,es,fr]==2.2.3
|
40 |
-
# deps for korean
|
41 |
jamo
|
42 |
nltk
|
43 |
g2pkk>=0.1.1
|
44 |
-
|
|
|
45 |
bangla
|
46 |
bnnumerizer
|
47 |
bnunicodenormalizer
|
48 |
-
|
49 |
-
#
|
50 |
mecab-python3==1.0.6
|
51 |
unidic-lite==1.0.8
|
52 |
cutlet
|
53 |
-
|
54 |
-
|
55 |
-
isort
|
56 |
-
nose2
|
57 |
-
pylint==2.10.2
|
58 |
-
#deps for tortoise
|
59 |
einops>=0.6.0
|
60 |
transformers>=4.33.0
|
61 |
-
#deps for bark
|
62 |
encodec>=0.1.1
|
63 |
-
# deps for XTTS
|
64 |
unidecode>=1.3.2
|
65 |
num2words
|
66 |
spacy[ja]>=3
|
67 |
-
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies
|
2 |
+
numpy==1.22.0; python_version <= "3.10"
|
3 |
+
numpy>=1.24.3; python_version > "3.10"
|
4 |
cython>=0.29.30
|
5 |
scipy>=1.11.2
|
6 |
torch>=2.1
|
|
|
8 |
soundfile>=0.12.0
|
9 |
librosa>=0.10.0
|
10 |
scikit-learn>=1.3.0
|
11 |
+
numba==0.55.1; python_version < "3.9"
|
12 |
+
numba>=0.57.0; python_version >= "3.9"
|
13 |
inflect>=5.6.0
|
14 |
tqdm>=4.64.1
|
15 |
anyascii>=0.3.0
|
16 |
pyyaml>=6.0
|
17 |
+
fsspec>=2023.6.0
|
18 |
aiohttp>=3.8.1
|
19 |
packaging>=23.1
|
20 |
+
gradio==5.5.0
|
21 |
+
|
22 |
+
# Dependencies for examples
|
23 |
flask>=2.0.1
|
24 |
+
|
25 |
+
# Dependencies for inference
|
26 |
pysbd>=0.3.4
|
27 |
+
|
28 |
+
# Dependencies for notebooks
|
29 |
umap-learn>=0.5.1
|
30 |
+
pandas>=1.4, <2.0
|
31 |
+
|
32 |
+
# Dependencies for training
|
33 |
matplotlib>=3.7.0
|
34 |
+
|
35 |
+
# Config management
|
|
|
36 |
coqpit>=0.0.16
|
37 |
+
|
38 |
+
# Chinese G2P dependencies
|
39 |
jieba
|
40 |
pypinyin
|
41 |
+
|
42 |
+
# Korean processing
|
43 |
hangul_romanize
|
|
|
|
|
|
|
44 |
jamo
|
45 |
nltk
|
46 |
g2pkk>=0.1.1
|
47 |
+
|
48 |
+
# Bangla processing
|
49 |
bangla
|
50 |
bnnumerizer
|
51 |
bnunicodenormalizer
|
52 |
+
|
53 |
+
# Japanese G2P dependencies
|
54 |
mecab-python3==1.0.6
|
55 |
unidic-lite==1.0.8
|
56 |
cutlet
|
57 |
+
|
58 |
+
# Other dependencies
|
|
|
|
|
|
|
|
|
59 |
einops>=0.6.0
|
60 |
transformers>=4.33.0
|
|
|
61 |
encodec>=0.1.1
|
|
|
62 |
unidecode>=1.3.2
|
63 |
num2words
|
64 |
spacy[ja]>=3
|
65 |
+
|
66 |
+
# Gruut for supported languages
|
67 |
+
gruut[de,es,fr]==2.2.3
|
68 |
+
|
69 |
+
# Coqui TTS stack
|
70 |
+
trainer>=0.0.32
|