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 save 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 produces a wrong final answer, 'the model was bad' is not a diagnosis. You need to see every step. Here is the tracing layer that turns a black box into something debuggable.Open full answer →
88Your vector search returns high similarity scores but irrelevant results. How do you debug it?▼hardNewGleanCohereElastic◆ premiumA 0.87 cosine score on a chunk that answers nothing is not a bug in your vector database. It is the embedding model telling you exactly what it was trained to tell you. Here is how to read that signal instead of thresholding it away.Open full answer →
02Explain the bias-variance tradeoff, and how you diagnose and fix high bias vs high variance.▼medium★ EssentialAmazonGoogleMeta2 repliesunlockedThe most common ML fundamentals question, and a quiet seniority test: anyone recites the definition, but can you decompose the error and turn 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' has 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' has three very different causes and three different fixes. Retraining a model that's actually broken by a pipeline bug just bakes in garbage. Here is the triage order.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 wrong, lineage tells you which upstream table to blame. The signal is distinguishing table vs column lineage and knowing the three ways to capture it: 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 culprit is almost always a feature computed differently in 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 wedges with no error at 3am is a special kind of pain. The causes are a short, recurring list. Here is the systematic way to find which one bit you.Open full answer →