Views
No views yet
nvidia/GR00T-N1.7-3B
on the cube_to_bowl_5 demo dataset bundled with Isaac-GR00T.| Parameter | Value |
|---|---|
| Base model | nvidia/GR00T-N1.7-3B |
| Dataset | demo_data/cube_to_bowl_5 (5 episodes, ~4150 frames, SO-101 follower arm) |
| Embodiment tag | NEW_EMBODIMENT |
| Steps | 100 (MAX_STEPS=100) |
| Global batch size | 8 |
| Learning rate | 1e-4 (cosine, 5% warmup) |
| Weight decay | 1e-5 |
| Train runtime | 155 s on a single RTX PRO 6000 Blackwell |
| Loss trajectory | 1.146 → 0.984 |
| GPU | NVIDIA RTX PRO 6000 Blackwell Server Edition (sm_120, 96 GB) |
| CUDA / driver | 12.8 / 580.126.09 |
| Trainable params | 1.62 B / 3.14 B (51.5%) |
optimizer.pt (~13 GB) and rng_state.pth
have been omitted to keep the repository small.1from gr00t.policy.gr00t_policy import Gr00tPolicy
2from gr00t.data.embodiment_tags import EmbodimentTag
3
4policy = Gr00tPolicy(
5 model_path="m3/groot-n1.7-cube-bowl-100steps",
6 embodiment_tag=EmbodimentTag.NEW_EMBODIMENT,
7 modality_config=...,
8 modality_transform=...,
9 device="cuda:0",
10)cube_to_bowl_5 dataset has only 5 episodes; the model is heavily
underfit and will not generalize beyond its training distribution.MAX_STEPS=2000+ per
the Isaac-GR00T finetune guide.