yxma commited on
Commit
76d1d84
·
verified ·
1 Parent(s): aa62c5f

Lead with robot-arm-free / human-hand collection — README hero + 'What's different' section, tasks.json gets operator/embodiment fields, recording.md explains setup, F7 adds Operator column

Browse files
README.md CHANGED
@@ -12,6 +12,7 @@ tags:
12
  - motion-capture
13
  - dynamics
14
  - world-model
 
15
  pretty_name: React (Tactile-Visual Manipulation)
16
  size_categories:
17
  - 100K<n<1M
@@ -28,27 +29,37 @@ configs:
28
 
29
  # React
30
 
31
- Dense, contact-rich, synchronized multimodal interaction recordings for **tactile-visual dynamics / world-model learning** *not* a policy / demonstration dataset.
32
 
33
  ![Tactile intensity timeline](figures/contact_intensity_full.png)
34
 
35
- > **138 min of synchronized multimodal interaction · 88 min (66 %) of confirmed bimanual tactile contact · 4,136 distinct contact events · 240 k frames @ 30 Hz across 3 × RGB-D + 2 × GelSight + 3-body OptiTrack**
 
 
 
 
 
 
 
 
 
 
 
36
 
37
  ## At a glance
38
 
39
  | | |
40
  |---|---|
41
- | Intended use | Dynamics / world-model learning over short multimodal windows. Sample short trajectories (1 s 10 s); episode boundaries are not action boundaries. |
 
42
  | Total synchronized duration | **138.4 min** at 30 Hz (239,759 multimodal frames) |
43
  | Bimanual tactile-contact time | **87.9 min — 66 % of frames** (4,136 contact events, median 0.73 s) |
44
  | Cameras | 3× Intel RealSense D415 (color + depth), 480×640, 30 FPS |
45
- | Tactile | 2× GelSight Mini (left, right) |
46
  | Motion capture | OptiTrack VRPN, 3 rigid bodies, ~120 Hz |
47
  | Tasks | `motherboard` (more coming) |
48
  | License | CC-BY-4.0 |
49
 
50
- ![Comparison with other manipulation datasets](figures/dataset_figures/F7_comparison_table.png)
51
-
52
  ## Recording sessions
53
 
54
  | Date | Kind | Active sensors | Notes |
@@ -67,7 +78,7 @@ from datasets import load_dataset
67
  ds = load_dataset("yxma/React", "motherboard", split="train")
68
  ```
69
 
70
- Or grab a single episode file directly:
71
 
72
  ```python
73
  import torch
@@ -93,12 +104,12 @@ import json
93
  with open("bad_frames.json") as f:
94
  bad = json.load(f)["episodes"]
95
  # Drop ~0.085 % of frames flagged in bad_frames.json — see docs/quality.md
