Spaces:
Build error
Build error
Update requirements.txt
Browse files- requirements.txt +11 -8
requirements.txt
CHANGED
|
@@ -1,14 +1,17 @@
|
|
| 1 |
-
#
|
| 2 |
gradio
|
| 3 |
-
transformers
|
| 4 |
-
optimum[onnxruntime-gpu]
|
| 5 |
|
| 6 |
-
#
|
| 7 |
-
torch
|
|
|
|
| 8 |
torchcodec
|
| 9 |
-
numpy
|
| 10 |
|
| 11 |
-
#
|
|
|
|
|
|
|
| 12 |
onnx
|
| 13 |
onnxruntime-gpu
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Web Interface
|
| 2 |
gradio
|
|
|
|
|
|
|
| 3 |
|
| 4 |
+
# Core ML (Ensure version matching)
|
| 5 |
+
torch>=2.7.0
|
| 6 |
+
torchaudio>=2.7.0
|
| 7 |
torchcodec
|
|
|
|
| 8 |
|
| 9 |
+
# Hugging Face & ONNX
|
| 10 |
+
transformers
|
| 11 |
+
optimum[onnxruntime-gpu]
|
| 12 |
onnx
|
| 13 |
onnxruntime-gpu
|
| 14 |
+
|
| 15 |
+
# Audio Processing
|
| 16 |
+
librosa
|
| 17 |
+
numpy
|