Spaces:
Sleeping
Sleeping
Fix: Update requirements to use available package versions
Browse files- requirements.txt +16 -16
requirements.txt
CHANGED
|
@@ -1,24 +1,24 @@
|
|
| 1 |
# FastAPI
|
| 2 |
-
fastapi=
|
| 3 |
-
uvicorn[standard]=
|
| 4 |
-
pydantic=
|
| 5 |
-
python-multipart=
|
| 6 |
|
| 7 |
# Audio Processing
|
| 8 |
-
librosa=
|
| 9 |
-
soundfile=
|
| 10 |
-
pydub=
|
| 11 |
|
| 12 |
-
# ML/DL - Core
|
| 13 |
-
torch=
|
| 14 |
-
torchaudio=
|
| 15 |
-
transformers=
|
| 16 |
|
| 17 |
# IndicWav2Vec and SpeechBrain
|
| 18 |
-
speechbrain=
|
| 19 |
|
| 20 |
# Utilities
|
| 21 |
-
numpy=
|
| 22 |
-
scipy=
|
| 23 |
-
scikit-learn=
|
| 24 |
-
httpx=
|
|
|
|
| 1 |
# FastAPI
|
| 2 |
+
fastapi>=0.109.0
|
| 3 |
+
uvicorn[standard]>=0.27.0
|
| 4 |
+
pydantic>=2.5.3
|
| 5 |
+
python-multipart>=0.0.6
|
| 6 |
|
| 7 |
# Audio Processing
|
| 8 |
+
librosa>=0.10.1
|
| 9 |
+
soundfile>=0.12.1
|
| 10 |
+
pydub>=0.25.1
|
| 11 |
|
| 12 |
+
# ML/DL - Core (use available versions)
|
| 13 |
+
torch>=2.5.0
|
| 14 |
+
torchaudio>=2.5.0
|
| 15 |
+
transformers>=4.36.2
|
| 16 |
|
| 17 |
# IndicWav2Vec and SpeechBrain
|
| 18 |
+
speechbrain>=1.0.0
|
| 19 |
|
| 20 |
# Utilities
|
| 21 |
+
numpy>=1.26.0
|
| 22 |
+
scipy>=1.12.0
|
| 23 |
+
scikit-learn>=1.4.0
|
| 24 |
+
httpx>=0.26.0
|