Spaces:
Build error
Build error
Create requirements.txt
Browse files- requirements.txt +18 -0
requirements.txt
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Web Interface
|
| 2 |
+
gradio
|
| 3 |
+
|
| 4 |
+
# Core Machine Learning & Hugging Face
|
| 5 |
+
torch
|
| 6 |
+
torchaudio
|
| 7 |
+
transformers
|
| 8 |
+
optimum[onnxruntime-gpu] # Use optimum[onnxruntime] if you do not have an NVIDIA GPU
|
| 9 |
+
|
| 10 |
+
# ONNX specific
|
| 11 |
+
onnx
|
| 12 |
+
onnxruntime-gpu # Change to onnxruntime if CPU-only
|
| 13 |
+
|
| 14 |
+
# Audio Processing & Utilities
|
| 15 |
+
librosa
|
| 16 |
+
numpy
|
| 17 |
+
soundfile
|
| 18 |
+
pathlib
|