96
- # For 2026-03-23 episodes, also ignore the left-sensor fields (right-only pilot).
97
  ```
98
 
99
- ## Episode-file previews
100
 
101
- Per-file GIF previews live under [`figures/episode_previews/`](figures/episode_previews) — first 2 minutes at 10× speed, showing all 3 RealSense cameras with projected GelSight axes plus both tactile pads. (The on-disk recording unit is called an "episode" purely for file naming — episode boundaries don't carry semantic meaning for this dataset.)
102
 
103
  ## Repository layout
104
 
@@ -115,7 +126,7 @@ docs/ # extended documentation
115
 
116
  | File | Contents |
117
  |---|---|
118
- | [`docs/recording.md`](docs/recording.md) | Hardware setup, camera serials, sensor + mocap layout |
119
  | [`docs/schema.md`](docs/schema.md) | Full `.pt` field reference and contact-metric definitions |
120
  | [`docs/quality.md`](docs/quality.md) | Data-quality breakdown (per-mode), `bad_frames.json` schema, dataloader recipe, inspection figures |
121
  | [`docs/figures.md`](docs/figures.md) | Dataset statistics + analysis gallery (F1–F8) |
 
12
  - motion-capture
13
  - dynamics
14
  - world-model
15
+ - human-collected
16
  pretty_name: React (Tactile-Visual Manipulation)
17
  size_categories:
18
  - 100K<n<1M
 
29
 
30
  # React
31
 
32
+ Dense, contact-rich, synchronized multimodal interaction data collected from **human hands holding handheld GelSight tactile sensors — no robot arm involved**. Intended for **tactile-visual dynamics / world-model learning**, *not* a policy / demonstration dataset.
33
 
34
  ![Tactile intensity timeline](figures/contact_intensity_full.png)
35
 
36
+ > **138 min of robot-free human-hand multimodal interaction · 88 min (66 %) of confirmed bimanual tactile contact · 4,136 distinct contact events · 240 k frames @ 30 Hz across 3 × RGB-D + 2 × GelSight + 3-body OptiTrack**
37
+
38
+ ## What's different about this dataset
39
+
40
+ | | |
41
+ |---|---|
42
+ | **Robot-arm-free** | Recorded directly from a human operator holding two GelSight Mini sensors. No robot kinematics, no embodiment bias, no robot occluding the scene. |
43
+ | **Tactile + RGB-D + mocap, simultaneous** | Most manipulation datasets ship one of these. React ships all three, synchronized to a common 30 Hz clock. |
44
+ | **Contact-dense** | 66 % of all frames have confirmed tactile contact on at least one sensor — see [`figures/contact_intensity_full.png`](figures/contact_intensity_full.png). |
45
+ | **Long, continuous interaction** | Recordings are minutes long, not seconds. Median recording duration is 4 min; longest 19 min. Good for short-window sampling of dynamics, not for action-conditioned policy learning. |
46
+
47
+ ![Comparison with other manipulation datasets](figures/dataset_figures/F7_comparison_table.png)
48
 
49
  ## At a glance
50
 
51
  | | |
52
  |---|---|
53
+ | Embodiment | **Human hands (no robot)** handheld GelSight sensors with motion-capture rigid bodies |
54
+ | Intended use | Dynamics / world-model learning over short multimodal windows. Sample short trajectories (1 s – 10 s); recording-file boundaries are not action boundaries. |
55
  | Total synchronized duration | **138.4 min** at 30 Hz (239,759 multimodal frames) |
56
  | Bimanual tactile-contact time | **87.9 min — 66 % of frames** (4,136 contact events, median 0.73 s) |
57
  | Cameras | 3× Intel RealSense D415 (color + depth), 480×640, 30 FPS |
58
+ | Tactile | 2× GelSight Mini (left, right), handheld |
59
  | Motion capture | OptiTrack VRPN, 3 rigid bodies, ~120 Hz |
60
  | Tasks | `motherboard` (more coming) |
61
  | License | CC-BY-4.0 |
62
 
 
 
63
  ## Recording sessions
64
 
65
  | Date | Kind | Active sensors | Notes |
 
78
  ds = load_dataset("yxma/React", "motherboard", split="train")
79
  ```
80
 
81
+ Or grab a single recording file directly:
82
 
83
  ```python
84
  import torch
 
104
  with open("bad_frames.json") as f:
105
  bad = json.load(f)["episodes"]
106
  # Drop ~0.085 % of frames flagged in bad_frames.json — see docs/quality.md
107
+ # For 2026-03-23 recordings, also ignore the left-sensor fields (right-only pilot).
108
  ```
109
 
110
+ ## Recording-file previews
111
 
