一键导入
mlops-observability
Guide to implement full stack observability including reproducibility, lineage, monitoring, alerting, and explainability.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guide to implement full stack observability including reproducibility, lineage, monitoring, alerting, and explainability.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | MLOps Observability |
| description | Guide to implement full stack observability including reproducibility, lineage, monitoring, alerting, and explainability. |
To implement a "Glass Box" system where every result is Reproducible, every asset has Lineage, and system health is Monitored, Alerted on, and Explained.
Consistency is key. For instance:
random, numpy, torch, tensorflow.docker and locked dependencies (uv.lock).justfile with uv build --build-constraint for deterministic wheels.Know the origin of your data. For instance:
mlflow.data.from_pandas.mlflow.log_input.data/v1.csv) or use DVC.Watch for silent failures. For instance:
MLflow Evaluate to gate models against quality thresholds.evidently to compare reference (training) vs current (production) data.
log_system_metrics=True) for CPU/GPU.Don't stare at dashboards. For instance:
plyer for desktop notifications during long training runs.PagerDuty (critical) or Slack (warnings).Trust but verify. For instance:
SHAP values to explain individual predictions.Optimize resources. For instance:
project, env, user.run_time and instance type to estimate ROI.log_system_metrics enabled?Guide to refine MLOps projects with task automation, containerization, CI/CD pipelines, and robust experiment tracking.
Guide to prepare MLOps projects for sharing, collaboration, and community engagement.
Guide to transform prototypes into robust, distributable Python packages using the src layout, hybrid paradigm, and strict configuration management.
Guide to initialize a new MLOps project with standard tools (uv, git, VS Code) and best practices.
Guide to create structured, reproducible Jupyter notebooks for MLOps prototyping, emphasizing configuration management and pipeline integrity.
Guide to implement rigorous validation layers including static analysis, automated testing, structured logging, and security scanning.