fetch_ml/podman/environment.yml
Jeremie Fraeys 4aecd469a1 feat: implement comprehensive monitoring and container orchestration
- Add Prometheus, Grafana, and Loki monitoring stack
- Include pre-configured dashboards for ML metrics and logs
- Add Podman container support with security policies
- Implement ML runtime environments for multiple frameworks
- Add containerized ML project templates (PyTorch, TensorFlow, etc.)
- Include secure runner with isolation and resource limits
- Add comprehensive log aggregation and alerting
2025-12-04 16:54:49 -05:00

37 lines
757 B
YAML

---
# Fast Conda Environment for ML
# Optimized with mamba for data scientists
name: ml_env
channels:
- pytorch
- conda-forge
- defaults
dependencies:
# Python
- python=3.10
# ML Frameworks (conda-optimized)
- pytorch>=1.9.0
- torchvision>=0.10.0
- numpy>=1.21.0
- pandas>=1.3.0
- scikit-learn>=1.0.0
- xgboost>=1.5.0
# Data Science Tools
- matplotlib>=3.5.0
- seaborn>=0.11.0
- jupyter>=1.0.0
- notebook>=6.4.0
- ipykernel>=6.0.0
# Development Tools
- pip
- setuptools
- wheel
# GPU Support (if available)
- cudatoolkit=11.3
- pytorch-cuda>=11.3
# pip fallback packages (if conda doesn't have them)
- pip:
- tensorflow>=2.8.0
- statsmodels>=0.13.0
- plotly>=5.0.0
- dash>=2.0.0