mlops
AI, ML & GenAI interview questions tagged mlops, across every topic.
45 questions · 11 unlocked for you
Concepts behind "mlops"
The curriculum that explains the ideas these questions test.
Foundational
CI/CD for ModelsShipping a model safely takes more than software CI/CD because the model rides on data, not just code. The pipeline tests data (schema, distributions, no leakage), tests the model (meets a metric threshold and beats the baseline, per-slice), and runs behavioral tests, then gates deployment on all of them, with canary/shadow rollout and rollback. AI, ML, and GenAI engineer interviews probe it because 'we tested the code' is insufficient for ML, and the data and model gates are what catch the failures users would otherwise hit.🔁 MLOps & Lifecycle
Foundational
Model Monitoring in ProductionMonitoring an ML model takes more than uptime and latency, because a model can look healthy and be silently wrong. You watch four layers: operational (latency, errors, cost), data/input (schema, missing values, drift), prediction (output distribution, confidence), and model quality (accuracy and business metrics, once labels arrive, which lag). Inputs and predictions are leading indicators; labels confirm later. AI, ML, and GenAI engineer interviews probe it because silent model decay is invisible to ordinary service monitoring.🔁 MLOps & Lifecycle
Core
Drift DetectionModels decay as the world shifts. Data drift is a move in the input distribution (catchable without labels by comparing live features to a training reference with PSI or KS tests); concept drift is a change in the input-to-output relationship (usually needs labels, which often lag). The discipline is watching inputs and predictions as leading indicators, alerting on sustained shifts, and triggering retraining. AI, ML, and GenAI engineer interviews probe it because 'the model was great at launch and quietly got worse' is a top production failure.🔁 MLOps & LifecycleSign in
Core
Model Debugging MethodologyModel debugging is the systematic work of root-causing why a model underperforms: judging whether the cause is the data, the features, the labels, model capacity, or the evaluation itself, rather than blindly tuning hyperparameters. The method leans on slice-level error analysis and the train/val/test gap ladder to pinpoint the failure before fixing it. AI, ML, and GenAI engineer interviews probe it because most candidates reach for bigger models or more tuning when the real bug is a leaky feature, a noisy label set, or a broken eval.🔁 MLOps & LifecycleSign in
Core
Model Registry, Lineage, and PromotionA model registry is the versioned source of truth for trained models: every model carries a version, lineage (the data, code, config, and run that produced it), and a stage (staging, production, archived). It enables reproducibility, safe promotion through gates, instant rollback, and audit. Lineage is what lets you rebuild a model and debug a regression by diffing against the last good version. AI, ML, and GenAI engineer interviews probe it because shipping models without versioning and lineage turns rollback and debugging into guesswork.🔁 MLOps & LifecycleSign in
Core
Reproducible and Deterministic PipelinesA reproducible pipeline yields the same model and metrics from the same inputs, achieved by pinning seeds, dependencies, data versions, and code together. Determinism on GPU is a separate, harder problem because many CUDA kernels run nondeterministically by default. Interviews probe this because without it you cannot debug a regression, pass an audit, or trust an A/B result.🔁 MLOps & LifecycleSign in
