Summary

Rerun’s Nikolaus West analyzes the “data layer tax” — the cumulative cost in iteration speed, engineering time, and GPU utilization from immature data infrastructure in robot learning. Walking backwards from policy evaluation through training, curation, and ingestion, the post identifies structural problems: multi-rate/multimodal data is poorly served by existing tools, video GOP structure complicates random access, dataset mixing requires expensive offline exports, and format fragmentation makes cross-pipeline debugging nearly impossible.

Rerun 的 Nikolaus West 分析機器人學習的「資料層稅」:因資料基礎設施不成熟,在迭代速度、工程時間、GPU 利用率上的累積代價。從策略評估倒推至資料收集,指出結構性問題:多速率/多模態資料難以查詢、視頻 GOP 結構妨礙隨機存取、資料集混合需要高成本離線匯出、格式碎片化使跨管線除錯幾乎不可能。

Key Points

  • End-to-end VLA models simplified on-robot software but made data collection and training dramatically harder
  • Policy evaluation for robots requires hours/days of real-world trials vs. LLM evals (minutes)
  • Video GOP structure: random access to a delta frame requires decoding from nearest keyframe; at GOP=30, average 15 frames decoded per 1 frame used
  • Sample construction complexity: non-uniform history windows + multiple cameras + different sensor rates = multiple GOP seeks per sample
  • Dataset mixing expressed as offline data export jobs, not queries — each variant requires a full pipeline run
  • HuggingFace robot folding: curating 1,200 from 5,688 episodes moved success rate by 50pp; algorithmic improvements moved it 5-20pp
  • QoQ paper: 33.5% of DROID dataset pen/pencil trajectories were outright failures
  • The “data layer lakehouse” analogy: robotics stuck in a pre-lakehouse split between log-based formats (MCAP) and fixed schemas (LeRobot)
  • Real cost = work that never happens: untried dataset mixes, unscalable curation, invisible transform bugs, slow eval-to-training traces

Insights

The data pyramid framing (sim at base, human data above, robot data at apex) explains why even “simplified” end-to-end models create more data infrastructure complexity, not less: the simplification moves from inference-time perception to training-time data processing. The lakehouse analogy is apt — robotics is where analytics was 10 years ago, with teams maintaining multiple redundant data copies and format conversion pipelines. The finding that dataset curation dominates algorithmic improvement (50pp vs. 5-20pp) has direct implications for where to invest engineering effort.

Connections

Raw Excerpt

The real cost is the work that never happens. It’s the dataset mixes that are too slow to try because each one requires a full data export rather than a parameter change. It’s the curation methods that can’t be applied at scale because the data isn’t queryable. Doing research on the wrong foundations feels like walking in mud in the dark.