drift
FDE interview questions tagged drift, across every topic.
5 questions · 0 unlocked for you
Concepts behind "drift"
The curriculum that explains the ideas these questions test.
Core
Observability for AI SystemsYou cannot operate what you cannot see, and an AI system has failure modes a normal service does not: the prompt, the retrieved context, the model output, and the slow drift in quality over time. Observability for AI means logging and tracing every stage of the chain with a shared request ID, so when an answer is wrong you can reconstruct exactly why.⚙️ System Design for AI in ProductionSign in
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 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
Embedding Versions and DriftTwo versions of an embedding model produce unrelated coordinate systems, so a document's old and new vector are no more similar to each other than to a random document. Mixing them in one index cannot raise an error, which is why a half-finished migration returns confident nonsense at full speed.🤖 Retrieval & Agents🔒 Premium
