Olivier-Truong
commited on
Commit
•
a8714cc
1
Parent(s):
8c3c072
Create requirements-dev.txt
Browse files- requirements-dev.txt +57 -0
requirements-dev.txt
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# core deps
|
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
|
7 |
+
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 # <= 2023.9.1 makes aux tests fail
|
18 |
+
aiohttp>=3.8.1
|
19 |
+
packaging>=23.1
|
20 |
+
mutagen==1.47.0
|
21 |
+
# deps for examples
|
22 |
+
flask>=2.0.1
|
23 |
+
# deps for inference
|
24 |
+
pysbd>=0.3.4
|
25 |
+
# deps for notebooks
|
26 |
+
umap-learn>=0.5.1
|
27 |
+
pandas>=1.4,<2.0
|
28 |
+
# deps for training
|
29 |
+
matplotlib>=3.7.0
|
30 |
+
# coqui stack
|
31 |
+
trainer>=0.0.36
|
32 |
+
# config management
|
33 |
+
coqpit>=0.0.16
|
34 |
+
# chinese g2p deps
|
35 |
+
jieba
|
36 |
+
pypinyin
|
37 |
+
# korean
|
38 |
+
hangul_romanize
|
39 |
+
# gruut+supported langs
|
40 |
+
gruut[de,es,fr]==2.2.3
|
41 |
+
# deps for korean
|
42 |
+
jamo
|
43 |
+
nltk
|
44 |
+
g2pkk>=0.1.1
|
45 |
+
# deps for bangla
|
46 |
+
bangla
|
47 |
+
bnnumerizer
|
48 |
+
bnunicodenormalizer
|
49 |
+
#deps for tortoise
|
50 |
+
einops>=0.6.0
|
51 |
+
transformers>=4.33.0
|
52 |
+
#deps for bark
|
53 |
+
encodec>=0.1.1
|
54 |
+
# deps for XTTS
|
55 |
+
unidecode>=1.3.2
|
56 |
+
num2words
|
57 |
+
spacy[ja]>=3
|