Metrics & Scoring#

Approaches used to quantify LLM and/or agent performance across the benchmarks and customized evaluations.


accuracy#

Definition: also known as precision; percentage of correct predictions made by an LLM; foundational to evaluation, the most widely reported scoring metric in benchmarks and/or leaderboards; paired with recall and combined into the F1 score

Purpose: serves as the primary quantitative metric across classification; provides a single number for comparing how often an LLM produces a correct answer

Example: a benchmark with 100 questions where an LLM answers 93 correctly yields 93% accuracy

Related Terms: benchmark, evaluation, exact match, F1 score, recall

Source: IBM: “What Are LLM Benchmarks?” by Rina Diane Caballar, Cole Stryker


bias and fairness score#

Definition: evaluation metric detecting disparities in AI decision-making across different user groups; part of ethical and responsible AI evaluation

Purpose: used to identify and mitigate systematic favoritism or discrimination in agent outputs, ensuring decisions do not disadvantage particular groups

Related Terms: accuracy, benchmark, evaluation, policy adherence rate, prompt injection vulnerability

Source: IBM: “What is AI agent evaluation?” by Cole Stryker, Michal Schmueli-Scheuer


BLEU#

Definition: acronym for Bilingual Evaluation Understudy; one of the canonical automated metrics used to score LLM output on translation-style semantic meaning; evaluates machine translation by computing matching n-grams - sequences of n adjacent text symbols - between an LLM’s predicted translation and a human-produced translation

Purpose: provides a lower-cost alternative to ground-truth-based evaluation; complements human evaluation of coherence, relevance and semantic meaning

Related Terms: benchmark, evaluation, exact match, ground truth, ROUGE

Source: IBM: “What Are LLM Benchmarks?” by Rina Diane Caballar, Cole Stryker


conversational flow#

Definition: interaction metric evaluating an AI’s ability to maintain coherent and meaningful conversations; part of interaction and user experience evaluation for chatbots and virtual assistants

Purpose: assesses whether an agent sustains natural, on-topic dialogue across turns, informing how well it serves conversational-interface use cases

Related Terms: benchmark, engagement rate, evaluation, task completion rate

Source: IBM: “What is AI agent evaluation?” by Cole Stryker, Michal Schmueli-Scheuer


cost-efficiency#

Definition: evaluation metric measuring the computational resources required relative to task performance; factors include token usage, API calls, processing time and energy consumption

Purpose: increasingly important as agents scale to production, helping teams balance performance against cost; highlights the trade-off that higher accuracy often requires higher costs

Related Terms: benchmark, evaluation, latency, task completion rate


CSAT#

Definition: abbreviation for Customer Satisfaction score; interaction metric measuring how satisfied users are with a product and/or agent responses

Purpose: typically gathered through post-interaction surveys, giving direct feedback on whether responses meet user expectations

Related Terms: conversational flow, engagement rate, evaluation, task completion rate

Source: IBM: “What is CSAT and how to calculate it?”


Discriminability Score#

Definition: metric used to filter benchmark datasets by identifying tasks that separate a good response from a bad one; supports building lean, custom benchmarks that provide a stronger signal than large, generic ones

Purpose: intends to reduce test size while maintaining evaluation accuracy; creates a tighter, faster regression suite by removing redundant questions

Example: a team prunes hundreds of redundant questions down to the edge cases and reasoning tasks that actually differentiate its application

Related Terms: benchmark, evaluation, golden dataset, regression testing

Source: HumanSignal, Label Studio: “LLM Evaluation vs. LLM Benchmarking”


engagement rate#

Definition: interaction metric tracking how often users interact with a system; part of interaction and user experience evaluation

Purpose: signals how frequently and consistently users engage with a product and/or system, helping assess whether it retains interest and delivers value over time

Related Terms: conversational flow, CSAT, evaluation, task completion rate

Source: Leanware: “Agent Evaluation Frameworks: Methods, Metrics & Best Practices”


error rate#

Definition: measures the percentage of incorrect outputs or failed operations, tracked alongside success and task completion rates

Purpose: provides an inverse view of success, helping teams quantify failures and failed operations

Related Terms: benchmark, evaluation, function calling evaluation, task completion rate

Source: IBM: “What is AI agent evaluation?” by Cole Stryker and Michal Schmueli-Scheuer


exact match#

Definition: common ground truth metric for generative tasks; proportion of an LLM’s predictions that match the expected answer exactly

Purpose: valuable criterion for translation and question-answering benchmarks; stricter than semantic similarity metrics

Related Terms: accuracy, benchmark, BLEU, evaluation, ground truth, ROUGE

Source: IBM: “What Are LLM Benchmarks?” by Rina Diane Caballar, Cole Stryker


F1 score#

Definition: common combined metric in classsification and retrieval evaluation; blends accuracy and recall into a single measure; treats the two as equally weighted to balance false positives and false negatives

Purpose: provides a single 0-1 score where 1 signifies excellent recall and precision, useful when both false positives and false negatives matter

Related Terms: accuracy, benchmark, evaluation, recall

Source: IBM: “What Are LLM Benchmarks?” by Rina Diane Caballar, Cole Stryker


