Spaces:
Sleeping
Sleeping
Commit
·
2bf63f0
1
Parent(s):
63ca042
Update requirements.txt
Browse files- requirements.txt +40 -64
requirements.txt
CHANGED
|
@@ -1,65 +1,41 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
tqdm>=4.65.0
|
| 42 |
-
colorama>=0.4.6
|
| 43 |
-
rich>=13.0.0
|
| 44 |
-
|
| 45 |
-
# Testing (optional)
|
| 46 |
-
pytest>=7.4.0
|
| 47 |
-
pytest-asyncio>=0.21.0
|
| 48 |
-
|
| 49 |
-
# Database (optional)
|
| 50 |
-
# psycopg2-binary>=2.9.0 # PostgreSQL
|
| 51 |
-
# pymongo>=4.5.0 # MongoDB
|
| 52 |
-
# redis>=5.0.0 # Redis for caching
|
| 53 |
-
|
| 54 |
-
# Cloud storage (optional)
|
| 55 |
-
# boto3>=1.28.0 # AWS S3
|
| 56 |
-
# google-cloud-storage>=2.10.0 # Google Cloud Storage
|
| 57 |
-
|
| 58 |
-
# Tracking algorithms (for object tracking in videos)
|
| 59 |
-
# lap>=0.4.0 # For ByteTrack
|
| 60 |
-
# filterpy>=1.4.5 # For Kalman filtering
|
| 61 |
-
|
| 62 |
-
# Additional utilities
|
| 63 |
-
matplotlib>=3.7.0
|
| 64 |
-
seaborn>=0.12.0
|
| 65 |
plotly>=5.16.0
|
|
|
|
| 1 |
+
ultralytics>=8.3.0
|
| 2 |
+
torch>=2.0.0
|
| 3 |
+
torchvision>=0.15.0
|
| 4 |
+
transformers>=4.36.0
|
| 5 |
+
fastapi>=0.104.0
|
| 6 |
+
uvicorn[standard]>=0.24.0
|
| 7 |
+
python-multipart>=0.0.6
|
| 8 |
+
websockets>=12.0
|
| 9 |
+
|
| 10 |
+
opencv-python>=4.8.0
|
| 11 |
+
opencv-contrib-python>=4.8.0
|
| 12 |
+
Pillow>=10.0.0
|
| 13 |
+
numpy>=1.24.0
|
| 14 |
+
|
| 15 |
+
imageio>=2.31.0
|
| 16 |
+
imageio-ffmpeg>=0.4.8
|
| 17 |
+
|
| 18 |
+
scipy>=1.11.0
|
| 19 |
+
scikit-learn>=1.3.0
|
| 20 |
+
pandas>=2.0.0
|
| 21 |
+
|
| 22 |
+
pyyaml>=6.0
|
| 23 |
+
python-dotenv>=1.0.0
|
| 24 |
+
|
| 25 |
+
pydantic>=2.0.0
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
onnx>=1.14.0
|
| 29 |
+
onnxruntime>=1.15.0
|
| 30 |
+
|
| 31 |
+
tqdm>=4.65.0
|
| 32 |
+
colorama>=0.4.6
|
| 33 |
+
rich>=13.0.0
|
| 34 |
+
|
| 35 |
+
pytest>=7.4.0
|
| 36 |
+
pytest-asyncio>=0.21.0
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
matplotlib>=3.7.0
|
| 40 |
+
seaborn>=0.12.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
plotly>=5.16.0
|