ワンクリックで
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 職業分類に基づく
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.
| 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?