Categories: MLOps and Evaluation
MLOps (Model Operations / Lifecycle)
Definition: the operational discipline for AI systems in production β versioning, deployment, monitoring, and retraining, run with the same rigor as application DevOps. (The duty statement's exact words: "model versioning, monitoring, and retraining.")
What's involved:
- Model and prompt versioning β behavior artifacts tracked and reviewed like code
- A registry β what exactly is deployed where, approved by whom
- Release discipline β evals as gates; canary or shadow before full exposure
- Production monitoring β cost, latency, quality signals, refusal and override rates
- Drift watch β data drift (inputs change) and concept drift (right answers change)
- Retraining / re-indexing β the planned response when drift erodes accuracy; for LLM systems this usually means re-indexing the corpus and re-running evals
- Rollback and the kill switch β restore a known-good combination instantly
The opener: "Operationally this is an MLOps question β versioning, release gates, monitoring, drift, and a retraining plan. I treat AI systems like any production system, with those AI-specific additionsβ¦"
Cite it when: the question involves deploying, maintaining, updating, or "what happens after launch" for any model or AI feature.
Evaluation and Measurement
Definition: how you know an AI system works β measured accuracy before launch and monitored accuracy after, against defined metrics. (Distinguish the pair: evaluation produces the evidence; MLOps is the machinery that demands and reacts to it.)
What's involved:
- A gold set β real historical cases with expert-verified answers
- The worst-failure metric chosen first β which error direction must stay near zero
- Precision and recall β wasted-work rate vs. risk-exposure rate, named correctly
- Held-out testing β graded only on data the model never saw, most-recent period
- Shadow running β silent operation beside the human process to measure agreement
- Sampled human review after launch β routine, not complaint-driven
- Override-rate monitoring β including the suspicious zero
- Re-evaluation on every change β model, prompt, or corpus: no eval, no deploy
The opener: "That's an evaluation question, and my rule is: no gold set, no launch. Before deployment we measure against expert-decided historical cases; after, we monitor sampled reviews, override rates, and drift. Specificallyβ¦"
Cite it when: anyone asks "how do you know it works," "is it accurate enough," "prove it," or how you'd judge a vendor's model. This category IS the CIO question.
The pairing move
"Two halves: evaluation gives us the evidence β gold set before launch, sampled review and override rates after β and MLOps acts on it: versioned releases gated on evals, drift monitoring, and rollback when the numbers say so." Measurement produces, operations consumes β saying that relationship out loud is the architect framing.