Leaderboards documentation

About

Hugging Face's logo
Join the Hugging Face community

and get access to the augmented documentation experience

to get started

About

With the plethora of large language models (LLMs) and chatbots being released week upon week, often with grandiose claims of their performance, it can be hard to filter out the genuine progress that is being made by the open-source community and which model is the current state of the art.

We wrote a release blog here to explain why we introduced this leaderboard!

Tasks

📈 We evaluate models on 6 key benchmarks using the Eleuther AI Language Model Evaluation Harness , a unified framework to test generative language models on a large number of different evaluation tasks.

  • IFEval (https://arxiv.org/abs/2311.07911) – IFEval is a dataset designed to test a model’s ability to follow explicit instructions, such as “include keyword x” or “use format y.” The focus is on the model’s adherence to formatting instructions rather than the content generated, allowing for the use of strict and rigorous metrics.
  • BBH (Big Bench Hard) (https://arxiv.org/abs/2210.09261) – A subset of 23 challenging tasks from the BigBench dataset to evaluate language models. The tasks use objective metrics, are highly difficult, and have sufficient sample sizes for statistical significance. They include multistep arithmetic, algorithmic reasoning (e.g., boolean expressions, SVG shapes), language understanding (e.g., sarcasm detection, name disambiguation), and world knowledge. BBH performance correlates well with human preferences, providing valuable insights into model capabilities.
  • MATH (https://arxiv.org/abs/2103.03874) – MATH is a compilation of high-school level competition problems gathered from several sources, formatted consistently using Latex for equations and Asymptote for figures. Generations must fit a very specific output format. We keep only level 5 MATH questions and call it MATH Lvl 5.
  • GPQA (Graduate-Level Google-Proof Q&A Benchmark) (https://arxiv.org/abs/2311.12022) – GPQA is a highly challenging knowledge dataset with questions crafted by PhD-level domain experts in fields like biology, physics, and chemistry. These questions are designed to be difficult for laypersons but relatively easy for experts. The dataset has undergone multiple rounds of validation to ensure both difficulty and factual accuracy. Access to GPQA is restricted through gating mechanisms to minimize the risk of data contamination. Consequently, we do not provide plain text examples from this dataset, as requested by the authors.
  • MuSR (Multistep Soft Reasoning) (https://arxiv.org/abs/2310.16049) – MuSR is a new dataset consisting of algorithmically generated complex problems, each around 1,000 words in length. The problems include murder mysteries, object placement questions, and team allocation optimizations. Solving these problems requires models to integrate reasoning with long-range context parsing. Few models achieve better than random performance on this dataset.
  • MMLU-PRO (Massive Multitask Language Understanding - Professional) (https://arxiv.org/abs/2406.01574) – MMLU-Pro is a refined version of the MMLU dataset, which has been a standard for multiple-choice knowledge assessment. Recent research identified issues with the original MMLU, such as noisy data (some unanswerable questions) and decreasing difficulty due to advances in model capabilities and increased data contamination. MMLU-Pro addresses these issues by presenting models with 10 choices instead of 4, requiring reasoning on more questions, and undergoing expert review to reduce noise. As a result, MMLU-Pro is of higher quality and currently more challenging than the original.

For all these evaluations, a higher score is a better score. We chose these benchmarks as they test a variety of reasoning and general knowledge across a wide variety of fields in 0-shot and few-shot settings.

Results

You can find:

If a model’s name contains “Flagged”, this indicates it has been flagged by the community, and should probably be ignored! Clicking the link will redirect you to the discussion about the model.

Reproducibility

To reproduce our results, here are the commands you can run, our fork of the Eleuther AI Harness (link coming soon!):  lm-eval --model_args="pretrained=<your_model>,parallelize=False,revision=<your_model_revision>,dtype=<model_dtype>" --tasks=leaderboard --batch_size=auto --output_path=<output_path>

Note: You can expect results to vary slightly for different batch sizes because of padding.

Task Evaluations and Parameters

IFEval:

  • Task: “IFEval”
  • Measure: Strict Accuracy at Instance and Prompt Levels (inst_level_strict_acc,none and prompt_level_strict_acc,none)
  • Shots: 0-shot for both Instance-Level Strict Accuracy and Prompt-Level Strict Accuracy

Big Bench Hard (BBH):

  • Overview Task: “BBH”
  • Shots: 3-shot for each subtask
  • Measure: Normalized Accuracy across all subtasks (acc_norm,none)
  • List of subtasks
    • BBH Sports Understanding
    • BBH Tracking Shuffled Objects (Three Objects)
    • BBH Navigate
    • BBH Snarks
    • BBH Date Understanding
    • BBH Reasoning about Colored Objects
    • BBH Object Counting
    • BBH Logical Deduction (Seven Objects)
    • BBH Geometric Shapes
    • BBH Web of Lies
    • BBH Movie Recommendation
    • BBH Logical Deduction (Five Objects)
    • BBH Salient Translation Error Detection
    • BBH Disambiguation QA
    • BBH Temporal Sequences
    • BBH Hyperbaton
    • BBH Logical Deduction (Three Objects)
    • BBH Causal Judgement
    • BBH Formal Fallacies
    • BBH Tracking Shuffled Objects (Seven Objects)
    • BBH Ruin Names
    • BBH Penguins in a Table
    • BBH Boolean Expressions
    • BBH Tracking Shuffled Objects (Five Objects)

Math Challenges:

  • Task: “Math Level 5”
  • Measure: Exact Match (exact_match,none)
  • Shots: 4-shot

Generalized Purpose Question Answering (GPQA):

  • Task: “GPQA”
  • Measure: Normalized Accuracy (acc_norm,none)
  • Shots: 0-shot

MuSR:

  • Overview Task: “MuSR”
  • Measure: Normalized Accuracy across all subtasks (acc_norm,none)
  • MuSR Murder Mysteries: 0-shot
  • MuSR Object Placement: 0-shot
  • MuSR Team Allocation: 0-shot

MMLU-PRO:

  • Task: “MMLU-PRO”
  • Measure: Accuracy (acc,none)
  • Shots: 5-shot
< > Update on GitHub