Spaces:
No application file
No application file
Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +62 -0
requirements.txt
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python 3.12 - Blue Shield AI Maritime Safety System
|
| 2 |
+
# Upgraded to latest stable versions - December 2025
|
| 3 |
+
|
| 4 |
+
# Core Framework
|
| 5 |
+
flask==3.1.2
|
| 6 |
+
flask-cors==6.0.2
|
| 7 |
+
flask-socketio==5.5.1
|
| 8 |
+
|
| 9 |
+
# Database & Firebase
|
| 10 |
+
firebase-admin==7.1.0
|
| 11 |
+
|
| 12 |
+
# AI/ML Libraries
|
| 13 |
+
tensorflow==2.18.0
|
| 14 |
+
keras==3.8.0 # Major upgrade: Keras 3 is multi-backend (Torch/TF)
|
| 15 |
+
torch==2.5.1
|
| 16 |
+
scikit-learn==1.6.0
|
| 17 |
+
numpy==2.2.0 # Use 2.x for significant vessel-data processing speed
|
| 18 |
+
pandas==2.2.3
|
| 19 |
+
scipy==1.15.0
|
| 20 |
+
|
| 21 |
+
# Computer Vision (Vessel ID)
|
| 22 |
+
opencv-python==4.10.0.84
|
| 23 |
+
pillow==11.1.0
|
| 24 |
+
|
| 25 |
+
# Natural Language Processing
|
| 26 |
+
transformers==4.47.0
|
| 27 |
+
openai==1.58.0
|
| 28 |
+
langchain==0.3.12 # Essential for modern LLM chains
|
| 29 |
+
sentence-transformers==3.3.1
|
| 30 |
+
|
| 31 |
+
# Geospatial Analysis (Vessel Tracking)
|
| 32 |
+
geopy==2.4.1
|
| 33 |
+
shapely==2.0.6
|
| 34 |
+
geopandas==1.0.1 # Major 1.0 release is much faster
|
| 35 |
+
folium==0.19.4
|
| 36 |
+
|
| 37 |
+
# Time Series & Prediction
|
| 38 |
+
prophet==1.1.6
|
| 39 |
+
statsmodels==0.14.4
|
| 40 |
+
|
| 41 |
+
# API & Web
|
| 42 |
+
fastapi==0.115.6
|
| 43 |
+
uvicorn==0.34.0
|
| 44 |
+
pydantic==2.10.4
|
| 45 |
+
requests==2.32.3
|
| 46 |
+
|
| 47 |
+
# Utilities
|
| 48 |
+
python-dotenv==1.0.1
|
| 49 |
+
schedule==1.2.2
|
| 50 |
+
python-dateutil==2.9.0
|
| 51 |
+
pytz==2024.2
|
| 52 |
+
|
| 53 |
+
# Monitoring & Logging
|
| 54 |
+
loguru==0.7.3
|
| 55 |
+
prometheus-client==0.21.1
|
| 56 |
+
|
| 57 |
+
# Testing
|
| 58 |
+
pytest==8.3.4
|
| 59 |
+
pytest-asyncio==0.25.0
|
| 60 |
+
|
| 61 |
+
# Gradio UI (Latest stable)
|
| 62 |
+
gradio==5.9.1
|