EXOKERN1 commited on
Commit
73ce5ca
·
verified ·
1 Parent(s): da94e33

Add dataset card with full documentation

Browse files
Files changed (1) hide show
  1. README.md +129 -0
README.md ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "EXOKERN ContactBench v0 — Peg Insertion with Force/Torque"
3
+ license: cc-by-nc-4.0
4
+ tags:
5
+ - robotics
6
+ - force-torque
7
+ - contact-rich
8
+ - manipulation
9
+ - insertion
10
+ - lerobot
11
+ - isaac-lab
12
+ - franka
13
+ - simulation
14
+ - benchmark
15
+ language:
16
+ - en
17
+ size_categories:
18
+ - 1K<n<10K
19
+ task_categories:
20
+ - robotics
21
+ ---
22
+
23
+ # EXOKERN ContactBench v0 — Peg Insertion with Force/Torque
24
+
25
+ <p align="center">
26
+ <b>The first publicly available insertion dataset with calibrated force/torque annotations.</b>
27
+ </p>
28
+
29
+ ## What is this?
30
+
31
+ This dataset contains **2,221 simulated peg-in-hole insertion episodes** with full **6-axis force/torque (wrench) data** at every timestep. It is generated in NVIDIA Isaac Lab using a Franka Emika Panda robot arm.
32
+
33
+ **Why this matters:** Over 95% of existing robotics datasets lack force/torque data. Yet contact-rich manipulation tasks — insertion, assembly, cable routing — fundamentally require haptic feedback for reliable execution. This dataset fills that gap.
34
+
35
+ ## Dataset Statistics
36
+
37
+ | Metric | Value |
38
+ |--------|-------|
39
+ | Episodes | 2,221 |
40
+ | Total Frames | 330,929 |
41
+ | Avg Episode Length | 149 steps |
42
+ | FPS | 20 Hz |
43
+ | Format | LeRobot v3.0 (Parquet) |
44
+ | Robot | Franka Emika Panda (7-DOF) |
45
+ | Simulator | NVIDIA Isaac Lab 2.3.x |
46
+ | Task | Peg-in-Hole Insertion (FORGE) |
47
+ | Size | ~75 MB |
48
+
49
+ ## Features
50
+
51
+ Each frame contains:
52
+
53
+ | Feature | Shape | Description |
54
+ |---------|-------|-------------|
55
+ | `observation.state` | (24,) | Flat observation tensor (joint pos/vel, ee pose, object pose) |
56
+ | **`observation.wrench`** | **(6,)** | **Force/Torque [Fx,Fy,Fz,Mx,My,Mz] in N/Nm** |
57
+ | `action` | (7,) | Joint position targets |
58
+ | `task` | string | Task description |
59
+
60
+ > **Note:** Isaac Lab Forge PegInsert uses `collapse_obs_dict` — all observations are compressed into a flat 24-tensor. Force/Torque is extracted separately via `env.unwrapped.force_sensor_smooth`.
61
+
62
+ ## Quick Start
63
+
64
+ ```python
65
+ from lerobot.datasets.lerobot_dataset import LeRobotDataset
66
+
67
+ dataset = LeRobotDataset("exokern/contactbench-forge-peginsert-v0")
68
+ print(f"Episodes: {dataset.num_episodes}, Frames: {len(dataset)}")
69
+
70
+ # Access a frame
71
+ frame = dataset[0]
72
+ wrench = frame["observation.wrench"] # Force/Torque tensor (6,)
73
+ print(f"Force: {wrench[:3]} N, Torque: {wrench[3:]} Nm")
74
+ ```
75
+
76
+ ## Data Collection
77
+
78
+ - **Policy:** rl_games PPO, trained ~200 epochs (reward ~352)
79
+ - **Environment:** `Isaac-Forge-PegInsert-Direct-v0` (NVIDIA Isaac Lab 2.3.x)
80
+ - **Collection:** Single-environment rollout (`num_envs=1`), deterministic policy
81
+ - **Force/Torque Source:** `env.unwrapped.force_sensor_smooth` (6-axis, smoothed)
82
+ - **Episode Horizon:** Fixed 149 steps (no early termination)
83
+
84
+ ## Data Quality
85
+
86
+ - **Sensor Bandwidth:** 20 Hz control frequency
87
+ - **Force Range:** Typical Fx,Fy,Fz: [-50, 50] N; Mx,My,Mz: [-10, 10] Nm
88
+ - **Noise Model:** Isaac Lab default contact dynamics (PhysX GPU)
89
+ - **Domain Randomization:** Default FORGE PegInsert parameters
90
+
91
+ ## Reproduction
92
+
93
+ ```bash
94
+ # 1. Train policy (~20-30 min on RTX 4090)
95
+ ./isaaclab.sh -p scripts/reinforcement_learning/rl_games/train.py \
96
+ --task Isaac-Forge-PegInsert-Direct-v0 --headless --num_envs 512
97
+
98
+ # 2. Collect data (~2 episodes/min with num_envs=1)
99
+ ./isaaclab.sh -p /workspace/play_with_logging.py \
100
+ --task Isaac-Forge-PegInsert-Direct-v0 --headless --num_envs 1 \
101
+ --checkpoint /path/to/Forge.pth
102
+
103
+ # 3. Build LeRobot dataset (in conda env, NOT Isaac Sim Python!)
104
+ python build_lerobot_dataset.py
105
+ ```
106
+
107
+ ## License
108
+
109
+ CC-BY-NC 4.0 — Free for research and non-commercial use.
110
+ Commercial licensing available from EXOKERN.
111
+
112
+ ## About EXOKERN
113
+
114
+ **EXOKERN — The Data Engine for Physical AI**
115
+
116
+ We produce industrially calibrated force/torque manipulation data for enterprise robotics.
117
+ Contact-rich. Sensor-annotated. Industrially validated.
118
+
119
+ ## Citation
120
+
121
+ ```bibtex
122
+ @dataset{exokern_contactbench_v0_2026,
123
+ title={EXOKERN ContactBench v0: Peg Insertion with Force/Torque},
124
+ author={EXOKERN},
125
+ year={2026},
126
+ publisher={Hugging Face},
127
+ url={https://huggingface.co/datasets/exokern/contactbench-forge-peginsert-v0}
128
+ }
129
+ ```