<?xml version="1.0" encoding="UTF-8"?>
<rss  xmlns:atom="http://www.w3.org/2005/Atom" 
      xmlns:media="http://search.yahoo.com/mrss/" 
      xmlns:content="http://purl.org/rss/1.0/modules/content/" 
      xmlns:dc="http://purl.org/dc/elements/1.1/" 
      version="2.0">
<channel>
<title>neutrino 的思考</title>
<link>https://neutrino-blogs.pages.dev/</link>
<atom:link href="https://neutrino-blogs.pages.dev/index.xml" rel="self" type="application/rss+xml"/>
<description>关于机器人、具身智能与持续学习的个人记录</description>
<generator>quarto-1.10.18</generator>
<lastBuildDate>Fri, 14 Aug 2026 16:00:00 GMT</lastBuildDate>
<item>
  <title>具身智能需要怎样的数据？</title>
  <dc:creator>neutrino </dc:creator>
  <link>https://neutrino-blogs.pages.dev/posts/2026-08-15-data-pyramid/</link>
  <description><![CDATA[ 






<p>最近开始接触机器人数据，原本以为工作只是标定，后来才发现背后是一整套采集、同步、质检和处理管线。</p>
<p>带着这个背景读 <em>Data Pyramid for Embodied Manipulation</em> <span class="citation" data-cites="ye2026datapyramid">(Ye 等 2026年)</span>，我最关心的问题是：<strong>具身智能缺的是更多数据，还是更接近真实行动的数据？</strong></p>
<div class="no-row-height column-margin column-container"></div><p>论文用两个维度组织现有数据：一是能否低成本扩展，二是能否与真实机器人的观察、状态和动作对齐。二者往往存在矛盾：越容易规模化的数据，通常离真实执行越远；越接近真实机器人的数据，采集成本又越高。</p>
<section id="五层数据金字塔" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="五层数据金字塔">五层数据金字塔</h2>
<p>五层并不是简单的优劣排名，而是用不同成本提供不同的监督信号。</p>
<div id="fig-data-pyramid" class="quarto-float quarto-figure quarto-figure-center anchored page-columns page-full">
<figure class="quarto-float quarto-float-fig figure page-columns page-full">
<div aria-describedby="fig-data-pyramid-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="https://neutrino-blogs.pages.dev/posts/2026-08-15-data-pyramid/data-pyramid-overview.png" class="img-fluid figure-img">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-data-pyramid-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
图&nbsp;1: 具身操作的数据金字塔：从通用数据、仿真数据、第一视角数据和 UMI 数据，到与真实执行最对齐的机器人数据；右侧同时概括了各层的应用与发展趋势。图片来源：<em>Data Pyramid for Embodied Manipulation</em> <span class="citation" data-cites="ye2026datapyramid">(Ye 等 2026年)</span>。
</figcaption>
<div class="no-row-height column-margin column-container"></div></figure>
</div>
<table class="caption-top table">
<colgroup>
<col style="width: 33%">
<col style="width: 33%">
<col style="width: 33%">
</colgroup>
<thead>
<tr class="header">
<th>数据层</th>
<th>能提供什么</th>
<th>主要问题</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>通用视觉语言数据</td>
<td>物体、语言、空间关系和常识</td>
<td>缺少动作与物理反馈</td>
</tr>
<tr class="even">
<td>仿真数据</td>
<td>可控的状态、动作、奖励和失败样本</td>
<td>存在 sim-to-real 差距</td>
</tr>
<tr class="odd">
<td>第一/第三视角数据</td>
<td>人类操作步骤、运动和行为语义</td>
<td>没有机器人可直接执行的动作标签</td>
</tr>
<tr class="even">
<td>UMI 式数据</td>
<td>末端执行器或物体中心的操作轨迹</td>
<td>仍需完成坐标、夹爪和机器人本体的映射</td>
</tr>
<tr class="odd">
<td>真实机器人数据</td>
<td>观测、状态、控制动作及真实后果</td>
<td>采集昂贵，任务和硬件覆盖有限</td>
</tr>
</tbody>
</table>
<p>底层数据规模大，可以提供语义和行为先验；越往上，数据与真实动作和动力学越对齐，但数量也越少。因而，通用数据不能替代真实轨迹，真实轨迹也无法独自解决泛化问题。金字塔更像一张数据地图，而不是一种已经验证的最优配方。</p>
</section>
<section id="目前还缺什么" class="level2">
<h2 class="anchored" data-anchor-id="目前还缺什么">目前还缺什么</h2>
<p>论文总结的问题主要有六类：触觉数据不足，失败与恢复轨迹稀缺，跨层级采集难以扩展，不同机器人本体的状态和动作难以统一，人类操作先验难以迁移到灵巧手，以及不同数据应该如何混合仍缺少可靠规律。</p>
<p>其中我更关注触觉、失败恢复和灵巧手。视觉能看到物体是否移动，却很难判断接触力、滑移、形变和抓取稳定性；第一视角视频虽然包含大量人手操作先验，也不能直接映射到机器人手的关节与接触方式。如何提取可迁移的物体状态、接触关系和技能表征，仍是关键问题。</p>
</section>
<section id="回到数据采集" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="回到数据采集">回到数据采集</h2>
<p>这篇论文也让我意识到，采集并不是把传感器数据录下来就结束了。一条轨迹能否用于训练，还取决于时间戳是否连续、多相机是否同步、视频是否断流或遮挡、传感器流是否异常，以及标定文件是否与当前硬件匹配。</p>
<div id="fig-simulation-data-collection" class="quarto-float quarto-figure quarto-figure-center anchored page-columns page-full">
<figure class="quarto-float quarto-float-fig figure page-columns page-full">
<div aria-describedby="fig-simulation-data-collection-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="https://neutrino-blogs.pages.dev/posts/2026-08-15-data-pyramid/data-scale-evolution.png" class="img-fluid figure-img">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-simulation-data-collection-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
图&nbsp;2: 仿真数据的基础设施与采集方法：左侧是机器人本体、传感器、场景、物体和仿真引擎，右侧是人工遥操作、轨迹回放、规则执行与自主生成等采集方式。图片来源：<em>Data Pyramid for Embodied Manipulation</em> <span class="citation" data-cites="ye2026datapyramid">(Ye 等 2026年)</span>。
</figcaption>
<div class="no-row-height column-margin column-container"><div id="ref-ye2026datapyramid" class="csl-entry">
Ye, Yifan, Yankai Fu, Yaoxu Lv, 等. 2026年. <em>Data Pyramid for Embodied Manipulation</em>. <a href="https://arxiv.org/abs/2607.24744">https://arxiv.org/abs/2607.24744</a>.
</div></div></figure>
</div>
<p>完整的数据管线应该覆盖：<strong>采集 → 同步与标定 → 端侧质检 → 筛选与标注 → 训练使用</strong>。如果问题没有在采集阶段被发现，金字塔顶端最昂贵的真实机器人数据也可能只是噪声。</p>
<p>所以，具身智能的数据问题不只是“采得更多”，还要让不同来源的数据能够对齐，并保证每条高成本轨迹都真实、完整、可复用。这也是数据采集和质量控制真正重要的地方。</p>
</section>
<section id="参考资料" class="level2">
<h2 class="anchored" data-anchor-id="参考资料">参考资料</h2>



</section>

 ]]></description>
  <category>论文阅读</category>
  <category>具身智能</category>
  <category>机器人数据</category>
  <guid>https://neutrino-blogs.pages.dev/posts/2026-08-15-data-pyramid/</guid>
  <pubDate>Fri, 14 Aug 2026 16:00:00 GMT</pubDate>
</item>
</channel>
</rss>
