Update requirements.txt
Browse files- requirements.txt +37 -27
requirements.txt
CHANGED
|
@@ -1,33 +1,43 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
fastapi>=0.111,<0.114
|
| 5 |
-
transformers>=4.41
|
| 6 |
uvicorn
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
soundfile>=0.12.0
|
| 17 |
-
librosa>=0.10.0
|
| 18 |
-
batchalign
|
| 19 |
-
scipy>=1.7.0
|
| 20 |
-
scikit-learn>=1.0.0
|
| 21 |
python-dateutil>=2.8.0
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
pydub>=0.25.0
|
| 23 |
webrtcvad>=2.0.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
jsonlines>=3.0.0
|
| 25 |
-
|
| 26 |
-
seaborn>=0.11.0
|
| 27 |
-
setuptools<81
|
| 28 |
-
matplotlib>=3.5.0
|
| 29 |
-
scipy>=1.7.0
|
| 30 |
-
accelerate>=0.20.0
|
| 31 |
-
safetensors>=0.3.0
|
| 32 |
-
soundfile>=0.12.0
|
| 33 |
-
ffmpeg-python>=0.2.0
|
|
|
|
| 1 |
+
# Core ML/AI packages
|
| 2 |
+
torch>=2.0.0,<3.0.0
|
| 3 |
+
torchvision>=0.15.0,<1.0.0
|
| 4 |
+
torchaudio>=2.0.0,<3.0.0
|
| 5 |
+
transformers>=4.30.0,<5.0.0
|
| 6 |
+
tokenizers>=0.13.0,<1.0.0
|
| 7 |
+
accelerate>=0.20.0,<1.0.0
|
| 8 |
+
safetensors>=0.3.0,<1.0.0
|
| 9 |
+
|
| 10 |
+
# Gradio and web framework (pinned to avoid schema issues)
|
| 11 |
+
gradio==4.42.0
|
| 12 |
+
gradio_client==1.1.0
|
| 13 |
fastapi>=0.111,<0.114
|
|
|
|
| 14 |
uvicorn
|
| 15 |
+
|
| 16 |
+
# Hugging Face
|
| 17 |
+
huggingface_hub>=0.20.0,<1.0.0
|
| 18 |
+
|
| 19 |
+
# Data processing
|
| 20 |
+
numpy>=1.21.0,<2.0.0
|
| 21 |
+
pandas>=1.3.0,<3.0.0
|
| 22 |
+
scipy>=1.7.0,<2.0.0
|
| 23 |
+
scikit-learn>=1.0.0,<2.0.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
python-dateutil>=2.8.0
|
| 25 |
+
|
| 26 |
+
# Audio processing
|
| 27 |
+
soundfile>=0.12.0,<1.0.0
|
| 28 |
+
librosa>=0.10.0,<1.0.0
|
| 29 |
pydub>=0.25.0
|
| 30 |
webrtcvad>=2.0.0
|
| 31 |
+
ffmpeg-python>=0.2.0,<1.0.0
|
| 32 |
+
|
| 33 |
+
# Speech analysis
|
| 34 |
+
batchalign
|
| 35 |
+
praat-parselmouth
|
| 36 |
+
|
| 37 |
+
# Visualization
|
| 38 |
+
matplotlib>=3.5.0,<4.0.0
|
| 39 |
+
seaborn>=0.11.0,<1.0.0
|
| 40 |
+
|
| 41 |
+
# Utilities
|
| 42 |
jsonlines>=3.0.0
|
| 43 |
+
setuptools<81
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|