Install
openclaw skills install mlops-observability-cnFull stack observability - reproducibility, lineage, monitoring, alerting
openclaw skills install mlops-observability-cnGlass box system - reproducible, traceable, monitored.
Complete tracking setup:
cp references/mlflow-tracking.py ../your-project/src/tracking.py
Tracks:
Using Evidently:
from evidently import Report
from evidently.metrics import DataDriftTable
report = Report(metrics=[DataDriftTable()])
report.run(reference_data=train, current_data=prod)
import shap
explainer = shap.TreeExplainer(model)
shap_values = explainer.shap_values(X)
shap.summary_plot(shap_values, X)
# Copy tracking code
cp references/mlflow-tracking.py ./src/
# Add to training script:
# from tracking import setup_tracking, log_training_run
# Set all seeds
import random, numpy as np, torch
random.seed(42)
np.random.seed(42)
torch.manual_seed(42)
# Track git commit
import git
commit = git.Repo().head.commit.hexsha
mlflow.log_param("git_commit", commit)
plyer notificationsConverted from MLOps Coding Course