Learning Hierarchical Skill Policies with Offline Quality-Diversity Reinforcement Learning
让机器人从混杂着成功、失败与噪声的旧数据中只学到有用的动作
当机器人用预先收集的数据进行预训练时,如果数据里成功动作、失败尝试和噪声混在一起,旧方法往往无法区分,学出的技能库会变得杂乱无章。QDOS通过估计每段轨迹的价值高低来加权学习,从而提取出既多样又高质量的技能。在机械臂操作和多足行走等任务中,QDOS比此前最强的方法SUPE更快找到目标,最终表现也更好。
他们做了什么
- 传统方法如轨迹VAE对数据集中所有片段一视同仁地学习,导致好的动作、失败的尝试和噪声全部混入同一个技能空间,变得杂乱
- QDOS用IQL方法估计每段轨迹的优势值(相对于平均水平的好坏程度),并用这个优势值对技能提取和多样性目标同时加权
- 该方法把同一份离线数据重复利用两次:一次用于预训练底层技能,另一次通过伪标注填充在线学习的经验回放池,让高层策略从一开始就能利用先验知识
- 在复杂的antsoccer-arena推球任务中,QDOS的归一化得分达到0.80,远超SUPE的0.27;在kitchen-mixed厨房操作任务中QDOS拿到满分4.00,而SUPE只有3.40
- 在多个任务中,QDOS找到目标所需的训练步数也明显少于SUPE,说明探索效率更高


| Environment | BC[11][26] | IQL[11][26] | SUPE | QDOS (α=0.2) | QDOS (α=0.3) |
|---|---|---|---|---|---|
| antmaze-large | 41±7 | 64±10 | 83.0±21.0 | 86.0±6.0¯ | 96.0±6.0 |
| antsoccer-arena | 5±1 | 50±2 | 27.0±31.0 | 73.0±31.0¯ | 80.0±10.0 |
| humanoidmaze-medium | 8±2 | 27±2 | 97.0±6.0¯ | 97.0±6.0¯ | 100.0±0.0 |
| kitchen-mixed | 51.5 | 51.0 | 85±13.25¯ | 100.00±0.00 | 83.25±28.75 |
| kitchen-partial | 38.0 | 46.3 | 83.25±14.50 | 85.75±24.75 | 82.50±30.25 |
| scene-task1 | 5±1 | 51±4 | 100.0±0.0 | 100.0±0.0 | 100.0±0.0 |


| Environment | Method | Steps |
|---|---|---|
| antmaze-large | SUPE | 13334±5774 |
| QDOS (α=0.2) | 𝟏𝟏𝟔𝟔𝟖±𝟗𝟒𝟔𝟓 | |
| humanoidmaze | SUPE | 23334±6292 |
| QDOS (α=0.3) | 𝟏𝟗𝟏𝟔𝟖±𝟖𝟎𝟑𝟔 | |
| scene | SUPE | 5834±1443 |
| QDOS (α=0.2) | 𝟓𝟎𝟎𝟏±𝟎 |


| Parameter Name | Value |
|---|---|
| Batch size | 256 |
| Optimizer | Adam |
| Learning rate | 3×10−4 |
| GRU Hidden Size | 256 (antmaze, kitchen) |
| 512 (antsoccer, humanoidmaze, scene) | |
| GRU Layers | 2 (antmaze, kitchen) |
| 3 (antsoccer, humanoidmaze, scene) | |
| KL Coefficient (OPENβ) | 0.1 (antmaze, humanoid, kitchen) |
| 0.2 (scene) | |
| Latent Dimension (z) | 8 |
| Segment Length (H) | 20 |

为什么重要
现实世界收集的机器人数据往往并不干净,而是成功、失败与噪声混杂在一起,能可靠地从中筛选出有用技能的方法让离线到在线的学习更实用。这有助于在减少昂贵的真实环境试错的同时,依然提升最终任务表现。
本文术语
- 离线强化学习 · 完全依靠预先收集好的数据训练策略,不与环境实时交互
- 变分自编码器(VAE) · 一种无监督模型,把数据压缩成潜在表示后再尝试还原
- 优势值(advantage) · 衡量某个动作或轨迹片段相对平均水平好坏程度的指标
- IQL(隐式Q学习) · 一种无需查询数据集之外动作即可稳定估计价值函数的离线强化学习方法
- 伪标注(pseudo-labeling) · 用已训练好的编码器给离线数据片段标注推断出的技能类别和奖励估计
论文原文摘要(英文)
Recent studies investigate how to leverage pre-collected datasets to improve the policy performance and sample efficiency of RL. One promising approach to achieve this goal is to employ a two-stage strategy: In the first stage, diverse skills are extracted as a low-level policy from a given dataset, and a high-level policy is trained to solve a specific task in the second stage. Typically, extraction of the low-level policy is performed based on unsupervised learning such as trajectory VAE. However, a limitation of this approach is that the quality of the low-level policy highly depends on the quality of the dataset. To address this issue, we introduce QDOS (Quality-Diversity Offline Skill learning), a unified pipeline for robust offline-to-online learning. Our approach incorporates an Advantage-Weighted Quality-Diversity pretraining objective, which weights the skill extraction and diversity objectives by the estimated advantage of each trajectory segment. This approach allows the model to extract diverse and high-value skills. By providing robust and task-relevant skill representations, QDOS significantly improves the quality of the embedded skill space used by the low-level policy. We further integrate this with a dual dataset reuse strategy, where offline data is used both for skill pretraining and for populating the online replay buffer via pseudo-labeling. Experiments demonstrate that QDOS significantly outperforms strong baselines in structured manipulation tasks and unstructured locomotion tasks, confirming its ability to accelerate exploration and improve final returns in challenging sparse-reward domains.
在 arXiv 阅读最新论文
- Specification-delta-driven data governance: an empirical study of the {\guillemotleft}spec-delta{\guillemotright} as the unit of change in lakehouse data platforms把数据平台的变更当作可审阅的'规格增量'来管理,而不是靠代码差异——一篇实验设计论文
- Are LLMs becoming similarly creative? Evidence from three years of models三年数据显示,不同AI聊天机器人给出的答案正变得越来越相似
- Auditing Cross-Lingual Fairness in Language Model Watermarking本该识别AI生成文本的水印技术在非英语语言中表现明显更差,而且这种差距按语系而非单个语言呈现
- TESTNAV: Pareto-Guided Search for Compositional Robustness Testing测试AI模型面对多种叠加干扰时不必穷举所有组合,也能找出真正危险的失败案例
- Optimal Skill Selection for LLM Agents with Provable Bicriteria Guarantees让AI编程智能体挑选该装入哪些技能文档,并从数学上保证接近最优的方法
- Reliable Financial Named Entity Recognition under Domain ShiftAI在正式文件里学到的自信,一到推特上就变得不可信
- FlashPrefill V2: Block-Sparse Prefill Attention for Long-Context LLM Serving把稀疏注意力从论文原型变成能真正上线服务的加速方案
- Robust Incomplete Multimodal Sentiment Analysis via Iterative Proxy Correction文本信息缺失或损坏时,这个AI不靠一次性猜测,而是反复修正猜测结果,从而更准确地判断情绪
METAL LAB 最新报道
图片来源: Tanachai Anakewat et al., arXiv:2608.19684, arxiv-nonexclusive