AppliedAIPrep logoAppliedAI/Prep

calibration

Applied AI interview questions tagged calibration, across every topic.

20 questions · 3 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 produce a probability. Interviews probe these because they are the baseline every model is compared against, the coefficients are directly interpretable, 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 use a strong LLM to grade them against a rubric. It scales evaluation far beyond human review, but it is a fallible proxy with known biases (position, verbosity, self-preference), so you calibrate it against human labels and design carefully. Applied-AI 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 if its confidence matches reality: among predictions it makes at 0.8, about 80% are correct. Modern neural nets (and LLMs) are typically overconfident, so raw scores are not trustworthy probabilities. You fix it post-hoc with temperature scaling, Platt scaling, or isotonic regression on a held-out set, and measure it with reliability diagrams and Expected Calibration Error. Applied-AI interviews probe it because any decision made on a probability (thresholds, expected value, abstention) is only as good as the calibration.