Dataset Viewer
Auto-converted to Parquet Duplicate
id
stringlengths
5
5
level
int64
1
1
category
stringclasses
3 values
question
stringlengths
14
62
choices
listlengths
4
4
answer
stringclasses
4 values
l1_01
1
arithmetic
What is 7 + 8?
[ "13", "14", "15", "16" ]
C
l1_02
1
common-sense
Which animal is commonly called 'man's best friend'?
[ "Cat", "Dog", "Horse", "Parrot" ]
B
l1_03
1
common-sense
Mixing blue and yellow paint gives which color?
[ "Green", "Orange", "Purple", "Brown" ]
A
l1_04
1
common-sense
How many days are there in a week?
[ "5", "6", "7", "8" ]
C
l1_05
1
knowledge
What is the capital of France?
[ "London", "Berlin", "Paris", "Madrid" ]
C
l1_06
1
arithmetic
You have 3 apples and buy 2 more. How many apples do you have?
[ "4", "5", "6", "7" ]
B
l1_07
1
common-sense
Which season comes right after summer?
[ "Winter", "Spring", "Monsoon", "Autumn" ]
D
l1_08
1
knowledge
What do bees make?
[ "Silk", "Honey", "Wax paper", "Milk" ]
B
l1_09
1
knowledge
How many legs does a spider have?
[ "6", "8", "10", "12" ]
B
l1_10
1
arithmetic
What is 10 x 10?
[ "10", "20", "100", "1000" ]
C
l1_11
1
arithmetic
Which number comes right after 9?
[ "9", "10", "11", "12" ]
B
l1_12
1
knowledge
Which fruit is long and yellow?
[ "Apple", "Grape", "Banana", "Pear" ]
C
l1_13
1
knowledge
How many minutes are in one hour?
[ "30", "45", "60", "90" ]
C
l1_14
1
knowledge
Which of these is a color of the rainbow?
[ "Gray", "Orange", "Brown", "Black" ]
B
l1_15
1
common-sense
If you feel cold, what would you most likely put on?
[ "Swimsuit", "Coat", "Sunglasses", "Flip-flops" ]
B
l1_16
1
arithmetic
What is 9 - 4?
[ "3", "4", "5", "6" ]
C
l1_17
1
knowledge
Which animal says 'moo'?
[ "Pig", "Cow", "Sheep", "Goat" ]
B
l1_18
1
knowledge
Which season is usually the coldest?
[ "Spring", "Summer", "Autumn", "Winter" ]
D
l1_19
1
knowledge
How many wheels does a bicycle have?
[ "1", "2", "3", "4" ]
B
l1_20
1
common-sense
Which of these do you drink?
[ "Bread", "Juice", "Soap", "Rocks" ]
B
l1_21
1
arithmetic
What is 5 + 5?
[ "5", "10", "15", "20" ]
B
l1_22
1
knowledge
Which of these is a farm animal?
[ "Penguin", "Chicken", "Dolphin", "Eagle" ]
B
l1_23
1
knowledge
What color is a ripe banana?
[ "Red", "Green", "Blue", "Yellow" ]
D
l1_24
1
arithmetic
How many hours are in half a day?
[ "6", "10", "12", "24" ]
C
l1_25
1
knowledge
Where do fish live?
[ "In trees", "In the sky", "In water", "In the desert" ]
C
l1_26
1
arithmetic
What is 3 + 3?
[ "5", "6", "7", "8" ]
B
l1_27
1
knowledge
Which one is used to tell the time?
[ "A plate", "A clock", "A shoe", "A book" ]
B
l1_28
1
knowledge
What do people breathe?
[ "Water", "Air", "Sand", "Fire" ]
B
l1_29
1
knowledge
Which shape has three sides?
[ "Circle", "Square", "Triangle", "Star" ]
C
l1_30
1
knowledge
What is the first letter of the English alphabet?
[ "A", "B", "C", "D" ]
A

LadderBench Hero Cover

LadderBench

A graded capability ladder for evaluating (large) language models: 150 multiple-choice questions organized in 5 difficulty levels (30 each), strictly ordered from easy to expert. Because every level is scored separately, LadderBench shows where a model's abilities break down, not just an average score - two models with the same overall accuracy can have very different level profiles.

