AnhP commited on
Commit
c29714a
·
verified ·
1 Parent(s): e0202f8

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +51 -52
requirements.txt CHANGED
@@ -1,53 +1,52 @@
1
- # Platform-specific requirements section
2
- pip==23.3
3
- wheel
4
- ort-nightly-gpu --index-url=https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/ort-cuda-12-nightly/pypi/simple/
5
- onnxruntime==1.20.0; sys_platform == 'darwin'
6
- onnxruntime-gpu==1.20.0; sys_platform != 'darwin'
7
-
8
- # Core dependencies
9
- PyYAML
10
- torch==2.3.1
11
- tqdm
12
- torchvision==0.18.1
13
- torchaudio==2.3.1
14
- faiss-cpu>=1.7.3
15
-
16
- # Machine learning, NLP and deep learning
17
- fairseq @ git+https://github.com/One-sixth/fairseq.git
18
- scikit-learn
19
- einops
20
-
21
- # Pitch and sound processing
22
- librosa>=0.10.2
23
- pydub
24
- praat-parselmouth
25
- soundfile
26
- pedalboard
27
-
28
- # Data processing and calculation
29
- numpy==1.25.2
30
- numba
31
- scipy
32
- pandas
33
- matplotlib==3.7.2
34
-
35
- # Implementation and web framework
36
- gradio>=5.12.0
37
- requests
38
- aiohttp
39
-
40
- # Utility section
41
- yt-dlp
42
- ffmpy==0.3.1
43
- ffmpeg-python>=0.2.0
44
- beautifulsoup4
45
-
46
- # Tensorboard and ONNX
47
- tensorboard
48
- tensorboardX
49
- onnx>=1.14
50
- onnx2torch>=1.5
51
-
52
- # Cryptography section
53
  pycryptodome==3.9.6
 
1
+ # Platform-specific requirements section
2
+ pip>=23.3,<24.1
3
+ onnxruntime; sys_platform == 'darwin'
4
+ onnxruntime-gpu; sys_platform != 'darwin'
5
+
6
+ # Core dependencies
7
+ PyYAML
8
+ torch==2.3.1
9
+ tqdm
10
+ torchvision==0.18.1
11
+ torchaudio==2.3.1
12
+ faiss-cpu>=1.7.3
13
+
14
+ # Machine learning, NLP and deep learning
15
+ fairseq; python_version == '3.10'
16
+ fairseq @ git+https://github.com/One-sixth/fairseq.git; python_version > '3.10'
17
+ scikit-learn
18
+ einops
19
+
20
+ # Pitch and sound processing
21
+ librosa>=0.10.2
22
+ pydub
23
+ praat-parselmouth
24
+ soundfile
25
+ pedalboard
26
+
27
+ # Data processing and calculation
28
+ numpy==1.25.2
29
+ numba
30
+ scipy
31
+ pandas
32
+ matplotlib==3.7.2
33
+
34
+ # Implementation and web framework
35
+ gradio>=5.12.0
36
+ requests
37
+ aiohttp
38
+
39
+ # Utility section
40
+ yt-dlp
41
+ ffmpy==0.3.1
42
+ ffmpeg-python>=0.2.0
43
+ beautifulsoup4
44
+
45
+ # Tensorboard and ONNX
46
+ tensorboard
47
+ tensorboardX
48
+ onnx>=1.14
49
+ onnx2torch>=1.5
50
+
51
+ # Cryptography section
 
52
  pycryptodome==3.9.6