Noumida commited on
Commit
f84ce28
·
verified ·
1 Parent(s): 095deb4

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +27 -5
requirements.txt CHANGED
@@ -1,3 +1,4 @@
 
1
  torch>=2.1.0
2
  transformers>=4.51.3
3
  gradio>=4.0.0
@@ -6,12 +7,33 @@ pandas>=2.0.0
6
  numpy>=1.21.0
7
  safetensors>=0.4.1
8
  huggingface-hub>=0.20.0
9
- openpyxl>=3.1.0
10
- pathlib
11
- typing-extensions>=4.5.0
12
  accelerate>=0.20.0
 
 
13
  librosa>=0.10.0
14
  soundfile>=0.12.0
15
- IndicTransToolkit
16
- torchcodec
17
  torchaudio>=2.8.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core PyTorch and ML frameworks
2
  torch>=2.1.0
3
  transformers>=4.51.3
4
  gradio>=4.0.0
 
7
  numpy>=1.21.0
8
  safetensors>=0.4.1
9
  huggingface-hub>=0.20.0
 
 
 
10
  accelerate>=0.20.0
11
+
12
+ # Audio processing libraries
13
  librosa>=0.10.0
14
  soundfile>=0.12.0
 
 
15
  torchaudio>=2.8.0
16
+
17
+ # Audio backends and codecs (may fail on some systems)
18
+ torchcodec
19
+
20
+ # ASR and NLP model dependencies
21
+ onnxruntime>=1.15.0
22
+ sentencepiece>=0.1.99
23
+
24
+ # IndicTrans2 toolkit (may fail if not available)
25
+ IndicTransToolkit
26
+
27
+ # File and data handling
28
+ openpyxl>=3.1.0
29
+ pathlib
30
+ typing-extensions>=4.5.0
31
+
32
+ # Additional audio format support
33
+ scipy>=1.9.0
34
+ resampy>=0.4.0
35
+
36
+ # Tokenization and text processing
37
+ tokenizers>=0.13.0
38
+
39
+