VadRobotics commited on
Commit
d06e4c1
·
verified ·
1 Parent(s): 38bab95

Add dataset card and pinned Viewer video config

Browse files
Files changed (2) hide show
  1. README.md +174 -0
  2. viewer_videos/train.parquet +3 -0
README.md ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ pretty_name: XRSC Bimanual Table Cleanup — Panda + WidowXAI — 10-Episode Inspection Sample
5
+ size_categories:
6
+ - 10K<n<100K
7
+ task_categories:
8
+ - robotics
9
+ configs:
10
+ - config_name: panda
11
+ data_files:
12
+ - split: train
13
+ path: viewer_data/panda/*.parquet
14
+ - config_name: widowxai
15
+ data_files:
16
+ - split: train
17
+ path: viewer_data/widowxai/*.parquet
18
+ - config_name: episodes
19
+ data_files:
20
+ - split: train
21
+ path: viewer_index/metadata.parquet
22
+ - config_name: videos
23
+ data_files:
24
+ - split: train
25
+ path: viewer_videos/train.parquet
26
+ tags:
27
+ - lerobot
28
+ - robot-learning
29
+ - imitation-learning
30
+ - manipulation
31
+ - franka
32
+ - panda
33
+ - widowxai
34
+ - bimanual-manipulation
35
+ - dual-arm
36
+ - table-cleanup
37
+ - multi-view
38
+ - video
39
+ - depth
40
+ - segmentation
41
+ - object-poses
42
+ - 6dof
43
+ - synthetic
44
+ - parquet
45
+ - inspection-sample
46
+ ---
47
+
48
+ # XRSC Bimanual Table Cleanup — Panda + WidowXAI — 10-Episode Inspection Sample
49
+
50
+ > **10 episodes total: 5 Franka Panda + 5 WidowXAI.** A deliberately small, quality-diverse inspection sample for clearing an optional obstruction and wiping a dirty tabletop with a sponge. Each robot keeps its native LeRobot v2.1 schema in a separate Viewer config. RGB, metric depth, instance segmentation, robot state/action, end-effector trajectories, object poses, and QA annotations are included.
51
+
52
+ <img src="assets/dataset_preview.gif" alt="XRSC Bimanual Table Cleanup episode and modality preview" width="960">
53
+
54
+ ## ✅ Use it / ❌ Skip it
55
+
56
+ **Use it for**
57
+ - Inspecting loaders, schemas, camera coverage, depth, segmentation, object poses, annotations, and cross-embodiment differences before using the 150-episode sources.
58
+ - Testing visualization, filtering, QA, and preprocessing pipelines on both Panda and WidowXAI.
59
+ - Reviewing clean and deliberately suboptimal demonstrations. The cleanup sample also includes true task failures.
60
+
61
+ **Skip it if you need**
62
+ - A from-scratch training corpus. Ten episodes are not sufficient for policy training.
63
+ - A single shared state/action tensor across robots. Panda and WidowXAI retain different joint definitions and vector widths.
64
+ - Real-world data, force/torque, contact, tactile, point-cloud, or audio streams.
65
+
66
+ ## At a glance
67
+
68
+ | | |
69
+ |---|---|
70
+ | Episodes / frames | **10 / 21,267** (≈11.81 min @ 30 FPS) |
71
+ | Robot split | **5 Panda + 5 WidowXAI** |
72
+ | Selection split | Per robot: **2 successful / 2 suboptimal / 1 cleanup-incomplete failure** |
73
+ | State/action | Panda 18-D; WidowXAI 16-D joint/gripper state; achieved next-frame action, not recorded controller commands |
74
+ | Cameras | 6 RGB views per robot, 1280×960 H.264, no audio |
75
+ | Depth / segmentation | Metric depth and instance segmentation from `top_cam` |
76
+ | Other modalities | End-effector state/action, local/world TCP poses, 6-DoF object state, gripper semantics, phase/subtask QA |
77
+ | Format | Two robot-specific **LeRobot v2.1** subsets + four Hugging Face Viewer configs |
78
+ | Repository footprint | **≈5.70 GB** |
79
+ | License | Not specified in either source repository |
80
+
81
+ ## Load it
82
+
83
+ The robot frame schemas are intentionally separate. Select the embodiment explicitly:
84
+
85
+ ```python
86
+ from datasets import load_dataset
87
+
88
+ repo = "VadRobotics/xrsc-cleanup-table-bimanual-inspection-sample"
89
+ panda = load_dataset(repo, name="panda", split="train")
90
+ widowxai = load_dataset(repo, name="widowxai", split="train")
91
+
92
+ print(panda[0]["observation.state"])
93
+ print(widowxai[0]["observation.state"])
94
+ print(panda[0]["selection_bucket"], panda[0]["source_episode_index"])
95
+ ```
96
+
97
+ Use `name="episodes"` for the combined 10-row provenance and quality index. Use `name="videos"` for the combined RGB browser.
98
+
99
+ Canonical nested Parquet is stored under each robot root and is best read with PyArrow:
100
+
101
+ ```python
102
+ from huggingface_hub import hf_hub_download
103
+ import pyarrow.parquet as pq
104
+
105
+ path = hf_hub_download(
106
+ "VadRobotics/xrsc-cleanup-table-bimanual-inspection-sample",
107
+ "robots/panda/data/chunk-000/episode_000000.parquet",
108
+ repo_type="dataset",
109
+ )
110
+ episode = pq.read_table(path)
111
+ print(episode.schema)
112
+ ```
113
+
114
+ ## Episode selection
115
+
116
+ | Robot | Local ep | Source | Source ep | Inspection bucket | Task success | Grade | Score |
117
+ |---|---:|---|---:|---|---|---|---:|
118
+ | panda | 0 | [xrsc-cleanup-table-bimanual-panda-150ep](https://huggingface.co/datasets/VadRobotics/xrsc-cleanup-table-bimanual-panda-150ep/tree/5ecbcce36d5d833449b67d2a39342e287d9be589) | 74 | successful | yes | B | 3.71 |
119
+ | panda | 1 | [xrsc-cleanup-table-bimanual-panda-150ep](https://huggingface.co/datasets/VadRobotics/xrsc-cleanup-table-bimanual-panda-150ep/tree/5ecbcce36d5d833449b67d2a39342e287d9be589) | 89 | successful | yes | B | 3.57 |
120
+ | panda | 2 | [xrsc-cleanup-table-bimanual-panda-150ep](https://huggingface.co/datasets/VadRobotics/xrsc-cleanup-table-bimanual-panda-150ep/tree/5ecbcce36d5d833449b67d2a39342e287d9be589) | 119 | suboptimal | yes | D | 2.14 |
121
+ | panda | 3 | [xrsc-cleanup-table-bimanual-panda-150ep](https://huggingface.co/datasets/VadRobotics/xrsc-cleanup-table-bimanual-panda-150ep/tree/5ecbcce36d5d833449b67d2a39342e287d9be589) | 72 | suboptimal | yes | C | 3.00 |
122
+ | panda | 4 | [xrsc-cleanup-table-bimanual-panda-150ep](https://huggingface.co/datasets/VadRobotics/xrsc-cleanup-table-bimanual-panda-150ep/tree/5ecbcce36d5d833449b67d2a39342e287d9be589) | 131 | failure | no | D | 2.00 |
123
+ | widowxai | 0 | [xrsc-cleanup-table-bimanual-widowxai-150ep](https://huggingface.co/datasets/VadRobotics/xrsc-cleanup-table-bimanual-widowxai-150ep/tree/430e8bbedc8d18e5a7557df3ace7fcf1056ef6ee) | 11 | successful | yes | C | 3.14 |
124
+ | widowxai | 1 | [xrsc-cleanup-table-bimanual-widowxai-150ep](https://huggingface.co/datasets/VadRobotics/xrsc-cleanup-table-bimanual-widowxai-150ep/tree/430e8bbedc8d18e5a7557df3ace7fcf1056ef6ee) | 109 | successful | yes | C | 3.14 |
125
+ | widowxai | 2 | [xrsc-cleanup-table-bimanual-widowxai-150ep](https://huggingface.co/datasets/VadRobotics/xrsc-cleanup-table-bimanual-widowxai-150ep/tree/430e8bbedc8d18e5a7557df3ace7fcf1056ef6ee) | 140 | suboptimal | yes | D | 2.14 |
126
+ | widowxai | 3 | [xrsc-cleanup-table-bimanual-widowxai-150ep](https://huggingface.co/datasets/VadRobotics/xrsc-cleanup-table-bimanual-widowxai-150ep/tree/430e8bbedc8d18e5a7557df3ace7fcf1056ef6ee) | 37 | suboptimal | yes | D | 2.43 |
127
+ | widowxai | 4 | [xrsc-cleanup-table-bimanual-widowxai-150ep](https://huggingface.co/datasets/VadRobotics/xrsc-cleanup-table-bimanual-widowxai-150ep/tree/430e8bbedc8d18e5a7557df3ace7fcf1056ef6ee) | 122 | failure | no | D | 2.29 |
128
+
129
+ Selection buckets summarize why an episode is present in this inspection sample. Detailed phase annotations, D1–D7 scores, raw measurements, confidence, and source provenance remain available in `annotations.json`, `viewer_index/metadata.parquet`, and `sample_manifest.json`.
130
+
131
+ ## Modalities
132
+
133
+ - **RGB video:** all source cameras for every selected episode.
134
+ - **Metric depth:** packed float32 NPZ, referenced frame-by-frame from canonical and Viewer Parquet.
135
+ - **Instance segmentation:** lossless FFV1 MKV plus per-row label maps.
136
+ - **Robot state/action:** native, embodiment-specific joint and gripper vectors; no padding or mixed robot tensor.
137
+ - **End-effector:** packed state/action plus local/world TCP poses and linear velocity.
138
+ - **Objects:** per-frame 6-DoF poses, orientation, velocity, and task-specific state.
139
+ - **QA:** task outcome, failure reason, phase ranges, execution quality, task alignment, D1–D7 metrics, composite score, confidence, and grade.
140
+
141
+ ## Source revisions
142
+
143
+ The sample is reproducibly derived from these immutable private snapshots:
144
+
145
+ - `VadRobotics/xrsc-cleanup-table-bimanual-panda-150ep@5ecbcce36d5d833449b67d2a39342e287d9be589`
146
+ - `VadRobotics/xrsc-cleanup-table-bimanual-widowxai-150ep@430e8bbedc8d18e5a7557df3ace7fcf1056ef6ee`
147
+
148
+ Media payloads are byte-identical copies of the selected source files. Episode indices and paths are remapped only inside the five-episode robot subsets. `sample_manifest.json` preserves the complete mapping.
149
+
150
+ ## File layout
151
+
152
+ ```text
153
+ robots/panda/ meta · data · videos · annotations for 5 Panda episodes
154
+ robots/widowxai/ meta · data · videos · annotations for 5 WidowXAI episodes
155
+ viewer_data/ separate flattened panda and widowxai frame configs
156
+ viewer_index/ combined 10-row episode/provenance config
157
+ viewer_videos/ combined RGB Video-feature config
158
+ assets/ dataset_preview.gif showing RGB, depth, and segmentation
159
+ sample_manifest.json · annotations.json
160
+ ```
161
+
162
+ ## Notes and limitations
163
+
164
+ - This is a synthetic inspection sample, not a statistically representative training or evaluation benchmark.
165
+ - Robot schemas are deliberately separate. Do not concatenate state/action vectors without an explicit embodiment adapter.
166
+ - The joint-space and Cartesian actions are derived from achieved next-frame state; no commanded target stream exists.
167
+ - RGB has no audio. Depth and segmentation are available from one task-specific camera.
168
+ - Each robot subset intentionally contains one `cleanup_incomplete` task failure.
169
+ - `successful` and `suboptimal` are inspection-selection buckets; use the original annotations and scores for custom filtering.
170
+ - No standalone license file or explicit license terms were present in the source repositories. Do not assume redistribution rights.
171
+
172
+ ## Citation
173
+
174
+ If you use this sample, cite this repository plus the exact sample commit and source revisions listed above.
viewer_videos/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f31e1195e96ff66e730c193c7b99579f915edf55523d51d99f875c36ace954b
3
+ size 6282