AnhP commited on
Commit
a1e27cf
·
verified ·
1 Parent(s): 30e8419

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +64 -57
requirements.txt CHANGED
@@ -1,57 +1,64 @@
1
- # Platform-specific requirements section
2
- pip>=23.3
3
- wheel
4
- omegaconf>=2.0.6
5
- onnxruntime; sys_platform == 'darwin'
6
- onnxruntime-gpu; sys_platform != 'darwin'
7
-
8
- # Core dependencies
9
- PyYAML>=6.0
10
- tiktoken
11
- hyperpyyaml
12
- torch>=2.3.1
13
- tqdm>=4.63.1
14
- sortedcontainers
15
- torchvision>=0.18.1
16
- torchaudio>=2.3.1
17
- faiss-cpu>=1.7.3
18
-
19
- # Machine learning, NLP and deep learning
20
- transformers>=4.49.0
21
- scikit-learn
22
- einops>=0.8.0
23
-
24
- # Pitch and sound processing
25
- librosa>=0.10.2
26
- pydub>=0.25.1
27
- praat-parselmouth
28
- soundfile>=0.13.0
29
- pedalboard
30
-
31
- # Data processing and calculation
32
- numpy>=1.25.2,<2.0.0
33
- numba>=0.57.0
34
- scipy>=1.15.0
35
- matplotlib>=3.7.2
36
-
37
- # Implementation and web framework
38
- gradio>=5.23.3
39
- requests>=2.32.3
40
- aiohttp
41
- pysrt
42
-
43
- # Utility section
44
- yt-dlp
45
- edge-tts
46
- ffmpy==0.3.1
47
- ffmpeg-python>=0.2.0
48
- beautifulsoup4
49
-
50
- # Tensorboard and ONNX
51
- tensorboard
52
- onnx>=1.14
53
- onnxsim>=0.4.36
54
- onnx2torch>=1.5.15
55
-
56
- # Cryptography section
57
- pycryptodome>=3.9.6,<4.0.0
 
 
 
 
 
 
 
 
1
+ # Platform-specific requirements section
2
+ pip>=23.3
3
+ wheel
4
+ omegaconf>=2.0.6
5
+
6
+ onnxruntime; sys_platform == 'darwin'
7
+ onnxruntime-gpu; sys_platform != 'darwin'
8
+
9
+ # Core dependencies
10
+ PyYAML>=6.0
11
+ tiktoken
12
+ hyperpyyaml
13
+ torch>=2.3.1
14
+ tqdm>=4.63.1
15
+ sortedcontainers
16
+ torchvision>=0.18.1
17
+ torchaudio>=2.3.1
18
+
19
+ faiss-cpu==1.7.3; python_version < "3.12"
20
+ faiss-cpu>=1.7.3; python_version >= "3.12"
21
+
22
+ # Machine learning, NLP and deep learning
23
+ transformers>=4.49.0
24
+ scikit-learn
25
+ einops>=0.8.0
26
+
27
+ # Pitch and sound processing
28
+ librosa>=0.10.2
29
+ pydub>=0.25.1
30
+ praat-parselmouth
31
+ soundfile>=0.13.0
32
+ pedalboard
33
+
34
+ # Data processing and calculation
35
+ numpy>=1.25.2,<2.0.0
36
+ numba>=0.57.0
37
+ scipy>=1.15.0
38
+ matplotlib>=3.7.2
39
+
40
+ # Implementation and web framework
41
+ gradio>=5.23.3,<6.0.0
42
+ requests>=2.32.3
43
+ aiohttp
44
+ pysrt
45
+
46
+ # Utility section
47
+ yt-dlp
48
+ edge-tts>=7.2.0
49
+ ffmpy==0.3.1
50
+ ffmpeg-python>=0.2.0
51
+ beautifulsoup4
52
+
53
+ # Tensorboard and ONNX
54
+ tensorboard
55
+ onnx>=1.14
56
+ onnxslim
57
+ onnx2torch>=1.5.15
58
+
59
+ # Cryptography section
60
+ pycryptodome>=3.9.6,<4.0.0
61
+
62
+ # Realtime and VAD
63
+ sounddevice>=0.5.2
64
+ webrtcvad-wheels>=2.0.14