tahirturk commited on
Commit
b1b5d58
·
1 Parent(s): 9a7702d
Files changed (1) hide show
  1. requirements.txt +12 -6
requirements.txt CHANGED
@@ -1,3 +1,4 @@
 
1
  gradio==4.44.0
2
  torch>=2.2.0
3
  numpy
@@ -14,10 +15,15 @@ silero-vad==5.1.2
14
  conformer==0.3.2
15
  safetensors
16
 
 
 
17
 
18
- # Optional language-specific dependencies
19
- # Uncomment the ones you need for specific languages:
20
- spacy_pkuseg # For Chinese text segmentation
21
- pykakasi>=2.2.0 # For Japanese text processing (Kanji to Hiragana)
22
- russian-text-stresser @ git+https://github.com/Vuizur/add-stress-to-epub
23
- # dicta-onnx>=0.1.0 # For Hebrew diacritization
 
 
 
 
1
+ # --- Core Dependencies ---
2
  gradio==4.44.0
3
  torch>=2.2.0
4
  numpy
 
15
  conformer==0.3.2
16
  safetensors
17
 
18
+ # --- Compatibility Fixes ---
19
+ typer==0.9.0 # Ensures compatibility between spaCy and Gradio
20
 
21
+ # --- Optional Language-Specific Dependencies ---
22
+ # Uncomment if you actually need them.
23
+ # Each adds extra language processing tools — not required for voice cloning.
24
+
25
+ # spacy==3.5.3 # Core NLP engine (only if you need pkuseg)
26
+ # spacy_pkuseg # For Chinese text segmentation (requires spacy)
27
+ # pykakasi>=2.2.0 # For Japanese text processing (Kanji → Hiragana)
28
+ # russian-text-stresser @ git+https://github.com/Vuizur/add-stress-to-epub
29
+ # dicta-onnx>=0.1.0 # For Hebrew diacritization