mlops
FDE interview questions tagged mlops, across every topic.
11 questions · 1 unlocked for you
Concepts behind "mlops"
The curriculum that explains the ideas these questions test.
Core
Data and Concept DriftA model can lose accuracy two ways: the inputs it sees start looking different (data drift), or the true mapping from inputs to outputs changes underneath it (concept drift). The fix differs, so the FDE skill is diagnosing which one you have before reaching for a retrain.🔁 MLOps & LifecycleSign in
Core
Model Registry and PromotionA model registry is the source of truth for every model version, what data and code produced it, and how it scored on your eval suite. Promotion is the gated path from a registered candidate to live serving: pass the gates, soak in shadow or canary, then swap an alias so traffic moves atomically and rollback is one step.🔁 MLOps & LifecycleSign in
Core
CI/CD for ModelsModel CI/CD looks like code CI/CD but ships data, weights, and prompts together, and its merge gate is an eval suite against a golden set, not a passing unit test. The pipeline trains, evaluates, registers, soaks in shadow or canary, then promotes, with every input versioned so any release is reproducible.🔁 MLOps & LifecycleSign in
Core
Model MonitoringModel monitoring is watching a deployed model's health the way you watch a service: prediction distributions, input drift, latency, error and abstain rates, and the business metric the model is supposed to move. The skill interviewers test is triage: telling a model problem apart from a data or pipeline problem, and knowing which signal fires first.🔁 MLOps & LifecycleSign in
Advanced
Feature StoresA feature store is a central place that computes a feature once and serves it to both training (offline, batch) and serving (online, low-latency) from the same definition, which kills the most common production bug in ML: train/serve skew. It also handles point-in-time correctness so backfills do not leak the future. The honest catch is that most early-stage teams do not need one.🔁 MLOps & Lifecycle🔒 Premium
Advanced
Model Versioning and MigrationThe model under your application changes whether or not you asked. Providers ship new snapshots, deprecate old ones and give you a window, so a deployment that pinned nothing has quality moving beneath it and a deployment that pinned everything eventually gets a forced cutover on someone else's schedule.🔁 MLOps & Lifecycle🔒 Premium
