AIInterviewTraining logoAIInterview/Training

calibration

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

26 questions · 6 unlocked for you

Concepts behind "calibration"

The curriculum that explains the ideas these questions test.

Foundational
📊 Evaluation & ML Foundations
Linear and Logistic RegressionLinear regression fits a weighted sum of features to a continuous target by minimizing squared error; logistic regression squashes that same linear score through a sigmoid and fits it with cross-entropy to yield a probability. Interviews probe these because they are the baseline every model is measured against, the coefficients read directly, and logistic regression is still the production default when you need a calibrated binary score.
Foundational
📊 Evaluation & ML Foundations
LLM-as-a-JudgeWhen outputs are open-ended (summaries, chat answers, generated code), there is no exact match to score against, so you enlist a strong LLM to grade them against a rubric. It scales evaluation far past human review, but it is a fallible proxy with known biases (position, verbosity, self-preference), so you calibrate it against human labels and design it carefully. AI, ML, and GenAI engineer interviews probe it because evaluating generative output is the hard part of shipping LLMs, and 'we eyeballed it' does not scale.
Core
📊 Evaluation & ML FoundationsSign in
Calibration and UncertaintyA model is calibrated when its confidence lines up with reality: among the predictions it makes at 0.8, roughly 80% turn out correct. Modern neural nets (and LLMs) tend to be overconfident, so raw scores are not trustworthy probabilities. You correct it post-hoc with temperature scaling, Platt scaling, or isotonic regression on a held-out set, and you measure it with reliability diagrams and Expected Calibration Error. AI, ML, and GenAI engineer interviews probe it because any decision made on a probability (thresholds, expected value, abstention) is only as good as the calibration.