Dataset Preview
Duplicate
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
Could not read the parquet files: Server disconnected without sending a response.
Error code:   FileSystemError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

prefix_id
string
text_id
string
word_idx
int32
log_probs
list
meco_en_1:0000
meco_en_1
0
[-7.320268630981445,-3.724992513656616,-6.954534530639648,-6.716703414916992,-7.418191909790039,-8.2(...TRUNCATED)
meco_en_1:0001
meco_en_1
1
[-11.875223159790039,-10.991708755493164,-13.388071060180664,-14.981973648071289,-12.556428909301758(...TRUNCATED)
meco_en_1:0002
meco_en_1
2
[-13.7520170211792,-12.331225395202637,-18.4835147857666,-20.8017520904541,-17.351839065551758,-16.5(...TRUNCATED)
meco_en_1:0003
meco_en_1
3
[-12.959285736083984,-11.262744903564453,-15.722393035888672,-16.474674224853516,-15.069942474365234(...TRUNCATED)
meco_en_1:0004
meco_en_1
4
[-11.431954383850098,-10.717072486877441,-19.23162269592285,-20.46063804626465,-16.73375129699707,-1(...TRUNCATED)
meco_en_1:0005
meco_en_1
5
[-14.008371353149414,-12.994966506958008,-18.544374465942383,-22.354211807250977,-16.777612686157227(...TRUNCATED)
meco_en_1:0006
meco_en_1
6
[-14.485989570617676,-12.9600191116333,-18.455745697021484,-19.24136734008789,-16.755077362060547,-1(...TRUNCATED)
meco_en_1:0007
meco_en_1
7
[-11.599907875061035,-10.63149356842041,-17.206857681274414,-16.82066535949707,-15.183815956115723,-(...TRUNCATED)
meco_en_1:0008
meco_en_1
8
[-14.774617195129395,-12.344975471496582,-19.857913970947266,-20.24905014038086,-17.306102752685547,(...TRUNCATED)
meco_en_1:0009
meco_en_1
9
[-15.875951766967773,-12.098936080932617,-17.248998641967773,-18.68483543395996,-15.61091423034668,-(...TRUNCATED)
End of preview.

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

MECO l1W1 GPT-2 rollouts

Status: complete. All 2,119 prefixes, 512 completions each: 1,084,928 rollouts, 727M generated tokens.

GPT-2 (124M, float32, TF32 off) continuations from every word-level prefix of the MECO L1 wave 1 English texts (12 texts, 2,107 words; 2,119 prefixes including the empty and the full-text prefix, so the prefix at word_idx = i is exactly the left context of word i+1). From each prefix, 512 completions are drawn by pure ancestral sampling (temperature 1.0, no top-k/top-p truncation) until EOS (<|endoftext|>) or GPT-2's 1,024-token context limit: 43.5% of completions end in EOS, the rest are right-truncated at the context limit (finish records which). Mean completion length is 670 tokens. Code: github.com/samuki/meco-rollouts (private).

Tables

rollouts/language=en/model=gpt2/temp=1.0/text_id=<id>/data.parquet
prefix_dists/language=en/model=gpt2/text_id=<id>/data.parquet
prefixes/language=en/prefixes.parquet
  • rollouts: one row per completion. prefix_id (<text_id>:<word_idx>), sample (0..511), token_ids (list, includes the final EOS when finish = eos), logprobs (list, fp32 model log-probability of each sampled token, natural log, one per token), text (decoded, EOS stripped), finish (eos | length), n_tokens, sum_logprob, seed, temperature, logprob_source.
  • prefix_dists: the full 50,257-way next-token log-probability vector (float32) at each prefix, i.e. the distribution the first completion token is sampled from.
  • prefixes: maps prefix_id to prefix_text, prefix_token_ids (GPT-2 BPE, no BOS; generation conditions on [BOS] + prefix_token_ids), next_word, n_words.

Full per-step distributions are not stored (petabyte scale) but are exactly recomputable by teacher-forcing the stored token ids in fp32; recompute_dists.py in the code repo does this and cross-checks against the stored sampling-time logprobs (agreement to ~1e-4, fp32 arithmetic noise across devices).

Querying

import duckdb
con = duckdb.connect()
con.sql("CREATE SECRET IF NOT EXISTS hf (TYPE HUGGINGFACE, PROVIDER credential_chain)")
df = con.sql("""
  SELECT prefix_id, count(*) n, avg(n_tokens) len, sum(finish = 'eos') / count(*) eos_rate
  FROM read_parquet('hf://datasets/samuki-hf/meco-rollouts/rollouts/**/*.parquet', hive_partitioning=1)
  GROUP BY prefix_id ORDER BY prefix_id
""").df()

Provenance

Generated 2026-07-20 on ETH Euler RTX 6000 Pro (Blackwell) nodes, 12-shard slurm array, ~37 GPU-hours. Sampling is seeded per (prefix, micro-batch chunk) and every row stores its seed; determinism holds for fixed GPU architecture, float32 with TF32 off, and micro-batch split. Every prefix was verified to hold exactly 512 samples and a valid normalized prefix distribution before upload.

Downloads last month
89