llm as judge
AI, ML & GenAI interview questions tagged llm as judge, across every topic.
13 questions · 2 unlocked for you
Concepts behind "llm as judge"
The curriculum that explains the ideas these questions test.
Foundational
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 converts 'it feels better' into a number, catches regressions before users do, and lets you iterate fast. AI, ML, and GenAI engineer 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.📊 Evaluation & ML Foundations
Foundational
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.📊 Evaluation & ML Foundations
Core
Agent Evaluation and Trajectory AnalysisAgent evaluation grades the whole execution trace (tool calls, observations, state changes, recovery) instead of the final answer alone, because a right answer can mask a broken process and a wrong answer can trace to one bad step in an otherwise sound run. It combines outcome metrics with process metrics such as tool-selection accuracy and step efficiency. AI, ML, and GenAI engineer interviews test it because scoring agents is harder than scoring RAG, and most teams miss it by checking only the last message.🤖 Retrieval & AgentsSign in