112
+ Per-file GIF previews live under [`figures/episode_previews/`](figures/episode_previews) — first 2 minutes at 10× speed, showing all 3 RealSense cameras with projected GelSight axes plus both tactile pads. (The on-disk recording unit is called an "episode" purely for file naming — these boundaries don't carry semantic / action meaning for this dataset.)
113
 
114
  ## Repository layout
115
 
 
126
 
127
  | File | Contents |
128
  |---|---|
129
+ | [`docs/recording.md`](docs/recording.md) | Hardware setup, camera serials, sensor + mocap layout, robot-free collection method |
130
  | [`docs/schema.md`](docs/schema.md) | Full `.pt` field reference and contact-metric definitions |
131
  | [`docs/quality.md`](docs/quality.md) | Data-quality breakdown (per-mode), `bad_frames.json` schema, dataloader recipe, inspection figures |
132
  | [`docs/figures.md`](docs/figures.md) | Dataset statistics + analysis gallery (F1–F8) |
docs/recording.md CHANGED
@@ -2,13 +2,23 @@
2
 
3
  This document describes the hardware and sensor configuration used to record the React dataset. Schema for the resulting `.pt` files is in [`schema.md`](schema.md).
4
 
 
 
 
 
 
 
 
 
 
 
5
  ## Sensors
6
 
7
  | Stream | Hardware | Native shape | Rate |
8
  |---|---|---|---|
9
  | 3 × RealSense color | Intel D415 (serials `143322063538`, `104122062574`, `217222066989`) | 480×640×3 uint8 (BGR) | 30 FPS |
10
  | 3 × RealSense depth | same | 480×640 uint16 (mm) | 30 FPS |
11
- | 2 × GelSight tactile | GelSight Mini (left / right) | 480×640×3 uint8 | ~25 FPS, resampled to camera ticks |
12
  | 3 × OptiTrack rigid bodies | `motherboard`, `sensor_left`, `sensor_right` | 7-vector (x, y, z, qx, qy, qz, qw) | ~120 Hz |
13
 
14
  Each RealSense camera's calibration is stored in the source repo under `twm/calibration/result/T_mocap_to_cam_{middle,left,right}.json`. The serial→position mapping:
@@ -19,7 +29,7 @@ Each RealSense camera's calibration is stored in the source repo under `twm/cali
19
  | `cam1` | `104122062574` | `T_mocap_to_cam_left.json` | left-side view |
20
  | `cam2` | `217222066989` | `T_mocap_to_cam_middle.json`| overhead / center view |
21
 
22
- The OptiTrack-to-GelSight rigid transforms are stored alongside in `T_gel_to_rigid_{left,right}.json`. These let you project the GelSight contact center into any of the three camera views; see the per-episode GIFs under `figures/episode_previews/` for examples.
23
 
24
  ## Timing
25
 
 
2
 
3
  This document describes the hardware and sensor configuration used to record the React dataset. Schema for the resulting `.pt` files is in [`schema.md`](schema.md).
4
 
5
+ ## Collection method — robot-arm-free, human-hand operated
6
+
7
+ React is recorded **without any robot arm**. A human operator holds one GelSight Mini sensor in each hand and performs the task directly. Compared to robot-collected manipulation data this means:
8
+
9
+ - No robot kinematic constraints, no robot occluding the scene, no robot-specific visual features.
10
+ - The tactile sensors move with natural human-hand dynamics — varied trajectories, jerks, regrasps, etc.
11
+ - Cross-embodiment by design: any downstream policy / dynamics model trained on this data does not bake in a particular robot morphology.
12
+
13
+ The trade-off: there are no robot joint angles or commanded actions in the data. Sensor 6-DoF pose comes from a motion-capture system (OptiTrack VRPN) tracking rigid-body markers rigidly attached to the back of each GelSight Mini, and a separate rigid body tracks the manipulated object (e.g. the motherboard). The dataset therefore does **not** include action labels and is **not** an imitation-learning / behavioral-cloning corpus.
14
+
15
  ## Sensors
16
 
17
  | Stream | Hardware | Native shape | Rate |
18
  |---|---|---|---|
19
  | 3 × RealSense color | Intel D415 (serials `143322063538`, `104122062574`, `217222066989`) | 480×640×3 uint8 (BGR) | 30 FPS |
20
  | 3 × RealSense depth | same | 480×640 uint16 (mm) | 30 FPS |
21
+ | 2 × GelSight tactile | GelSight Mini (left / right, **handheld**) | 480×640×3 uint8 | ~25 FPS, resampled to camera ticks |
22
  | 3 × OptiTrack rigid bodies | `motherboard`, `sensor_left`, `sensor_right` | 7-vector (x, y, z, qx, qy, qz, qw) | ~120 Hz |
23
 
24
  Each RealSense camera's calibration is stored in the source repo under `twm/calibration/result/T_mocap_to_cam_{middle,left,right}.json`. The serial→position mapping:
 
29
  | `cam1` | `104122062574` | `T_mocap_to_cam_left.json` | left-side view |
30
  | `cam2` | `217222066989` | `T_mocap_to_cam_middle.json`| overhead / center view |
31
 
32
+ The OptiTrack-to-GelSight rigid transforms are stored alongside in `T_gel_to_rigid_{left,right}.json`. These let you project the GelSight contact center into any of the three camera views; see the per-recording GIFs under `figures/episode_previews/` for examples.
33
 
34
  ## Timing
35
 
figures/dataset_figures/F7_comparison_table.png CHANGED

Git LFS Details

  • SHA256: c3f0832329ceecf9ec09928740c5e7f7eec4fffd8b245bdde9c17ee9c2361863
  • Pointer size: 130 Bytes
  • Size of remote file: 63.3 kB

Git LFS Details

  • SHA256: c007754ad2605850c5f5a783b655ed2d78a29313b30ac473c82e30f3192ee8d3
  • Pointer size: 130 Bytes
  • Size of remote file: 72.3 kB
tasks.json CHANGED
@@ -3,6 +3,8 @@
3
  "motherboard": {
4
  "language": "Bimanual manipulation of components on a computer motherboard.",
5
  "purpose": "Dense, contact-rich, synchronized multimodal interaction data for tactile-visual dynamics / world-model learning. Not a policy-learning / demonstration dataset.",
 
 
6
  "dates": ["2026-03-23", "2026-05-10", "2026-05-11"],
7
  "per_date_notes": {
8
  "2026-03-23": {
 
3
  "motherboard": {
4
  "language": "Bimanual manipulation of components on a computer motherboard.",
5
  "purpose": "Dense, contact-rich, synchronized multimodal interaction data for tactile-visual dynamics / world-model learning. Not a policy-learning / demonstration dataset.",
6
+ "operator": "human hands (handheld GelSight Mini sensors with motion-capture rigid bodies; no robot arm involved)",
7
+ "embodiment": "human",
8
  "dates": ["2026-03-23", "2026-05-10", "2026-05-11"],
9
  "per_date_notes": {
10
  "2026-03-23": {