Create requirements.txt
Browse files- requirements.txt +42 -0
requirements.txt
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# core deps
|
2 |
+
numpy==1.21.6
|
3 |
+
cython==0.29.28
|
4 |
+
scipy>=1.4.0
|
5 |
+
torch>=1.7
|
6 |
+
torchaudio
|
7 |
+
soundfile
|
8 |
+
librosa==0.8.0
|
9 |
+
numba==0.55.1
|
10 |
+
inflect
|
11 |
+
tqdm
|
12 |
+
anyascii
|
13 |
+
pyyaml
|
14 |
+
fsspec>=2021.04.0
|
15 |
+
# deps for examples
|
16 |
+
flask
|
17 |
+
# deps for inference
|
18 |
+
pysbd
|
19 |
+
# deps for notebooks
|
20 |
+
umap-learn==0.5.1
|
21 |
+
pandas
|
22 |
+
# deps for training
|
23 |
+
matplotlib
|
24 |
+
pyworld==0.2.10 # > 0.2.10 is not p3.10.x compatible
|
25 |
+
# coqui stack
|
26 |
+
trainer
|
27 |
+
# config management
|
28 |
+
coqpit>=0.0.16
|
29 |
+
# chinese g2p deps
|
30 |
+
jieba
|
31 |
+
pypinyin
|
32 |
+
# japanese g2p deps
|
33 |
+
mecab-python3==1.0.5
|
34 |
+
unidic-lite==1.0.8
|
35 |
+
# gruut+supported langs
|
36 |
+
gruut[cs,de,es,fr,it,nl,pt,ru,sv]==2.2.3
|
37 |
+
bokeh==1.4.0
|
38 |
+
black
|
39 |
+
coverage
|
40 |
+
isort
|
41 |
+
nose2
|
42 |
+
pylint==2.10.2
|