aabbdev commited on
Commit
9a4e88d
·
verified ·
1 Parent(s): 8ed1a34

Redesign dataset card for pretraining, SFT, and SDFT

Browse files
Files changed (1) hide show
  1. README.md +70 -11
README.md CHANGED
@@ -7,26 +7,85 @@ language:
7
  tags:
8
  - synthetic
9
  - state-space-models
 
10
  - sft
11
  - sdft
 
 
12
  configs:
13
  - config_name: default
14
  data_files:
15
  - split: train
16
- path: data/train/*
17
  - split: validation
18
- path: data/validation/*
19
  ---
20
 
21
- # StateBench v1 training corpus
22
 
23
- This is a synthetic, deterministic state-reasoning corpus containing 10000000 canonical rows.
24
- Every row can be viewed as pretraining text, SFT prompt/completion, or TRL on-policy SDFT
25
- prompt/privileged_context without regenerating semantics.
26
 
27
- For SFT select prompt and completion. For TRL SDFT select prompt and privileged_context;
28
- the privileged context is teacher-only and must never be concatenated into the student prompt.
29
 
30
- Generator version: StateBench-v1.0. See dataset_manifest.json for checksums, distributions,
31
- generation configuration and resumable progress. Public training data must not be used as the
32
- official private StateBench evaluation split.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  tags:
8
  - synthetic
9
  - state-space-models
10
+ - pretraining
11
  - sft
12
  - sdft
13
+ size_categories:
14
+ - 10M<n<100M
15
  configs:
16
  - config_name: default
17
  data_files:
18
  - split: train
19
+ path: "data/train/*"
20
  - split: validation
21
+ path: "data/validation/*"
22
  ---
23
 
24
+ <div align="center">
25
 
26
+ # StateBench v1
 
 
27
 
28
+ ### 10 million executable state programs for memory, recurrence, and state control.
 
29
 
30
+ One deterministic corpus. Three training views: **pretraining · SFT · on-policy SDFT**.
31
+
32
+ </div>
33
+
34
+ | Scale | Coverage | Storage | Splits |
35
+ |:--|:--|:--|:--|
36
+ | **10,000,000 rows** | **36 families · M1–M11** | **8.09 GiB · 800 Parquet shards** | **9,949,600 train · 50,400 validation** |
37
+
38
+ StateBench teaches models to execute finite state programs rather than recall facts. A typed program is executed by a deterministic reference evaluator; only then is it rendered into varied textual surfaces.
39
+
40
+ ## Load it
41
+
42
+ from datasets import load_dataset
43
+
44
+ ds = load_dataset("aabbdev/StateBench-v1", split="train", streaming=True)
45
+
46
+ pretrain = ds.select_columns(["text"])
47
+ sft = ds.select_columns(["prompt", "completion"])
48
+ sdft = ds.select_columns(["prompt", "privileged_context"])
49
+
50
+ ## One corpus, three views
51
+
52
+ | Regime | Student input | Training signal |
53
+ |:--|:--|:--|
54
+ | Pretraining | text | Complete causal document |
55
+ | SFT | prompt | completion |
56
+ | SDFT | prompt | privileged_context, visible only to the teacher |
57
+
58
+ > **SDFT contract:** privileged_context contains the verified rendered target completion. Never concatenate it into the student prompt. It is designed for TRL SDFTTrainer teacher conditioning.
59
+
60
+ ## What is inside
61
+
62
+ | Capability | Families |
63
+ |:--|:--|
64
+ | Retain and address | passive retention, capacity, MQAR, multi-token keys, collision resistance |
65
+ | Edit and select | overwrite, erase/reuse, masked edits, selective write/copy, scoped reset |
66
+ | Track dynamics | DFA, Mealy, permutations, monoids, modular counters, finite groups |
67
+ | Adapt online | one-shot binding, remapping, rule switching |
68
+ | Survive long execution | active recurrence, cycles, checkpoints, read/generation pollution |
69
+
70
+ Difficulty is balanced across levels 0, 2, 4, 5, and 6. Family allocation differs by at most one row across the full corpus.
71
+
72
+ ## Canonical columns
73
+
74
+ | Column | Meaning |
75
+ |:--|:--|
76
+ | prompt | Conversational student-facing input |
77
+ | completion | Verified assistant target for SFT |
78
+ | privileged_context | Teacher-only verified solution for on-policy SDFT |
79
+ | text | Prompt and completion serialized for causal pretraining |
80
+ | semantic_fingerprint | Deduplication and semantic identity |
81
+ | family, macro, level | Curriculum controls |
82
+ | surface_json, transformation_ids | Rendering provenance |
83
+
84
+ ## Trust and scope
85
+
86
+ - Every oracle is produced by the reference evaluator, not written by a teacher model.
87
+ - Programs are deduplicated by semantic fingerprint.
88
+ - dataset_manifest.json records generation parameters, distributions, shard sizes, and SHA-256 checksums.
89
+ - The public corpus is training data, not the private StateBench evaluation split.
90
+
91
+ Generated with **StateBench-v1.0**. The canonical dataset contains both SFT and SDFT fields so no semantic example is duplicated between training formats.