ylacombe HF staff commited on
Commit
5b0a35e
1 Parent(s): a80fddf

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +59 -4
requirements.txt CHANGED
@@ -1,5 +1,60 @@
1
- torch
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  nltk
3
- transformers
4
- gradio_client
5
- TTS
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ git+https://github.com/coqui-ai/tts.git@43a7ca800b6508d95e084728a948846556f71a40
58
+ deepspeed==0.8.3
59
+ pydub
60
+ gradio_client