55Your retriever misses the relevant document entirely. How do you debug and fix low recall?▼hardGleanCohereDatabricks2 replies◆ premiumWhen the right answer isn't even in the top-50, the generator can't rescue you. Low recall has a short list of usual suspects. Here is the order to check them so you fix the cause, not a symptom.Open full answer →
57Your multi-agent system fails silently and you can't tell which step broke. How do you trace and debug it?▼hardCognitionSierraDecagon2 replies◆ premiumWhen a chain of LLM calls and tools yields a wrong final answer, 'the model was bad' is not a diagnosis. You need visibility into every step. Here is the tracing layer that turns a black box into something debuggable.Open full answer →
90Your RAG system gives bad answers. Walk me through how you localize the failure.▼mediumGleanDatabricksCohere◆ premiumSix stages, six isolating experiments, six metrics. The candidates who score do not guess at knobs, they bisect the pipeline, and they instrument the rungs nobody else does: ranking, context assembly, generation.Open full answer →
02Explain the bias-variance tradeoff, and how you diagnose and fix high bias vs high variance.▼medium★ EssentialAmazonGoogleMeta2 repliesunlockedThe most frequent ML fundamentals question, and a subtle seniority check: anyone can repeat the definition, but can you break down the error and convert it into a concrete debugging plan?Open full answer →
81Your training loss is oscillating, plateauing, or diverging. How do you debug it?▼mediumGoogleMetaNVIDIA1 replies◆ premium'The model won't train' comes down to a short list of usual suspects, each with a distinctive loss-curve signature. The shape of the curve names the bug before you touch a single hyperparameter. Here is how to read it.Open full answer →
86Your production model decayed. Is it data drift, concept drift, or a pipeline bug, and how do you tell them apart?▼hardDatabricksMetaAmazon2 replies◆ premium'The model got worse' can mean three very different things with three different fixes. Retrain a model that a pipeline bug actually broke and you just bake in garbage. Here is the order to triage it in.Open full answer →
52What is data lineage, and how do you capture it across a pipeline at table and column level?▼mediumDatabricksSnowflakeLinkedIn1 replies◆ premiumWhen a metric looks off, lineage points you to the upstream table at fault. The signal is separating table from column lineage and knowing the three capture methods: SQL parsing, runtime hooks, and metadata APIs.Open full answer →
28Your model scores well offline but worse online, and you suspect training-serving skew. How do you find it?▼hardGoogleMetaDatabricks3 replies◆ premiumSame model, two answers: clean offline, ugly online. The cause is almost always a feature computed differently across the two paths. Here is the diff-based hunt that localizes it to a single column.Open full answer →
38Your distributed training job hangs or crashes intermittently. How do you debug it?▼hardMetaNVIDIAOpenAI2 replies◆ premiumA 256-GPU job that freezes with no error at 3am is a special kind of pain. The causes come from a short, recurring list. Here is the systematic way to identify which one hit you.Open full answer →