sbompolas commited on
Commit
7834db2
·
verified ·
1 Parent(s): 75153af

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +31 -0
requirements.txt ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies
2
+ gradio>=5.35.0
3
+ transformers>=4.35.0
4
+ torch>=2.0.0
5
+ torchaudio>=2.0.0
6
+
7
+ # Audio processing
8
+ librosa>=0.10.0
9
+ soundfile>=0.12.0
10
+ scipy>=1.9.0
11
+
12
+ # Performance optimization
13
+ accelerate>=0.24.0
14
+ numpy>=1.21.0
15
+
16
+ # Model management
17
+ huggingface-hub>=0.17.0
18
+ safetensors>=0.4.0
19
+
20
+ # Flash Attention 2 (optional, for GPU acceleration)
21
+ flash-attn>=2.0.0; sys_platform != "darwin"
22
+
23
+ # Additional utilities
24
+ datasets>=2.14.0
25
+ evaluate>=0.4.0
26
+ jiwer>=3.0.0
27
+
28
+ # Optional: Better audio processing
29
+ ffmpeg-python>=0.2.0 # Uncomment if you need FFmpeg support
30
+ webrtcvad>=2.0.10 # Uncomment for advanced voice activity detection
31
+ noisereduce>=3.0.0 # Uncomment for noise reduction