scikit-learn
Installation
SKILL.md
scikit-learn ML Pipelines
Build reproducible ML workflows with scikit-learn Pipelines, ColumnTransformers, cross-validation, and MLflow experiment tracking.
Principles
- Prefer
Pipeline/ColumnTransformerso preprocessing travels with the model - Make runs deterministic: set
random_stateeverywhere and seed numpy - Keep train/val/test separation; use cross-validation for small datasets
- Persist the whole pipeline with
jobliband load it for inference