Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +36 -35
requirements.txt
CHANGED
|
@@ -1,35 +1,36 @@
|
|
| 1 |
-
# Core Web API
|
| 2 |
-
fastapi
|
| 3 |
-
uvicorn[standard]
|
| 4 |
-
python-multipart
|
| 5 |
-
|
| 6 |
-
# ML / Computer Vision
|
| 7 |
-
torch
|
| 8 |
-
torchvision
|
| 9 |
-
transformers
|
| 10 |
-
accelerate
|
| 11 |
-
ultralytics
|
| 12 |
-
opencv-python-headless
|
| 13 |
-
Pillow
|
| 14 |
-
numpy
|
| 15 |
-
scikit-learn
|
| 16 |
-
xgboost
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
|
|
|
|
|
| 1 |
+
# Core Web API
|
| 2 |
+
fastapi
|
| 3 |
+
uvicorn[standard]
|
| 4 |
+
python-multipart
|
| 5 |
+
|
| 6 |
+
# ML / Computer Vision
|
| 7 |
+
torch
|
| 8 |
+
torchvision
|
| 9 |
+
transformers
|
| 10 |
+
accelerate
|
| 11 |
+
ultralytics
|
| 12 |
+
opencv-python-headless
|
| 13 |
+
Pillow
|
| 14 |
+
numpy
|
| 15 |
+
scikit-learn
|
| 16 |
+
xgboost
|
| 17 |
+
lightgbm
|
| 18 |
+
scipy
|
| 19 |
+
|
| 20 |
+
# AI / LLM
|
| 21 |
+
google-generativeai
|
| 22 |
+
|
| 23 |
+
# HuggingFace Hub — model download at startup in production
|
| 24 |
+
huggingface_hub
|
| 25 |
+
|
| 26 |
+
# Data
|
| 27 |
+
pandas
|
| 28 |
+
|
| 29 |
+
# Utilities
|
| 30 |
+
python-dotenv
|
| 31 |
+
requests
|
| 32 |
+
|
| 33 |
+
# Data pipeline (scraping — not needed for web app, but kept for local dev)
|
| 34 |
+
beautifulsoup4
|
| 35 |
+
selenium
|
| 36 |
+
webdriver-manager
|