Loading...
Loading...
Build end-to-end MLOps pipelines from data preparation through model training, validation, and production deployment. Use when creating ML pipelines, implementing MLOps practices, or automating model training and deployment workflows.
npx skill4agent add sickn33/antigravity-awesome-skills ml-pipeline-workflowresources/implementation-playbook.mdreferences/assets/# 1. Define pipeline stages
stages = [
"data_ingestion",
"data_validation",
"feature_engineering",
"model_training",
"model_validation",
"model_deployment"
]
# 2. Configure dependencies
# See assets/pipeline-dag.yaml.template for full example# See assets/pipeline-dag.yaml.template
stages:
- name: data_preparation
dependencies: []
- name: model_training
dependencies: [data_preparation]
- name: model_evaluation
dependencies: [model_training]
- name: model_deployment
dependencies: [model_evaluation]# Stream processing for real-time features
# Combined with batch training
# See references/data-preparation.md# Automated retraining on schedule
# Triggered by data drift detection
# See references/model-training.md