CoolFace
Datasetpublic

RaspizdAI/QUAD-Bench

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):โ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/RaspizdAI/QUAD-Bench.

sourceHugging Facemitupdated 1mo agoView on Hugging Face
0likes19downloads
Dataset Card

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):

CategoryDescriptionQuestion Range
LogicLogical deductions, conditional statements, syllogisms, and classic riddles.id: 1โ€“25
AttentionPattern recognition, string manipulation, character counting, and detail sensitivity.id: 26โ€“50
MathBasic arithmetic, algebra, probability, geometry, and calculus concepts.id: 51โ€“75
CodeSyntax 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"
}