Bredvige commited on
Commit
3bf6954
·
verified ·
1 Parent(s): f291118

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +27 -19
requirements.txt CHANGED
@@ -1,33 +1,41 @@
1
- aria2
2
- numba
3
  numpy
4
  scipy
 
 
 
5
  librosa
6
- fairseq
7
- faiss-cpu
8
- gradio==3.34.0
9
  pydub
10
  soundfile
11
- ffmpeg-python
12
- tensorboardX
13
- json5
14
- Markdown
15
  praat-parselmouth
16
- tensorboard
17
- tqdm
 
 
 
 
18
  onnxruntime; sys_platform == 'darwin'
19
  onnxruntime-gpu; sys_platform != 'darwin'
20
- torchcrepe==0.0.20
21
- fastapi
22
  torchfcpe
 
 
 
 
 
 
 
 
23
  ffmpy
24
- python-dotenv
25
  av
26
- pyworld
27
  yt-dlp
28
- audio-separator[gpu]
29
-
30
-
31
-
32
 
 
 
 
 
 
33
 
 
 
 
1
+ # Core Libraries
 
2
  numpy
3
  scipy
4
+ numba
5
+
6
+ # Audio Processing
7
  librosa
 
 
 
8
  pydub
9
  soundfile
 
 
 
 
10
  praat-parselmouth
11
+ pyworld
12
+ torchcrepe==0.0.20
13
+
14
+ # Machine Learning and Frameworks
15
+ fairseq
16
+ faiss-cpu
17
  onnxruntime; sys_platform == 'darwin'
18
  onnxruntime-gpu; sys_platform != 'darwin'
19
+ tensorboard
20
+ tensorboardX
21
  torchfcpe
22
+
23
+ # Model Deployment and API
24
+ gradio==3.34.0
25
+ fastapi
26
+
27
+ # Media and File Handling
28
+ aria2
29
+ ffmpeg-python
30
  ffmpy
 
31
  av
 
32
  yt-dlp
 
 
 
 
33
 
34
+ # Utilities and Extras
35
+ tqdm
36
+ json5
37
+ Markdown
38
+ python-dotenv
39
 
40
+ # Specialized Libraries
41
+ audio-separator[gpu]