rajeshramana/groot-n1.6-pick-orange
Robotics • 3B • Updated • 10
Error code: TooBigContentError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Pre-processed version of LightwheelAI/leisaac-pick-orange ready for GR00T N1.6 fine-tuning.
The original dataset requires several modifications to work with GR00T N1.6. This version has all fixes pre-applied:
| Fix | Original | This Dataset |
|---|---|---|
| Video codec | AV1 | H.264 (decord-compatible) |
| Annotation column | Missing | Integer task_index added to all parquet files |
| modality.json | Missing | Included (state/action/video/annotation) |
| Format | LeRobot v2.1 | LeRobot v2.1 (compatible) |
Index | Joint | Range (deg)
------|----------------|-------------
0 | shoulder_pan | [-38, 52]
1 | shoulder_lift | [-100, 64]
2 | elbow_flex | [-99, 99]
3 | wrist_flex | [22, 100]
4 | wrist_roll | [-14, 51]
5 | gripper | [1, 91]
{
"state": {
"single_arm": {"start": 0, "end": 5},
"gripper": {"start": 5, "end": 6}
},
"action": {
"single_arm": {"start": 0, "end": 5},
"gripper": {"start": 5, "end": 6}
},
"video": {
"front": {"original_key": "observation.images.front"},
"wrist": {"original_key": "observation.images.wrist"}
},
"annotation": {
"human.task_description": {"original_key": "annotation.human.task_description"}
}
}
# 1. Clone GR00T
git clone https://github.com/NVIDIA/Isaac-GR00T.git
# 2. Download this dataset
huggingface-cli download rajeshramana/leisaac-pick-orange-prepared \
--local-dir ./demo_data/pick_orange --repo-type dataset
# 3. Fine-tune
python gr00t/experiment/launch_finetune.py \
--base-model-path nvidia/GR00T-N1.6-3B \
--dataset-path ./demo_data/pick_orange \
--modality-config-path ./so101_pick_orange_config.py \
--embodiment-tag NEW_EMBODIMENT \
--num-gpus 1 \
--max-steps 10000 \
--no-tune-diffusion-model
A model fine-tuned on this dataset for 10K steps (loss 0.017) is available at: rajeshramana/groot-n1.6-pick-orange
Re-encoded all 120 videos from AV1 → H.264:
ffmpeg -y -i input.mp4 -c:v libx264 -crf 23 -preset fast -pix_fmt yuv420p output.mp4
Added annotation column to all 60 episode parquet files:
df["annotation.human.task_description"] = 0 # integer task_index
Created modality.json mapping flat columns to GR00T's expected modality structure
@misc{leisaac-pick-orange-prepared,
title={LeIsaac PickOrange Prepared Dataset for GR00T},
author={Rajesh Kumar},
year={2026},
url={https://huggingface.co/datasets/rajeshramana/leisaac-pick-orange-prepared}
}