HassanJbr commited on
Commit
225db82
·
verified ·
1 Parent(s): bee7997

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +96 -0
README.md CHANGED
@@ -1,3 +1,99 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
1
  ---
2
  license: mit
3
+ task_categories:
4
+ - robotics
5
+ - visual-question-answering
6
+ language:
7
+ - en
8
+ tags:
9
+ - scene-graph
10
+ - spatial-reasoning
11
+ - robot-manipulation
12
+ - vla
13
+ - vlm
14
+ - libero
15
+ - lerobot
16
+ pretty_name: EmbodimentSemantic
17
+ size_categories:
18
+ - 1K<n<10K
19
+ ---
20
+
21
+ # EmbodimentSemantic
22
+
23
+ **A Spatial Scene-Graph Dataset and Benchmark for Vision-Language Models on Embodied Manipulation Trajectories**
24
+
25
+ Hassan Jaber¹ · Refinath S N² · Luca Cagliero¹ · Christopher E. Mower² · Haitham Bou-Ammar²³
26
+
27
+ ¹Politecnico di Torino · ²Huawei Noah's Ark Lab · ³University College London
28
+
29
+ [![Paper](https://img.shields.io/badge/Paper-PDF-red?style=flat-square&logo=adobeacrobatreader&logoColor=white)](https://github.com/SemanticVLA/EmbodimentSemantic/blob/main/EmbodimentSemantic.pdf)
30
+ [![Code](https://img.shields.io/badge/Code-GitHub-black?style=flat-square&logo=github)](https://github.com/SemanticVLA/EmbodimentSemantic)
31
+
32
+ ---
33
+
34
+ ## Overview
35
+
36
+ EmbodimentSemantic is a benchmark dataset for evaluating whether vision-language models (VLMs) can recover exact spatial scene graphs from robot manipulation observations — and whether injecting those scene graphs into existing VLA policies improves downstream control.
37
+
38
+ The dataset has two components:
39
+
40
+ - **LIBERO Simulator Benchmark** — 500 demonstrations across 10 LIBERO-Spatial tasks (62,250 paired timesteps, 124,500 RGB frames). Ground-truth scene graphs are derived automatically from MuJoCo geometry, giving exact triplet-level supervision without manual annotation.
41
+ - **SO101 Real-Robot Dataset** — 257 teleoperated episodes across 5 tabletop bowl-placement tasks, collected with the low-cost SO101 arm. Includes external-camera, wrist-camera, and depth streams in LeRobot format.
42
+
43
+ ---
44
+
45
+ ## Files
46
+
47
+ | File | Size | Description |
48
+ |---|---|---|
49
+ | `libero_spatial_v5.zip` | 2.91 GB | LIBERO simulator benchmark: HDF5 demos with scene-graph annotations embedded under `obs/agentview_scene_graph` and `obs/robot0_eye_in_hand_scene_graph` |
50
+ | `SO1001_dataset.zip` | 6.13 GB | SO101 real-robot dataset in LeRobot format |
51
+
52
+ ---
53
+
54
+ ## Dataset Statistics
55
+
56
+ ### LIBERO Simulator Benchmark
57
+
58
+ | Attribute | Value |
59
+ |---|---|
60
+ | Tasks | 10 |
61
+ | Demonstrations | 500 (50 per task) |
62
+ | Recorded frames per camera | 62,250 |
63
+ | Total recorded frames (both cameras) | 124,500 |
64
+ | Frames per demo | 75–197 (mean 124.5) |
65
+ | Cameras | `agentview`, `eye_in_hand` |
66
+ | RGB resolution | 128 × 128 |
67
+ | Mean triplets / frame (agentview) | 42.0 |
68
+ | Mean triplets / frame (eye_in_hand) | 16.73 |
69
+
70
+ ### SO101 Real-Robot Dataset
71
+
72
+ | Attribute | Value |
73
+ |---|---|
74
+ | Tasks | 5 |
75
+ | Demonstrations | 257 (47–53 per task) |
76
+ | Total recorded frames (both cameras) | 240,598 |
77
+ | VLM eval frames (both cameras) | 8,252 |
78
+ | Cameras | `agent_view`, `wrist` |
79
+ | Frame rate | 30 FPS (1 frame/sec sampled) |
80
+ | Format | LeRobot |
81
+
82
+ ---
83
+
84
+ ## Spatial Ontology
85
+
86
+ **Objects (LIBERO):** `akita_black_bowl_1`, `akita_black_bowl_2`, `cookies_1`, `glazed_rim_porcelain_ramekin_1`, `plate_1`, `wooden_cabinet_1`, `flat_stove_1`
87
+
88
+ **Objects (SO101):** `black_bowl`, `red_drawer`, `black_stove`, `cookie`, `white_plate`
89
+
90
+ **Relations (both):**
91
+
92
+ | Relation | Description |
93
+ |---|---|
94
+ | `is_left_of` / `is_right_of` | Lateral world-frame ordering |
95
+ | `is_in_front_of` / `is_behind` | Depth world-frame ordering |
96
+ | `is_on_top_of` / `is_below_of` | Vertical support / stacking |
97
+ | `is_inside` / `contains` | Containment |
98
+
99
  ---