Spaces:
Sleeping
Sleeping
Commit ·
d78f5c0
1
Parent(s): 950fcde
Update requirements.txt to specify package versions for better dependency management
Browse files- requirements.txt +21 -11
requirements.txt
CHANGED
|
@@ -1,11 +1,21 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
gradio
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
omegaconf
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core ML and Audio Processing
|
| 2 |
+
torch>=2.0.0
|
| 3 |
+
librosa>=0.10.0
|
| 4 |
+
soundfile>=0.12.0
|
| 5 |
+
numpy>=1.21.0
|
| 6 |
+
|
| 7 |
+
# Gradio for web interface
|
| 8 |
+
gradio>=4.0.0
|
| 9 |
+
|
| 10 |
+
# Configuration and model management
|
| 11 |
+
omegaconf>=2.3.0
|
| 12 |
+
huggingface_hub>=0.16.0
|
| 13 |
+
|
| 14 |
+
# Development and MLOps (optional for deployment)
|
| 15 |
+
fastapi>=0.100.0
|
| 16 |
+
uvicorn>=0.23.0
|
| 17 |
+
mlflow>=2.5.0
|
| 18 |
+
dvc[s3]>=3.0.0
|
| 19 |
+
|
| 20 |
+
# Testing (development only)
|
| 21 |
+
pytest>=7.0.0
|