yypeng666 commited on
Commit
eaaf38d
·
verified ·
1 Parent(s): 34291fc

docs: add README.md

Browse files
Files changed (1) hide show
  1. README.md +75 -0
README.md ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories: [robotics]
4
+ tags: [robotics, manipulation, grasping, grasp-annotation, franka, maniguard]
5
+ pretty_name: ManiGuard Grasp Annotations
6
+ size_categories: [1K<n<10K]
7
+ ---
8
+
9
+ # ManiGuard Grasp Annotations
10
+
11
+ The curated grasp database behind ManiGuard's automated demonstration generation:
12
+ **1,547 annotated 6-DoF grasps over 221 object instances** across the six
13
+ ManiGuard-Bench task families. Each grasp is an eef-link target pose in the object's
14
+ local frame for the long-finger Franka Panda gripper
15
+ ([`franka-panda-longfinger`](https://huggingface.co/datasets/IDEAS-Lab-Northwestern/franka-panda-longfinger));
16
+ at runtime the world grasp target is simply `T_eef_world = T_object_world @ T_grasp_local`.
17
+
18
+ Grasps were placed and reviewed per object instance in a viser-based annotation tool
19
+ (`maniguard/data/datagen/annotation/` in the [codebase](https://github.com/NU-IDEAS-Lab/ManiGuard));
20
+ every object carries several alternatives (median 5, up to 40) so the motion planner can
21
+ fall back when a grasp is unreachable or blocked.
22
+
23
+ ## Files
24
+
25
+ | File | Contents |
26
+ |---|---|
27
+ | `grasp_annotations.json` | the database: `objects` keyed by `category/model`, each with `bbox_size`, `upright_orientation_xyzw`, and a `grasps` list (`position`, `orientation_xyzw` in the object-local frame, `approach_hint`, `source`) |
28
+ | `cabinet_geom.json` | cached drawer-link geometry scalars for the cabinet family (slide axis/sign, stroke, root-local AABBs) |
29
+
30
+ `source` per grasp: `freedrag` (953) and `click` (582) — the tool's two manual placement
31
+ modes — plus `topdown_gen` (12) tool-proposed top-down poses.
32
+
33
+ ## No upstream geometry
34
+
35
+ This dataset contains **poses and metadata only** — no meshes or other geometry derived
36
+ from the [BEHAVIOR-1K](https://github.com/StanfordVL/BEHAVIOR-1K) assets, per the
37
+ upstream asset terms. The `mesh` fields are relative path strings used by the annotation
38
+ tool. Running ManiGuard's datagen does **not** require meshes; to use the annotation
39
+ *tool* (add or edit grasps), regenerate them locally from your own BEHAVIOR-1K download
40
+ with `maniguard/data/datagen/annotation/extract_meshes.py`.
41
+
42
+ ## Usage
43
+
44
+ ManiGuard's datagen loader (`maniguard.data.datagen.grasp_db`) reads the database from
45
+ `outputs/grasp_annotation/` under the repo root:
46
+
47
+ ```bash
48
+ hf download IDEAS-Lab-Northwestern/maniguard-grasp-annotations \
49
+ --repo-type dataset --local-dir outputs/grasp_annotation
50
+ ```
51
+
52
+ See the [data-collection docs](https://nu-ideas-lab.github.io/ManiGuard/data_collection/)
53
+ for the full scripted-datagen pipeline.
54
+
55
+ ## Paper & Citation
56
+
57
+ Part of **ManiGuard** — [paper (arXiv:2608.17386)](https://arxiv.org/abs/2608.17386) ·
58
+ [code](https://github.com/NU-IDEAS-Lab/ManiGuard) ·
59
+ [docs](https://nu-ideas-lab.github.io/ManiGuard/)
60
+
61
+ ```bibtex
62
+ @misc{peng2026maniguard,
63
+ title = {{MANIGUARD}: A Benchmark and Data Suite for Specification-Grounded
64
+ Safety Evaluation and Improvement of Robotic Manipulation},
65
+ author = {Peng, Yiyan and Wang, Philip and Zhan, Simon Sinong and Lyu, Yiqi
66
+ and Ni, Zhenyang and Yan, Jixin and Wong, Fiorelli and Jiao, Ruochen
67
+ and Yin, Hang and Cao, Xinyu and Shao, Huajie and Li, Manling
68
+ and Zhang, Ruohan and Zhu, Qi},
69
+ year = {2026},
70
+ eprint = {2608.17386},
71
+ archivePrefix = {arXiv},
72
+ primaryClass = {cs.RO},
73
+ url = {https://arxiv.org/abs/2608.17386},
74
+ }
75
+ ```