Joocjun/GR1-Tabletop-NextState-300x24
GR1 Tabletop Merged LeRobot Datasets Merged and subsampled versions of the GR1 tabletop manipulation datasets from the NVIDIA PhysicalAI-Robotics-GR00T-X-Embodiment-Sim collection, formatted in LeRobot v2.0 format. Dataset Variants Variant Demos/Task Tasks Total Episodes Total Frames Approx Size 1000x24/ 1000 24 folders, 186 unique tasks 24,000 6,020,058 ~40 GB 300x24/ 300 24 folders, 186 unique tasks 7,200 1,803,236 ~12 GB 100x24/ 100 24 folders… See the full description on the dataset page: https://huggingface.co/datasets/Joocjun/GR1-Tabletop-NextState-300x24.
GR1 Tabletop Merged LeRobot Datasets
Merged and subsampled versions of the GR1 tabletop manipulation datasets from the NVIDIA PhysicalAI-Robotics-GR00T-X-Embodiment-Sim collection, formatted in LeRobot v2.0 format.
Dataset Variants
Source Dataset
The original per-task datasets were downloaded from: [nvidia/PhysicalAI-Robotics-GR00T-X-Embodiment-Sim](https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GR00T-X-Embodiment-Sim)
To download the original dataset:
# Install huggingface_hub
pip install huggingface_hub
# Download specific task datasets
from huggingface_hub import snapshot_download
snapshot_download(
repo_id="nvidia/PhysicalAI-Robotics-GR00T-X-Embodiment-Sim",
repo_type="dataset",
allow_patterns="gr1_unified.PnP*", # or specific task patterns
local_dir="./original_data"
)The 24 source task folders used (each with 1000 demos):
- 6 PnP tasks: Bottle→Cabinet, Can→Drawer, Cup→Drawer, Milk→Microwave, Potato→Microwave, Wine→Cabinet
- 18 PosttrainPnPNovel tasks: Various object transfers between surfaces (Cuttingboard→{Basket,Cardboardbox,Pan,Pot,Tieredbasket}, Placemat→{Basket,Bowl,Plate,Tieredshelf}, Plate→{Bowl,Cardboardbox,Pan,Plate}, Tray→{Cardboardbox,Plate,Pot,Tieredbasket,Tieredshelf})
Processing
Each merged dataset was created by:
- Subsampling: Randomly sampling N episodes (with seed=42) from each of the 24 task folders
- Merging: Combining all sampled episodes into a single dataset with:
- Re-indexed episode IDs (0 to total-1)
- Globally re-indexed task IDs across all source folders
- Updated parquet files with corrected
episode_index,task_index, andindexcolumns - Consolidated
meta/files (info.json,episodes.jsonl,tasks.jsonl,modality.json)
Note on task counts
The 100x24 variant has 185 unique tasks instead of 186. This is because some task folders contain multiple task variants (e.g., the PosttrainPnPNovelFromTrayToTieredbasket folder has 10 different object variants like eggplant, tomato, etc.). The "eggplant" variant only appears in 58 out of 1000 source episodes, so when randomly sampling only 100 episodes, none of the eggplant episodes were selected. This is expected behavior with random subsampling.
Dataset Structure (LeRobot v2.0)
<variant>/
├── data/
│ └── chunk-000/
│ ├── episode_000000.parquet
│ ├── episode_000001.parquet
│ └── ...
├── videos/
│ └── chunk-000/
│ └── observation.images.ego_view/
│ ├── episode_000000.mp4
│ ├── episode_000001.mp4
│ └── ...
└── meta/
├── info.json
├── episodes.jsonl
├── tasks.jsonl
├── modality.json
├── stats.json
└── relative_stats.jsonFeatures
Robot: GR1ArmsAndWaistFourierHands (44-DOF: arms, hands, legs, neck, waist)
Usage
# Download a specific variant
from huggingface_hub import snapshot_download
snapshot_download(
repo_id="Joocjun/GR1-Tabletop-Merged-LeRobot",
repo_type="dataset",
allow_patterns="100x24/**", # or "300x24/**" or "1000x24/**"
local_dir="./gr1_merged"
)License
Apache 2.0 (following the original NVIDIA dataset license)
Modification: Next-State Hand Actions
Hand action channels (lefthand indices 7-12, righthand indices 29-34) have been replaced with next-state values:
action[t][7:13] = observation.state[t+1][7:13]action[t][29:35] = observation.state[t+1][29:35]- Last timestep repeats current state.
stats.jsonremoved so training auto-regenerates normalization stats.
