AIInterviewTraining logoAIInterview/Training

drift

AI, ML & GenAI interview questions tagged drift, across every topic.

8 questions · 0 unlocked for you

Concepts behind "drift"

The curriculum that explains the ideas these questions test.

Foundational
🔁 MLOps & Lifecycle
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.
Core
📊 Evaluation & ML FoundationsSign in
The Computer Vision PipelineA production CV system is a chain: ingest and version images, preprocess and augment, fine-tune a pretrained backbone, attach a task head, evaluate with sliced metrics, post-process, then serve and monitor. The invariant that divides working systems from broken ones is train/serve consistency: the exact resize, color space, and normalization have to match at training and inference. AI, ML, and GenAI engineer interviews probe this because most CV failures live at the preprocessing seam, not in the architecture.
Core
⚙️ System Design for AI in ProductionSign in
User Feedback Loops and the Data FlywheelA data flywheel captures implicit and explicit user feedback in production, feeds it into eval sets and fine-tuning data, and uses the improved model to draw more usage that produces more feedback. The hard part is not the loop but the signal quality: implicit signals are biased and explicit ratings are sparse and gameable, so naive feedback ingestion teaches the model the wrong thing. AI, ML, and GenAI engineer interviews probe it because a candidate who treats every thumbs-down as ground truth will build a system that degrades while looking like it is learning.
Core
🔁 MLOps & LifecycleSign in
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.