File size: 1,436 Bytes
8bb3477 285c45a c39b688 8bb3477 d8eb8c5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | ---
license: mit
tags:
- benchmark
task_categories:
- multiple-choice
- question-answering
---
# QUAD-Bench: A Lightweight AI Reasoning & Acuity Benchmark
**QUAD-Bench** is a compact, multiple-choice benchmark dataset designed for quick evaluation of Large Language Models (LLMs). The dataset contains 100 questions evenly distributed across 4 fundamental capabilities, requiring the model to select exactly one correct answer option (**A**, **B**, **C**, or **D**).
---
## π Dataset Structure
The benchmark consists of 100 questions divided into 4 categories (25 questions each):
| Category | Description | Question Range |
| :--- | :--- | :--- |
| **Logic** | Logical deductions, conditional statements, syllogisms, and classic riddles. | `id: 1β25` |
| **Attention** | Pattern recognition, string manipulation, character counting, and detail sensitivity. | `id: 26β50` |
| **Math** | Basic arithmetic, algebra, probability, geometry, and calculus concepts. | `id: 51β75` |
| **Code** | Syntax understanding, algorithm complexities, data structures, and tech fundamentals. | `id: 76β100` |
---
## π JSON Format
Each entry in `dataset.json` follows this simple schema:
```json
{
"id": 1,
"category": "logic",
"question": "If all Bloops are Razzies and all Razzies are Lazzies, then all Bloops are definitely Lazzies.\nA) True\nB) False\nC) Cannot be determined\nD) None of the above",
"answer": "A"
}
``` |