Spaces:
Sleeping
Sleeping
Upload requirements
Browse files- requirements.txt +50 -0
requirements.txt
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core Machine Learning Libraries
|
| 2 |
+
pandas>=1.5.0
|
| 3 |
+
scikit-learn>=1.2.0
|
| 4 |
+
numpy>=1.21.0
|
| 5 |
+
|
| 6 |
+
# Model Serialization
|
| 7 |
+
skops>=0.7.0
|
| 8 |
+
|
| 9 |
+
# Data Visualization
|
| 10 |
+
matplotlib>=3.5.0
|
| 11 |
+
seaborn>=0.11.0
|
| 12 |
+
|
| 13 |
+
# Code Quality and Formatting
|
| 14 |
+
black>=22.0.0
|
| 15 |
+
flake8>=5.0.0
|
| 16 |
+
bandit>=1.7.0
|
| 17 |
+
|
| 18 |
+
# Testing
|
| 19 |
+
pytest>=7.0.0
|
| 20 |
+
pytest-cov>=4.0.0
|
| 21 |
+
pytest-mock>=3.10.0
|
| 22 |
+
|
| 23 |
+
# Security and Monitoring
|
| 24 |
+
safety>=2.3.0
|
| 25 |
+
|
| 26 |
+
# Jupyter Notebook Support (optional)
|
| 27 |
+
jupyter>=1.0.0
|
| 28 |
+
ipykernel>=6.0.0
|
| 29 |
+
|
| 30 |
+
# Data Science Utilities
|
| 31 |
+
scipy>=1.9.0
|
| 32 |
+
|
| 33 |
+
# MLOps and Monitoring
|
| 34 |
+
evidently>=0.4.0
|
| 35 |
+
|
| 36 |
+
# Web Framework (for future API development)
|
| 37 |
+
fastapi>=0.100.0
|
| 38 |
+
uvicorn>=0.20.0
|
| 39 |
+
|
| 40 |
+
# Environment and Configuration
|
| 41 |
+
python-dotenv>=1.0.0
|
| 42 |
+
|
| 43 |
+
# Logging and Utilities
|
| 44 |
+
loguru>=0.7.0
|
| 45 |
+
|
| 46 |
+
# HTTP Requests (for API testing)
|
| 47 |
+
requests>=2.28.0
|
| 48 |
+
|
| 49 |
+
# Development Dependencies
|
| 50 |
+
ipython>=8.0.0
|