--- license: mit task_categories: - text-generation - other language: - en tags: - synthetic - reasoning - program-execution - tiny-vm - interpretability pretty_name: Tiny-VM Tier 1 (Register Traces) size_categories: - 100K\|null, seed: int, axes: {n: int, k: int}, renders: ["direct"]}` | | `program` | array | List of instruction dicts: `{op: "LOAD"\|"ADD"\|..., args: [...], label?: str, target?: str}` | | `trace` | object | `{steps: [{pc: int, regs: [int×8]}, ...], output: [int, ...], halted: bool}` | | `renders` | object | `{direct: {input_ids: [int], target_ids: [int], input_text: str, target_text: str}}` | The vocabulary is the project's custom 64-token vocabulary (see `tinyvm.tokeniser`). Token 0 is ``, registers are `R0..R7`, etc. ## Tier 1 axes | Axis | Range / Values | Meaning | |---|---|---| | `n` | uniformly sampled from `[8, 32]` (train); fixed per eval bucket | Program length in instructions | | `k` | uniformly chosen from `{2, 4, 8}` | Number of distinct registers used | Eval buckets are length-stratified at `n ∈ {8, 16, 32, 48, 64, 96, 128}` with `k=4` fixed. The `len_48` through `len_128` buckets test **length generalisation** beyond the training distribution (which tops out at `n=32`) — the `len_128` bucket is 4× the longest training program. ## Reproducibility The dataset is bit-exact reproducible: ```bash git clone https://github.com/mr-siddy/FANC cd FANC pip install -e . python -m tinyvm.data emit --tier tier1 --out data/ --seed 0 python -m tinyvm.data verify --dataset data/tier1 # exit 0 ``` The verify step re-hashes every emitted file's SHA-256 and compares against `manifest.json`. Manifest also records `tinyvm_commit` (git SHA at emit time) so consumers can pin to the exact code that produced the data. ## Provenance - **Project:** FANC — "Latent State as Computer" (research) - **Code:** [github.com/mr-siddy/FANC](https://github.com/mr-siddy/FANC) — `tinyvm/data/` sub-package - **Spec:** `docs/superpowers/specs/2026-05-16-tinyvm-data-pipeline-design.md` - **Parent doc:** `Latent_State_as_Computer.docx` §11.2 (dataset sizes), §17 (Day 3) - **Companion datasets** (to come): `tinyvm-tier0` (counter programs), `tinyvm-tier2` (branched programs with CoT renders) ## License MIT. Use freely.