Update README.md
Browse files
README.md
CHANGED
|
@@ -60,11 +60,10 @@ Each frame contains:
|
|
| 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("
|
| 68 |
print(f"Episodes: {dataset.num_episodes}, Frames: {len(dataset)}")
|
| 69 |
|
| 70 |
# Access a frame
|
|
@@ -89,7 +88,6 @@ print(f"Force: {wrench[:3]} N, Torque: {wrench[3:]} Nm")
|
|
| 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 \
|
|
@@ -116,14 +114,15 @@ Commercial licensing available from EXOKERN.
|
|
| 116 |
We produce industrially calibrated force/torque manipulation data for enterprise robotics.
|
| 117 |
Contact-rich. Sensor-annotated. Industrially validated.
|
| 118 |
|
| 119 |
-
|
| 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/
|
| 128 |
}
|
| 129 |
-
```
|
|
|
|
| 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 |
```python
|
| 64 |
from lerobot.datasets.lerobot_dataset import LeRobotDataset
|
| 65 |
|
| 66 |
+
dataset = LeRobotDataset("EXOKERN/contactbench-forge-peginsert-v0")
|
| 67 |
print(f"Episodes: {dataset.num_episodes}, Frames: {len(dataset)}")
|
| 68 |
|
| 69 |
# Access a frame
|
|
|
|
| 88 |
- **Domain Randomization:** Default FORGE PegInsert parameters
|
| 89 |
|
| 90 |
## Reproduction
|
|
|
|
| 91 |
```bash
|
| 92 |
# 1. Train policy (~20-30 min on RTX 4090)
|
| 93 |
./isaaclab.sh -p scripts/reinforcement_learning/rl_games/train.py \
|
|
|
|
| 114 |
We produce industrially calibrated force/torque manipulation data for enterprise robotics.
|
| 115 |
Contact-rich. Sensor-annotated. Industrially validated.
|
| 116 |
|
| 117 |
+
🌐 [exokern.com](https://exokern.com) · 🤗 [huggingface.co/EXOKERN](https://huggingface.co/EXOKERN)
|
| 118 |
|
| 119 |
+
## Citation
|
| 120 |
```bibtex
|
| 121 |
@dataset{exokern_contactbench_v0_2026,
|
| 122 |
title={EXOKERN ContactBench v0: Peg Insertion with Force/Torque},
|
| 123 |
author={EXOKERN},
|
| 124 |
year={2026},
|
| 125 |
publisher={Hugging Face},
|
| 126 |
+
url={https://huggingface.co/datasets/EXOKERN/contactbench-forge-peginsert-v0}
|
| 127 |
}
|
| 128 |
+
```
|