Spaces:
Running
on
Zero
Running
on
Zero
fixed requirements
Browse files- requirements.txt +10 -9
requirements.txt
CHANGED
@@ -1,12 +1,6 @@
|
|
1 |
# Machine Learning & Audio
|
2 |
torch
|
3 |
torchaudio
|
4 |
-
# For CPU, ensure correct PyTorch version if not using ZeroGPU:
|
5 |
-
# torch --index-url https://download.pytorch.org/whl/cpu
|
6 |
-
# For CUDA (ZeroGPU is CUDA-based, HF Spaces will handle this if ZeroGPU is selected)
|
7 |
-
# torch --index-url https://download.pytorch.org/whl/cu118
|
8 |
-
# (Check latest recommended CUDA version for ZeroGPU on HF docs)
|
9 |
-
|
10 |
transformers
|
11 |
librosa
|
12 |
soundfile
|
@@ -14,11 +8,18 @@ pydub
|
|
14 |
unidecode
|
15 |
inflect
|
16 |
huggingface_hub
|
17 |
-
sentencepiece
|
|
|
18 |
|
19 |
# Gradio
|
20 |
-
gradio
|
21 |
|
22 |
# Other utilities
|
23 |
numpy
|
24 |
-
pandas
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Machine Learning & Audio
|
2 |
torch
|
3 |
torchaudio
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
transformers
|
5 |
librosa
|
6 |
soundfile
|
|
|
8 |
unidecode
|
9 |
inflect
|
10 |
huggingface_hub
|
11 |
+
sentencepiece
|
12 |
+
sacremoses
|
13 |
|
14 |
# Gradio
|
15 |
+
gradio>=4.0.0
|
16 |
|
17 |
# Other utilities
|
18 |
numpy
|
19 |
+
pandas
|
20 |
+
safetensors
|
21 |
+
accelerate
|
22 |
+
fastapi
|
23 |
+
uvicorn[standard]
|
24 |
+
python-multipart
|
25 |
+
matplotlib
|