droid_1.0.1
收藏资源简介:
该数据集是 DROID 1.0.1 的增强版本,在原始数据基础上为每一帧添加了额外的特征。具体包括:动作指令中的末端执行器增量(delta-EE)——包含位置增量 (x, y, z) 和相对旋转轴角向量 (rx, ry, rz) 以及夹爪绝对指令(0到1,1为闭合);观察中的相机外参——将原始相机外参转换为机器人基座坐标系下的静态相机1/2和腕部相机位姿(位置+四元数);夹爪事件时间——包括到下一次夹爪指令翻转(阈值0.5)的剩余时间(正值)和自上一次翻转以来的时间(无翻转时用哨兵值10000)。此外,保留了平坦化的动作列(delta-EE值)和状态列(EE的笛卡尔位姿与夹爪值),以及原始的关节空间动作和状态。该数据集适用于机器人操作策略学习、运动规划、夹爪时序分析等任务。
This dataset is an enhanced version of DROID 1.0.1, adding additional features per frame on top of the original data. Specifically, it includes: end-effector deltas (delta-EE) in action instructions, containing position increments (x, y, z) and relative rotation axis-angle vectors (rx, ry, rz) along with absolute gripper commands (0 to 1, 1 is closed); camera extrinsic parameters in observations, transforming the original camera extrinsics to robot base frame for static camera 1/2 and wrist camera poses (position + quaternion); gripper event timestamps, including the remaining time to the next gripper command flip (threshold 0.5) as a positive value and the time since the last flip (with a sentinel value of 10000 when no flip occurs). Additionally, flattened action columns (delta-EE values) and state columns (EE Cartesian pose and gripper value) are retained, along with original joint-space actions and states. The dataset is suitable for tasks such as robotic manipulation policy learning, motion planning, and gripper timing analysis.
DROID 1.0.1 with delta-EE actions and gripper-event timings 数据集概述
基本信息
- 数据集名称:DROID 1.0.1 with delta-EE actions and gripper-event timings
- 标签:LeRobot、droid
- 任务类别:机器人学(robotics)
- 配置:default 配置,数据文件位于
data/*/*.parquet(Parquet 格式)
数据集特点
该数据集基于 lerobot/droid_1.0.1,新增了按帧(per-frame)的特征,主要围绕末端执行器(EE)动作和夹爪事件进行增强。
新增特征详解
1. action.delta_ee
- 格式:
[x, y, z, rx, ry, rz, gripper](float32) - 含义:每步的末端执行器增量命令
- 位置增量为
action.cartesian_position与observation.state.cartesian_position的差值 - 相对旋转通过
R_cmd * R_state^-1(世界坐标系)计算,以轴角向量表示,避免了逐元素 rpy 相减的万向锁问题 - 夹爪为绝对命令(0-1,1 表示闭合)
- 位置增量为
2. observation.extrinsics.static1 / static2 / wrist1
- 格式:
[pos(3), quat xyzw(4)](float32) - 含义:相机在机器人基座坐标系下的位姿
static1:exterior_1_left 相机static2:exterior_2_left 相机wrist1:wrist_left 相机(每帧实时,由 EE 位姿与 episode 的刚性安装偏移组合得到;源列仅在 episode 开始时冻结)
3. observation.gripper.time_to_close / time_to_open
- 含义:夹爪命令下一次翻转前的时间(事后视角,阈值 0.5,小于 3 步的运行进行去抖处理)
4. observation.gripper.time_since_close / time_since_open
- 含义:自上次翻转以来的时间;如果 episode 中没有此类翻转,则保持哨兵值
10000
原有数据保留
- 扁平的
action列存储 delta-EE 值 - 扁平的
observation.state列存储 EE 状态[x, y, z, roll, pitch, yaw, gripper] - 关节空间原始数据保留在
action.joint_position/observation.state.joint_position中
生成方式
该数据集由脚本 lerobot_policy_framepick/scripts/augment_droid_delta_ee_gripper_events.py 生成。




