Update requirements.txt
Browse files- requirements.txt +22 -13
requirements.txt
CHANGED
@@ -1,25 +1,34 @@
|
|
1 |
-
#
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
|
|
5 |
transformers>=4.30.0
|
6 |
accelerate>=0.20.0
|
7 |
-
|
|
|
|
|
|
|
8 |
|
9 |
# Audio processing
|
10 |
librosa>=0.10.0
|
11 |
-
soundfile>=0.
|
12 |
scipy>=1.9.0
|
13 |
-
numpy>=1.21.0
|
14 |
|
15 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
peft>=0.6.0
|
17 |
safetensors>=0.3.0
|
18 |
|
19 |
-
#
|
20 |
-
git+https://github.com/nari-labs/dia.git
|
21 |
-
|
22 |
-
# Additional utilities
|
23 |
-
huggingface_hub>=0.16.0
|
24 |
requests>=2.28.0
|
25 |
python-dotenv>=1.0.0
|
|
|
|
|
|
|
|
1 |
+
# Python runtime specification
|
2 |
+
python>=3.10
|
3 |
+
|
4 |
+
# Core ML libraries with specific versions to avoid conflicts
|
5 |
+
torch>=2.6.0
|
6 |
+
torchaudio>=2.6.0
|
7 |
transformers>=4.30.0
|
8 |
accelerate>=0.20.0
|
9 |
+
|
10 |
+
# Updated versions for nari-tts compatibility
|
11 |
+
gradio>=5.25.2
|
12 |
+
numpy>=2.2.4
|
13 |
|
14 |
# Audio processing
|
15 |
librosa>=0.10.0
|
16 |
+
soundfile>=0.13.1
|
17 |
scipy>=1.9.0
|
|
|
18 |
|
19 |
+
# Dia TTS dependencies
|
20 |
+
descript-audio-codec>=1.0.0
|
21 |
+
huggingface-hub>=0.30.2
|
22 |
+
pydantic>=2.11.3
|
23 |
+
|
24 |
+
# Speech models
|
25 |
+
datasets>=2.14.0
|
26 |
peft>=0.6.0
|
27 |
safetensors>=0.3.0
|
28 |
|
29 |
+
# Utilities
|
|
|
|
|
|
|
|
|
30 |
requests>=2.28.0
|
31 |
python-dotenv>=1.0.0
|
32 |
+
|
33 |
+
# Install nari-tts directly from git
|
34 |
+
git+https://github.com/nari-labs/nari-tts.git
|