tahirturk commited on
Commit
a7713e6
·
1 Parent(s): f8709f1
Files changed (1) hide show
  1. requirements.txt +24 -19
requirements.txt CHANGED
@@ -1,28 +1,33 @@
1
- # --- Core Dependencies ---
2
  gradio==4.44.0
3
- torch>=2.2.0
4
- numpy
5
- soundfile
6
  spaces
7
- resampy==0.4.3
 
 
 
 
 
 
8
  librosa==0.10.0
9
- s3tokenizer
 
 
 
 
10
  transformers==4.46.3
11
- diffusers==0.29.0
 
 
 
12
  omegaconf==2.3.0
 
 
 
13
  resemble-perth==1.0.1
14
- silero-vad==5.1.2
15
  conformer==0.3.2
16
  safetensors
17
 
18
- # --- Multilingual / Optional NLP Support ---
19
- # These are now fully compatible with Gradio 4.44.0
20
- spacy==3.7.4 # ✅ Compatible with typer>=0.12
21
- spacy_pkuseg # For Chinese segmentation
22
- pykakasi>=2.2.0 # For Japanese text processing
23
- russian-text-stresser @ git+https://github.com/Vuizur/add-stress-to-epub
24
- # dicta-onnx>=0.1.0 # Optional: Hebrew diacritization
25
-
26
- # --- Notes ---
27
- # - No need to pin typer manually anymore (Gradio & spaCy agree on range)
28
- # - Works with Python 3.10 on Hugging Face GPU S
 
1
+ # Core Framework
2
  gradio==4.44.0
 
 
 
3
  spaces
4
+
5
+ # Deep Learning
6
+ torch>=2.2.0
7
+ torchvision
8
+ torchaudio
9
+
10
+ # Audio + Speech Processing
11
  librosa==0.10.0
12
+ resampy==0.4.3
13
+ soundfile
14
+ silero-vad==5.1.2
15
+
16
+ # NLP + Tokenization
17
  transformers==4.46.3
18
+ s3tokenizer
19
+ spacy==3.7.4
20
+ spacy_pkuseg
21
+ pykakasi>=2.2.0
22
  omegaconf==2.3.0
23
+
24
+ # Diffusion + Voice Models
25
+ diffusers==0.29.0
26
  resemble-perth==1.0.1
 
27
  conformer==0.3.2
28
  safetensors
29
 
30
+ # Utility Libraries
31
+ numpy
32
+ requests
33
+ tqdm