Motivation

Averaged benchmark scores hide useful structure: a model can score 70% by acing easy questions and guessing on hard ones, or by being uniformly mediocre. LadderBench's ladder design exposes that difference:

Level Name What it probes Example
1 easy basic facts, single-step arithmetic "What is 7 + 8?"
2 basic everyday knowledge, word problems, gentle traps "Which month has at least 28 days?"
3 intermediate reading comprehension, applied reasoning, classic traps bat & ball ($0.05), lily pads (day 29)
4 hard multi-step math, sequences, work rates, percentages clock-angle 7.5°, chicken/rabbit legs
5 expert competition math, logic puzzles 2^50 mod 7, trailing zeros of 100!, knights & knaves

Expected behavior of a healthy model: a roughly monotonic decline from level 1 to level 5. A model that scores better on level 5 than level 4 is a signal of noise (too few samples) or a poorly calibrated level - which is exactly what this design is meant to catch.

Data format

One JSON object per line (JSONL), identical schema in every file:

{
  "id": "l5_12",
  "level": 5,
  "category": "math",
  "question": "How many trailing zeros does 100! (100 factorial) have?",
  "choices": ["10", "21", "24", "25"],
  "answer": "C"
}

Fields:

  • id - stable unique identifier (l<level>_<nn>)
  • level - 1..5
  • category - arithmetic / knowledge / common-sense / reading / math / logic / sequence / probability / trick / reasoning / safety
  • question - the prompt shown to the model (passages are embedded in the text)
  • choices - exactly 4 answer options, presented to the model as (A)-(D)
  • answer - the gold letter, one of A/B/C/D

Splits

File Rows Level
level1_easy.jsonl 30 1 easy
level2_basic.jsonl 30 2 basic
level3_intermediate.jsonl 30 3 intermediate
level4_hard.jsonl 30 4 hard
level5_expert.jsonl 30 5 expert

Evaluation protocol

The recommended protocol (implemented in the standalone runner):

  1. Present the question with options lettered (A)-(D); instruct the model to answer with the letter only.
  2. Parse the selected letter from the response (robust to "(B)", "B.", etc.).
  3. Score 1.0 for an exact letter match, else 0.0; report per-level accuracy.
  4. Use temperature 0 (greedy) for reproducibility.

Important: the random-guessing baseline is 25% (4 options). With 30 questions per level, each question is worth ~3.3 percentage points - treat per-level gaps under ~10 points cautiously and report the guessing baseline alongside results.

Standalone runner

This folder ships run_ladderbench.py, a zero-dependency runner (Python 3.8+ standard library only) so anyone can evaluate any model on LadderBench without installing anything else. It works with any OpenAI-compatible chat endpoint:

# Ollama (default endpoint)
python run_ladderbench.py --model qwen2.5:3b-instruct-q4_K_M

# LM Studio
python run_ladderbench.py --model my-model --base-url http://127.0.0.1:1234/v1 --api-key lmstudio

# llama.cpp llama-server
python run_ladderbench.py --model any-name --base-url http://127.0.0.1:8080/v1

# OpenAI / other hosted APIs
python run_ladderbench.py --model gpt-4o --base-url https://api.openai.com/v1 --api-key sk-...

# Quick pass: only hard levels, 5 questions each
python run_ladderbench.py --model <model> --levels 4,5 --limit 5

What it does: letter-answer prompting over every question, robust letter parsing, per-level accuracy table, and a JSON report (results_<model>_<timestamp>.json) containing a full per-question audit trail (prediction, gold, raw output) for error analysis.

Protocol notes:

  • temperature 0 (greedy) by default for reproducibility;
  • prompt asks for the letter only; parsing tolerates "(B)", "B.", etc.;
  • report the 25% guessing baseline next to results;
  • the audit file lets you compute per-category scores too (see category).

Extending / contributing

Add rows to any level file following the schema above (keep ids unique), or create a new level file and register it in the loader. When adding questions: verify the gold answer independently, make distractors plausible, and avoid answer-letter position bias by distributing correct letters across A-D.

License

CC-BY-4.0. Questions are original works written for this benchmark; classic puzzle ideas (bat & ball, lily pads, knights & knaves) are folklore and are rephrased here.

Downloads last month
21