khanhnd61 commited on
Commit
12bbeaa
·
verified ·
1 Parent(s): 6a76bdc

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +94 -0
README.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - ur10e
8
+ - robotiq
9
+ - real-robot
10
+ - manipulation
11
+ configs:
12
+ - config_name: default
13
+ data_files: data/*/*.parquet
14
+ ---
15
+
16
+ # ur10e-cup
17
+
18
+ VR-teleoperated **UR10e + Robotiq 2F** episodes of a single task: *"pick up the cup"*.
19
+ Recorded on a real robot cell — there is no simulator for this setup, so every
20
+ evaluation is a real-robot rollout.
21
+
22
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
23
+ (dataset codebase **v3.0**).
24
+
25
+ ## Dataset summary
26
+
27
+ | | |
28
+ |---|---|
29
+ | robot | UR10e (6 DoF) + Robotiq 2F gripper |
30
+ | episodes / frames | 81 / 49,779 |
31
+ | fps | 20 (native, stride 1) |
32
+ | duration | ~41 min of teleoperation |
33
+ | tasks | 1 — `"pick up the cup"` |
34
+ | cameras | `observation.images.side`, `observation.images.wrist` — 480×640, AV1 |
35
+ | size | ~1.1 GB |
36
+ | splits | `train: 0:81` |
37
+
38
+ ### Features
39
+
40
+ | key | dtype | shape | notes |
41
+ |---|---|---|---|
42
+ | `observation.images.side` | video | (480, 640, 3) | third-person camera |
43
+ | `observation.images.wrist` | video | (480, 640, 3) | wrist camera |
44
+ | `observation.state` | float32 | (7,) | 6 UR joint angles (rad) + gripper |
45
+ | `action` | float32 | (7,) | **absolute** joint targets + gripper, i.e. `state[t+1]` |
46
+
47
+ Joint order: `shoulder_pan, shoulder_lift, elbow, wrist_1, wrist_2, wrist_3, gripper`.
48
+ The gripper channel is binary (`1` = open). Actions are *absolute joint targets*, not
49
+ deltas — this matches the SO-100/SO-101 joint-vector convention that `lerobot/smolvla_base`
50
+ was pretrained on.
51
+
52
+ ## Usage
53
+
54
+ ```python
55
+ from lerobot.datasets.lerobot_dataset import LeRobotDataset
56
+
57
+ ds = LeRobotDataset("khanhnd61/ur10e-cup")
58
+ sample = ds[0]
59
+ print(sample["task"], sample["observation.state"], sample["action"].shape)
60
+ ```
61
+
62
+ ## Provenance
63
+
64
+ Raw HDF5 recordings → frame/state extraction → **gripper-timing correction** → LeRobot v3.0
65
+ conversion. The gripper fix is the reason this extract is preferred over the un-corrected one:
66
+ in the raw episodes the fingers start moving ~2.0 s *before* `obs_gripper` flips, so the binary
67
+ edge was re-timed to the measured mid-transition against the video. At 20 Hz the original lag
68
+ would have been ~40 steps of "gripper says open, fingers are closing".
69
+
70
+ ## Known caveats
71
+
72
+ - **`wrist_2` is a dead channel.** State/action index 4 spans `[1.5702, 1.5716]` with
73
+ std ≈ 0.0008 rad — the joint never moves, and that 1.4 mrad spread is just 4-decimal
74
+ rounding. Under MEAN_STD normalization this dimension is amplified into near-pure noise.
75
+ Consider dropping it.
76
+ - **Lossy source.** Frames come from CRF-26 H.264 and were re-encoded to AV1
77
+ (~0.006 MAE round-trip). Joints are rounded to 4 decimals, gripper to 3.
78
+ - **Single task, single scene.** 81 episodes of one instruction — expect a policy that
79
+ masters this cell rather than one that generalizes. Language conditioning is effectively
80
+ unused.
81
+ - **No held-out split.** All 81 episodes are in `train`; hold some out yourself if you want
82
+ offline evaluation.
83
+
84
+ ## Training note
85
+
86
+ `lerobot/smolvla_base` declares its cameras as `observation.images.camera1/2/3`, so training
87
+ against this dataset needs a rename:
88
+
89
+ ```
90
+ --rename_map='{"observation.images.side": "observation.images.camera1",
91
+ "observation.images.wrist": "observation.images.camera2"}'
92
+ ```
93
+
94
+ The same mapping applies at rollout time.