Flesch–Kincaid readability tests#

Definition: metric designed to indicate how difficult a passage in English is to understand; score reflects the U.S. grade level needed to comprehend the text

Purpose: quantifies output readability for user-facing text, complementing metrics that measure factual or semantic quality

Related Terms: Gunning fog index


Gunning fog index#

Definition: readability test that estimates the years of formal education needed to understand text on first reading

Purpose: a score of 12 indicates high school senior level, giving teams a plain-language benchmark for output complexity

Related Terms: Flesch–Kincaid readability tests


latency#

Definition: evaluation metric measuring the time taken for an AI agent or system to process and return results; an important resource-efficiency concern alongside cost

Purpose: critical when AI must deliver real-time, contextually accurate responses, since slow response times undermine interactive and production use cases

Related Terms: cost-efficiency, evaluation, task completion rate

Source: Leanware: “Agent Evaluation Frameworks: Methods, Metrics & Best Practices”


parameter value grounding#

Definition: semantic function-calling metric based on LLM-as-a-judge that verifies every parameter value is directly derived from the user’s text, the context history, or API specification defaults

Purpose: detects fabricated or unsupported argument values, checking that the agent’s parameter choices are grounded in available context rather than invented

Related Terms: function calling evaluation, LLM-as-a-Judge, semantic evaluation, unit transformation


pass@k#

Definition: code generation evaluation metric measuring the probability that at least one of k generated solutions passes a problem’s unit tests

Purpose: captures functional correctness across multiple generated candidates, used by benchmarks such as HumanEval

Related Terms: benchmark, evaluation, functional correctness, HumanEval, MBPP

Source: arXiv: “Evaluating Large Language Models Trained on Code” by Chen et al.


perplexity#

Definition: measures how good an LLM is at prediction; statistical measure of LLM quality

Purpose: the lower an LLM’s perplexity score, the better it is at comprehending a task

Related Terms: accuracy, benchmark, BLEU, evaluation, exact match, F1 score, ROUGE

Source: IBM: “What Are LLM Benchmarks?” by Rina Diane Caballar, Cole Stryker


policy adherence rate#

Definition: evaluation metric measuring the percentage of responses that comply with predefined organizational or ethical policies; part of ethical and responsible AI evaluation

Purpose: verifies agents respect enterprise guardrails and compliance requirements, flagging behaviors that deviate from documented policy

Related Terms: benchmark, bias and fairness score, evaluation, prompt injection vulnerability

Source: IBM: “What is AI agent evaluation?” by Cole Stryker, Michal Schmueli-Scheuer


prompt injection vulnerability#

Definition: ethical and security evaluation metric measuring the success rate of adversarial prompts that alter an agent’s intended behavior; safety-oriented metric tracked alongside functional quality, bias and fairness score, and/or policy adherence rate

Purpose: identifies susceptibility to manipulation or misuse, forming part of ethical, responsible AI, and security evaluation

Related Terms: bias and fairness score, evaluation, functional correctness, policy adherence rate

Source: IBM: “What is AI agent evaluation?” by Cole Stryker, Michal Schmueli-Scheuer


recall#

Definition: also called sensitivity rate; evaluation metric quantifying correct predictions, specifically the number of true positives

Purpose: paired with precision and combined into the F1 score

Related Terms: accuracy, benchmark, evaluation, F1 score

Source: IBM: “What Are LLM Benchmarks?” by Rina Diane Caballar, Cole Stryker


ROUGE#

Definition: acronym for Recall-Oriented Understudy for Gisting Evaluation; metric for evaluating text summarization; ranges between 0 - 1, with higher scores indicating higher similarity between automatically produced summary and the human-produced reference

Purpose: ROUGE-N performs similar n-gram calculations to BLEU for summaries; ROUGE-L computes the longest common subsequence between the predicted summary and the human-produced summary

Related Terms: accuracy, BLEU, exact match, F1 score, recall, perplexity

Sources:


task completion rate#

Definition: evaluation metric measuring how effectively an agent or system helps users complete a task

Purpose: used for task-specific and interaction/user-experience evaluation; closely related to success rate, the proportion of tasks or goals completed correctly

Related Terms: benchmark, error rate, evaluation, functional correctness, function calling evaluation

Source: IBM: “What is AI agent evaluation?” by Cole Stryker, Michal Schmueli-Scheuer


unit transformation#

Definition: semantic function-calling metric based on LLM-as-a-judge that verifies unit or format conversions between values in the context and parameter values in the tool call

Purpose: detects incorrect conversions such as wrong currency, temperature scale, or measurement unit, ensuring the agent transforms values correctly when invoking tools

Related Terms: function calling evaluation, LLM-as-a-Judge, parameter value grounding, semantic evaluation

Source: IBM: “What is AI agent evaluation?” by Cole Stryker, Michal Schmueli-Scheuer


VOC#

Definition: abbreviation for voice of the client; data where people share problems they’re encountering, provide feedback, and seek further help

Purpose: invaluable for service and product improvement, surfacing real user pain points alongside structured metrics like CSAT

Related Terms: CSAT, engagement rate