lukasskellijs commited on
Commit
bb2e817
·
verified ·
1 Parent(s): bdc63a3

upload README.md

Browse files
Files changed (1) hide show
  1. README.md +56 -0
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - robotics
8
+ - isaac-sim
9
+ - assembly
10
+ - manipulation
11
+ configs:
12
+ - config_name: default
13
+ data_files: data/*/*.parquet
14
+ ---
15
+
16
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
17
+
18
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=lukasskellijs%2Fassembly_bench_2">
19
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
20
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-dark-xl.svg"/>
21
+ </a>
22
+
23
+ # assembly_bench_data
24
+
25
+ Contact-rich **assembly** demonstrations (NIST peg insert) generated by a privileged scripted IK
26
+ expert in NVIDIA Isaac Lab (Arena). Actions are the **native DROID joint-position** command
27
+ (7 absolute arm joint targets + binary gripper), so pi0.5/openpi/GR00T consume them directly.
28
+
29
+ - **Robot:** Franka Panda + Robotiq 2F-85 (DROID platform); expert drives a DifferentialIKController
30
+ (dls) into stiff PD joint-position control.
31
+ - **Control / record rate:** **15 Hz**.
32
+
33
+ ## Tasks (per-episode instruction)
34
+
35
+ | task | demos |
36
+ |------|-------|
37
+ | `pick up the 12 mm round peg and insert it into the hole` | 100 |
38
+ | `pick up the 16 mm round peg and insert it into the hole` | 100 |
39
+ | `pick up the 4 mm round peg and insert it into the hole` | 100 |
40
+ | `pick up the 8 mm round peg and insert it into the hole` | 100 |
41
+ | `pick up the 12 mm square peg and insert it into the hole` | 50 |
42
+ | `pick up the 16 mm square peg and insert it into the hole` | 50 |
43
+ | `pick up the 4 mm square peg and insert it into the hole` | 100 |
44
+ | `pick up the 8 mm square peg and insert it into the hole` | 100 |
45
+
46
+ ## Observation / action / state layout
47
+
48
+ | key | dtype | shape | meaning / units |
49
+ |-----|-------|-------|-----------------|
50
+ | `observation.images.front` | video (H.264, CRF 20) | (180,320,3) | third-person RGB, uint8, DROID-RLDS resolution |
51
+ | `observation.images.wrist` | video (H.264, CRF 20) | (180,320,3) | eye-in-hand RGB, uint8, DROID-RLDS resolution |
52
+ | `observation.state` | float32 | (8,) | joint_position (7, rad) + gripper_position (1, 0=open 1=closed) |
53
+ | `observation.joint_vel` | float32 | (7,) | arm joint velocities (rad/s, no gripper) |
54
+ | `observation.eef_pos` | float32 | (3,) | end-effector position, robot base frame (m) |
55
+ | `observation.eef_quat` | float32 | (4,) | end-effector orientation, world frame, **wxyz** |
56
+ | `action` | float32 | (8,) | 7 absolute arm joint-position targets (rad) + gripper (1: 1=close, 0=open) |