winbeau commited on
Commit
c77f968
·
verified ·
1 Parent(s): 33ea9fe

Trim: remove stale smoke/full-history captures; publish six-step README

Browse files
Files changed (1) hide show
  1. README.md +20 -13
README.md CHANGED
@@ -1,21 +1,28 @@
1
  # LingBot-VA Attention Analysis Dataset
2
 
3
- Private dataset repository containing attention-analysis outputs generated on `h100-server` for the RoboTwin task `grab-the-medium-sized-white-mug-rotate-it-place-it-on-the-table-and-hook-it-onto-the-smooth-dark-gray-rack`.
4
 
5
- ## Layout
6
 
7
- - `raw/full-history-10chunks/`: `attn-exp`, 30 layers × 24 heads, 10 chunks, per-CSV logical shape 2400 × 2400.
8
- - `raw/smoke-8gpu-2chunks/`: `attn-exp-8gpu`, compact 480 × 480 smoke run.
9
- - `raw/trajectory-steps-000-001-002/`: three-step trajectory capture from `attn-exp-vv-10-3`.
10
- - `raw/trajectory-6steps/`: six positions `0, 4, 9, 14, 19, 24` from `attn-exp-vv-10-6`; use `summary.json` for shifted scheduler timesteps.
11
- - `derived/density/top-p-0.9/`: per-layer density CSVs computed by `script/compute_attention_density.py`.
12
- - `visualizations/attention-heatmaps/`: representative layer-0/head-0 heatmaps and trajectory contact sheets generated from the raw matrices.
13
- - `visualizations/density/`: layer × step density heatmaps and layer-profile plots.
14
- - `artifacts/videos/`: the two small `demo.mp4` outputs corresponding to the full-history and six-step runs.
15
- - `metadata/`: experiment table, source checkout commit, and complete path/size manifest.
 
 
 
 
 
 
 
16
 
17
  ## Matrix semantics
18
 
19
- Each raw `lXXhYY.csv` is a dense attention matrix. Empty CSV cells encode masked/future columns and are preserved in the raw files; the original `summary.json` files are authoritative for token/chunk boundaries and scheduler timesteps. The six-step trajectory is the LingBot-VA 1.0-style velocity FlowMatch execution path currently wired in this repository, not the VA2 distilled student.
20
 
21
- The repository intentionally omits the duplicate `attn-exp.zip` archive and `.pt` inference caches.
 
1
  # LingBot-VA Attention Analysis Dataset
2
 
3
+ Attention-analysis dataset generated on `h100-server` for the RoboTwin task `grab-the-medium-sized-white-mug-rotate-it-place-it-on-the-table-and-hook-it-onto-the-smooth-dark-gray-rack`, using the LingBot-VA 1.0-style velocity FlowMatch inference path (checkpoint `lingbot-va-posttrain-robotwin`).
4
 
5
+ ## Content
6
 
7
+ - `artifacts/archives/lingbot-va-attn-trajectory-6steps.tar.gz.part00` `part09` — the full six-step raw attention capture: 4,320 dense CSV matrices (6 steps `0,4,9,14,19,24` × 30 layers × 24 heads) plus `summary.json`, packed as a single gzip tarball (~77.7 GB) and split into ~8 GiB parts to stay within the Hub per-file limit. Archive sha256: `672366873edd322eed50879226487042f38cbd3afbe7186ba584ef565b806c39`.
8
+ - `derived/density/top-p-0.9/trajectory-6steps/` — per-layer top-p=0.9 attention-density CSVs, one per step, produced by `script/compute_attention_density.py`.
9
+ - `visualizations/attention-heatmaps/trajectory-6steps/` representative layer/head attention heatmaps and trajectory contact sheets.
10
+ - `visualizations/density/trajectory-6steps/` layer × step density heatmaps and layer-profile plots.
11
+ - `artifacts/videos/` — the `demo.mp4` output corresponding to the six-step run.
12
+ - `metadata/` experiment table (`experiments.csv`), source checkout commit (`source-commit.txt`), complete file manifest with per-part checksums (`manifest.json`), and the raw archive checksum (`artifacts/archives/*.sha256`).
13
+
14
+ ## Reconstructing the archive
15
+
16
+ ```bash
17
+ cat lingbot-va-attn-trajectory-6steps.tar.gz.part* > lingbot-va-attn-trajectory-6steps.tar.gz
18
+ sha256sum lingbot-va-attn-trajectory-6steps.tar.gz
19
+ # expect: 672366873edd322eed50879226487042f38cbd3afbe7186ba584ef565b806c39
20
+ tar -tzf lingbot-va-attn-trajectory-6steps.tar.gz | wc -l
21
+ # expect: 4329 (4,320 CSV + 1 summary.json + 8 directory entries)
22
+ ```
23
 
24
  ## Matrix semantics
25
 
26
+ Each raw `lXXhYY.csv` is a dense attention matrix; empty CSV cells encode masked/future columns and are preserved. The original `summary.json` inside the archive is authoritative for token/chunk boundaries and shifted scheduler timesteps (use `summary.json`, not the step index, for actual timesteps). The six-step trajectory comes from the `attn-exp-vv-10-6` run (`robotwin_i2av`, 10 chunks, 25 denoising updates) and is the LingBot-VA 1.0-style velocity FlowMatch execution path currently wired in this repository, not the VA2 distilled student.
27
 
28
+ This trimmed release intentionally omits the earlier full-history, smoke, and three-step captures and the duplicate `attn-exp.zip` archive.