CoolFace
Datasetpublic

liujin99/quadmix-core-bmk-v3

CORE-BMK v3 Validation Set Benchmark-aligned validation set for QuaDMix proxy model, designed based on 1M proxy model learnability rather than answer ratio or sample count. Motivation Analysis of BMK-v2 revealed critical issues: 54% of data came from bigbench_qa_wikidata (weak signal: 7-char entity answers) Selection based on Ans% > 10% included symbolic tasks with zero natural language signal Tasks requiring deep reasoning, reading comprehension, or knowledge… See the full description on the dataset page: https://huggingface.co/datasets/liujin99/quadmix-core-bmk-v3.

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes40downloads
Dataset Card

CORE-BMK v3 Validation Set

Benchmark-aligned validation set for QuaDMix proxy model, designed based on 1M proxy model learnability rather than answer ratio or sample count.

Motivation

Analysis of BMK-v2 revealed critical issues:

  • —54% of data came from bigbench_qa_wikidata (weak signal: 7-char entity answers)
  • —Selection based on Ans% > 10% included symbolic tasks with zero natural language signal
  • —Tasks requiring deep reasoning, reading comprehension, or knowledge recall cannot be learned by 1M proxy

Key insight: Even if 1M proxy cannot "solve" a task, loss has discriminative power if the task's text vocabulary/topic/style distribution is sensitive to training data quality.

Design Principle: 1M Proxy Learnability

A 1M-parameter proxy model (2-layer transformer, 256 dim) can learn:

  • —Word frequency distributions
  • —Simple syntactic patterns
  • —Topic/domain distributions
  • —Surface text style and formatting

A 1M proxy cannot learn:

  • —Multi-step logical reasoning
  • —Deep reading comprehension
  • —Long-range dependencies (>512 tokens)
  • —Factual knowledge recall

Selection criterion: Include only tasks whose text distribution a 1M proxy can learn, regardless of whether it can "solve" the task.

Task Selection

10 Tasks Selected (by 1M learnability)

TaskTypeNAns%1M LearnabilityRationale
hellaswag_zeroshotMC200037.4%StrongNarrative continuation = standard LM task
arc_easyMC200014.7%StrongSimple science QA, learnable vocabulary
piqaMC183864.1%Medium-StrongIntuitive physics, concrete scenarios
lambadaLM01.8%MediumLiterary style sensitivity (excluded: not in eval bundle)
arc_challengeMC117216.7%MediumScience text distribution learnable
winograndeschema126722.5%MediumSimple sentence structure
winogradschema27321.8%MediumSame as winogrande, small N
copaMC10039.1%MediumSimple causal scenarios, small N
openbook_qaMC50025.0%MediumScience scenarios, small N
commonsense_qaMC12216.0%Medium-WeakConcept knowledge, borderline

Note: lambada was planned but not found in the eval bundle, resulting in 9 tasks instead of 10.

11 Tasks Excluded

Reading comprehension / knowledge recall (beyond 1M capacity):

  • —boolq (0.5%): Long passages, yes/no answers
  • —squad (2.2%): Extractive QA, long context
  • —jeopardy (9.9%): Knowledge recall
  • —coqa (0.6%): Conversational QA

Weak signal:

  • —bigbench_qa_wikidata (14.5%): 7-char entity answers, simple fact lookup

Logical reasoning (beyond 1M):

  • —agi_eval_lsat_ar (4.2%): Analytical reasoning

Symbolic / non-natural language (zero NL signal):

  • —bigbench_dyck_languages (1.8%): Bracket sequences
  • —bigbench_repeat_copy_logic (44.5%): Pattern repetition
  • —bigbench_operators (1.5%): Mathematical operators
  • —bigbench_cs_algorithms (3.5%): Algorithmic strings
  • —bigbench_language_id (3.3%): Language identification tokens

Key Differences from v2

Aspectv2 (CORE-BMK)v3 (CORE-BMK)
Selection principleAns% > 10%1M proxy learnability
Tasks109 (lambada missing)
Cap per task20,0002,000
Total docs37,60010,371
bigbenchqawikidataIncluded (54% of data)Excluded (weak signal)
Symbolic tasksIncludedExcluded (zero NL signal)
lambadaExcluded (Ans% = 1.8%)Planned (literary style)

Why Ans% is Not the Selection Criterion

  • —lambada (Ans% = 1.8%): Included in v3 plan because paragraph distribution is learnable
  • —boolq (Ans% = 0.5%): Excluded because reading comprehension is beyond 1M capacity
  • —bigbench_repeat_copy_logic (Ans% = 44.5%): Excluded because it's symbolic, not natural language

The deciding factor is whether 1M can learn the text distribution, not whether it can solve the task.

Why N (Sample Count) is Not a Core Issue

Small N tasks naturally get lower weight in val_loss calculation:

  • —copa (N=100): Only 1% weight in val_loss
  • —hellaswag (N=2000): 19% weight in val_loss

Task instability has minimal impact when N is small. The focus should be on quality of signal, not quantity.

Loss Strategy

Full-sequence loss: All non-padding tokens contribute to the loss (loss_mask = True for all tokens).

This allows the proxy model to learn the overall distribution of benchmark text, similar to the QuaDMix paper's BMK approach.

Statistics

MetricOpenHermes-10kCORE-22tasks v1CORE-BMK v2**CORE-BMK v3**
Documents10,00046,92637,60010,371
Non-padding tokens2,235,4986,166,0031,237,907435,065
Loss tokens2,235,498317,5611,237,907435,065
Loss tokens/doc223.56.832.941.9
Loss% of non-padding100%5.2%100%100%
File size (.pt)176 MB825 MB661 MB182 MB

v3 provides higher loss tokens/doc (41.9 vs 32.9) with much smaller footprint, focusing on quality over quantity.

Files

  • —core_bmk_10tasks_v3_tokenized.pt (182 MB): PyTorch tensor format for proxy model validation
  • —token_ids: LongTensor [10371, 2048] (padded)
  • —loss_mask: BoolTensor [10371, 2048] (True for all non-padding tokens)
  • —task_labels: list[str] (per-doc task label)
  • —metadata: dict (generation config and task stats)
  • —core_bmk_10tasks_v3.parquet (13.8 MB): Pandas-readable format for inspection
  • —Columns: text, task, num_tokens, num_loss_tokens

Usage

python
import torch

data = torch.load("core_bmk_10tasks_v3_tokenized.pt", weights_only=True)
token_ids = data["token_ids"]      # [10371, 2048]
loss_mask = data["loss_mask"]      # [10371, 2048]
task_labels = data["task_labels"]  # list of 10371 strings

Or with pandas:

python
import pandas as pd

df = pd.read_parquet("core_bmk_10tasks_v3.parquet")
print(df["task"].value_counts())

Generation

bash
python scripts/validation_set/prepare_core_bmk_v3.py \
    --eval-bundle /path/to/eval_bundle \
    --output-dir data \
    --num-samples-per-task 2000

Comparison with v1 and v2

Aspectv1 (CORE-22tasks)v2 (CORE-BMK)v3 (CORE-BMK)
Tasks21109
Selection principleAll CORE tasksAns% > 10%1M learnability
Loss strategycontinuation-onlyfull-sequencefull-sequence
Avg answer ratio5.7%30.5%27.5%
Loss tokens317,5611,237,907435,065
Loss tokens/doc6.832.941.9
Weak signal tasksManybigbenchqawikidata (54%)None
Symbolic tasks510

v3 eliminates weak-signal and non-NL tasks, focusing purely on what 1M proxy can learn from text distribution.

License

Derived from public benchmark datasets. Individual task licenses vary.