Benchmarks · Knowledge & factuality
IFEval
also: Instruction-Following Eval, Instruction-Following Evaluation for Large Language Models
Whether a model reliably follows simple, mechanically checkable instructions bundled into a prompt — a word count, a required keyword, a formatting rule — rather than merely producing a plausible-sounding response.
Google ResearchReleased 14 November 2023Live
Judging whether a model followed an instruction usually means judging quality — did it write well, was the tone right — which is exactly the kind of subjective call that resists automated scoring. Google Research published IFEval in November 2023 to sidestep that problem: around 500 prompts, each built from one or more of 25 “verifiable instruction” types — a word-count range, a required keyword, an output format, a capitalisation rule — chosen specifically because a script can check compliance without ambiguity.
The launch paper’s own comparison showed a wide spread even among capable models. GPT-4 followed 76.9% of prompts exactly on the strict prompt-level metric (83.6% at the more forgiving instruction level, where partial credit counts individual constraints within a prompt separately), while PaLM 2-S managed only 43.1%. The gap mattered because it measured something knowledge tests like MMLU do not: whether a model that clearly knows the right content will actually do what it is told with it.
IFEval became one of the standard components of Hugging Face’s Open LLM Leaderboard and a routine citation in instruction-tuned model releases through the mid-2020s. Because its checks are mechanical rather than model-graded, it has been comparatively resistant to the grading drift that affects benchmarks scored by another LLM. Frontier models released since 2023 are widely reported to clear the original GPT-4 baseline comfortably, though a specific up-to-date leaderboard figure was not independently confirmed here.
The set
Around 500 prompts (541 in the released set), each combining one or more of 25 kinds of 'verifiable instruction' — constraints like word-count ranges, required keywords, output format, capitalisation or punctuation rules — chosen because a script, not a human or another model, can check compliance without ambiguity.
Example
Individual verifiable-instruction types from the paper include word-count ranges ('write 450 to 500 words'), output-format rules ('your entire output should be in JSON format'), and structural requirements such as wrapping a title in double square brackets, e.g. '[[ title ]]'; a real prompt combines several of these into one instruction set a script can check mechanically.arxiv.org
Where it stands
A core benchmark in Hugging Face's Open LLM Leaderboard; frontier models released since 2023 are widely reported to clear the paper's own GPT-4 baseline comfortably, though a specific up-to-date cross-model leaderboard figure was not independently confirmed here.