Update requirements.txt
Browse files- requirements.txt +35 -12
requirements.txt
CHANGED
@@ -1,29 +1,31 @@
|
|
1 |
# Bibliothèque TTS
|
2 |
git+https://github.com/cocktailpeanut/TTS#egg=TTS
|
3 |
|
4 |
-
# PyTorch (
|
5 |
-
torch>=2.1
|
6 |
-
torchaudio>=2.1
|
7 |
|
8 |
# Librairies scientifiques
|
9 |
-
numpy
|
|
|
10 |
scipy>=1.11.2
|
11 |
librosa>=0.10.0
|
12 |
soundfile>=0.12.0
|
13 |
scikit-learn>=1.3.0
|
14 |
|
15 |
-
# Accélération des calculs
|
|
|
16 |
numba>=0.57.0;python_version>="3.9"
|
17 |
-
einops>=0.6.0
|
18 |
|
19 |
-
# Gestion des langues et NLP
|
20 |
unidecode>=1.3.2
|
21 |
-
num2words
|
22 |
transformers>=4.33.0
|
23 |
-
nltk
|
|
|
24 |
|
25 |
# Gradio pour l'interface utilisateur
|
26 |
-
gradio
|
27 |
|
28 |
# Configuration et gestion des fichiers
|
29 |
fsspec>=2023.6.0
|
@@ -31,6 +33,27 @@ pyyaml>=6.0
|
|
31 |
packaging>=23.1
|
32 |
aiohttp>=3.8.1
|
33 |
|
34 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
tqdm>=4.64.1
|
36 |
-
flask>=2.0.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Bibliothèque TTS
|
2 |
git+https://github.com/cocktailpeanut/TTS#egg=TTS
|
3 |
|
4 |
+
# PyTorch (compatible CPU et GPU)
|
5 |
+
torch>=2.1
|
6 |
+
torchaudio>=2.1
|
7 |
|
8 |
# Librairies scientifiques
|
9 |
+
numpy==1.22.0;python_version<="3.10"
|
10 |
+
numpy>=1.24.3;python_version>"3.10"
|
11 |
scipy>=1.11.2
|
12 |
librosa>=0.10.0
|
13 |
soundfile>=0.12.0
|
14 |
scikit-learn>=1.3.0
|
15 |
|
16 |
+
# Accélération des calculs
|
17 |
+
numba==0.55.1;python_version<"3.9"
|
18 |
numba>=0.57.0;python_version>="3.9"
|
|
|
19 |
|
20 |
+
# Gestion des langues et NLP (français uniquement)
|
21 |
unidecode>=1.3.2
|
22 |
+
num2words>=0.5.12
|
23 |
transformers>=4.33.0
|
24 |
+
nltk>=3.8.1
|
25 |
+
gruut[fr]==2.2.3
|
26 |
|
27 |
# Gradio pour l'interface utilisateur
|
28 |
+
gradio==3.4
|
29 |
|
30 |
# Configuration et gestion des fichiers
|
31 |
fsspec>=2023.6.0
|
|
|
33 |
packaging>=23.1
|
34 |
aiohttp>=3.8.1
|
35 |
|
36 |
+
# Visualisation et notebooks
|
37 |
+
matplotlib>=3.7.0
|
38 |
+
pandas>=1.4,<2.0
|
39 |
+
umap-learn>=0.5.1
|
40 |
+
|
41 |
+
# Frameworks supplémentaires (Bark et Tortoise)
|
42 |
+
encodec>=0.1.1
|
43 |
+
einops>=0.6.0
|
44 |
+
|
45 |
+
# Coqui Stack
|
46 |
+
trainer>=0.0.36
|
47 |
+
coqpit>=0.0.16
|
48 |
+
|
49 |
+
# Autres dépendances
|
50 |
tqdm>=4.64.1
|
51 |
+
flask>=2.0.1
|
52 |
+
mutagen==1.47.0
|
53 |
+
inflect>=5.6.0
|
54 |
+
anyascii>=0.3.0
|
55 |
+
|
56 |
+
# Support pour le bangla
|
57 |
+
bangla
|
58 |
+
bnnumerizer
|
59 |
+
bnunicodenormalizer
|