Update requirements.txt
Browse files- requirements.txt +47 -12
requirements.txt
CHANGED
|
@@ -1,12 +1,47 @@
|
|
| 1 |
-
#
|
| 2 |
-
gradio>=4.
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
#
|
| 7 |
-
torch>=2.0.0
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Framework principal y servidor
|
| 2 |
+
gradio>=4.0.0
|
| 3 |
+
fastapi>=0.104.0
|
| 4 |
+
uvicorn[standard]>=0.24.0
|
| 5 |
+
|
| 6 |
+
# Procesamiento de Machine Learning
|
| 7 |
+
torch>=2.0.0
|
| 8 |
+
torchvision>=0.15.0
|
| 9 |
+
transformers>=4.35.0
|
| 10 |
+
sentence-transformers>=2.2.2
|
| 11 |
+
datasets>=2.14.0
|
| 12 |
+
|
| 13 |
+
# Procesamiento de im谩genes
|
| 14 |
+
Pillow>=10.0.0
|
| 15 |
+
opencv-python>=4.8.0
|
| 16 |
+
scikit-image>=0.21.0
|
| 17 |
+
|
| 18 |
+
# Procesamiento de audio
|
| 19 |
+
librosa>=0.10.1
|
| 20 |
+
soundfile>=0.12.1
|
| 21 |
+
|
| 22 |
+
# An谩lisis de datos y visualizaci贸n
|
| 23 |
+
numpy>=1.24.0
|
| 24 |
+
pandas>=2.0.0
|
| 25 |
+
scikit-learn>=1.3.0
|
| 26 |
+
matplotlib>=3.7.0
|
| 27 |
+
seaborn>=0.12.0
|
| 28 |
+
plotly>=5.17.0
|
| 29 |
+
|
| 30 |
+
# Reducci贸n dimensional y clustering
|
| 31 |
+
umap-learn>=0.5.4
|
| 32 |
+
hdbscan>=0.8.33
|
| 33 |
+
|
| 34 |
+
# Utilidades adicionales
|
| 35 |
+
requests>=2.31.0
|
| 36 |
+
aiohttp>=3.8.0
|
| 37 |
+
python-multipart>=0.0.6
|
| 38 |
+
pydantic>=2.4.0
|
| 39 |
+
|
| 40 |
+
# Optimizaci贸n y aceleraci贸n
|
| 41 |
+
numba>=0.58.0
|
| 42 |
+
|
| 43 |
+
# Logging y monitoreo
|
| 44 |
+
loguru>=0.7.2
|
| 45 |
+
|
| 46 |
+
# Compatibilidad con Hugging Face
|
| 47 |
+
huggingface-hub>=0.17.0
|