File size: 1,782 Bytes
5cc99ec
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
license: apache-2.0
tags:
- robotics
- manipulation
- lerobot
- groot
- nvidia
- lora
- pick-and-place
base_model: nvidia/GR00T-N1.5-3B
datasets:
- so101-safe-worker
pipeline_tag: robotics
---

# GR00T Pick and Place Cube v1

A fine-tuned **NVIDIA GR00T N1.5** model for robotic pick-and-place manipulation tasks.

## Model Description

This model was fine-tuned using **LoRA** (Low-Rank Adaptation) on the SO-101 robot arm dataset for cube pick-and-place tasks.

### Training Details

| Parameter | Value |
|-----------|-------|
| Base Model | nvidia/GR00T-N1.5-3B |
| Fine-tuning Method | LoRA |
| LoRA Rank | 64 |
| LoRA Alpha | 16 |
| Training Steps | 50,000 |
| Batch Size | 8 |
| Dataset | 21,557 episodes / 1.9M frames |
| Task | Pick up cube and place in bin |
| Cameras | Front + Wrist (128x128) |
| Action Space | 4D (x, y, z, gripper) |

### Performance

- **Training Loss**: 1.17 → 0.12 (90% reduction)
- **Evaluation Success Rate**: ~60% (with proper action unnormalization)

## Usage

```python
from lerobot.policies.groot.modeling_groot import GrootPolicy

# Load the model
policy = GrootPolicy.from_pretrained("gpudad/groot-pick-place-cube-v1")
policy.to("cuda")
policy.eval()

# Use for inference
action = policy.select_action(observation_batch)
```

### Important: Action Unnormalization

The model outputs actions in normalized [-1, 1] space. For the SO-101 robot:
- XYZ: [-1, 1] 
- Gripper: needs mapping from [-1, 1] to [0, 2]

```python
# Unnormalize actions
action_min = torch.tensor([-1, -1, -1, 0])
action_max = torch.tensor([1, 1, 1, 2])
unnormalized = (action + 1) / 2 * (action_max - action_min) + action_min
```

## Framework

Trained using [LeRobot](https://github.com/huggingface/lerobot) 🤖

## License

Apache 2.0 (same as base GR00T model)