AppliedAIPrep logoAppliedAI/Prep

llm as judge

Applied AI interview questions tagged llm as judge, across every topic.

11 questions · 2 unlocked for you

Concepts behind "llm as judge"

The curriculum that explains the ideas these questions test.

Foundational
📊 Evaluation & ML Foundations
Eval-Driven Development and Golden DatasetsYou cannot improve an LLM system you cannot measure, so the first thing to build is an evaluation: a golden dataset of representative inputs with expected behavior, plus metrics, that you run on every change. This turns 'it feels better' into a number, catches regressions before users do, and lets you iterate quickly. Applied-AI interviews probe it because teams that ship reliable LLM features evaluate continuously, and 'we tried some prompts and it looked good' is the anti-pattern.
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
🤖 Retrieval & AgentsSign in
Agent Evaluation and Trajectory AnalysisAgent evaluation scores the full execution trace (tool calls, observations, state changes, recovery) rather than only the final answer, because a correct answer can hide a broken process and a wrong answer can come from one bad step in an otherwise sound run. It pairs outcome metrics with process metrics like tool-selection accuracy and step efficiency. Applied AI interviews probe it because grading agents is harder than grading RAG, and most teams get it wrong by only checking the last message.