Robotics
LeRobot
Safetensors
pi05
vision-language-action
imitation-learning
ur7e
HyeonseokE commited on
Commit
4b47817
·
verified ·
1 Parent(s): b3afa1f

Upload pi0.5 UR7e PickandPlace 30-epoch (step 4300) with model card

Browse files
README.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ library_name: lerobot
4
+ pipeline_tag: robotics
5
+ model_name: pi05
6
+ base_model: lerobot/pi05_base
7
+ datasets:
8
+ - CoRL2026-CSI/UR7e_CaP_PickandPlace_100epi_10fps
9
+ tags:
10
+ - robotics
11
+ - lerobot
12
+ - pi05
13
+ - vision-language-action
14
+ - imitation-learning
15
+ - safetensors
16
+ - ur7e
17
+ ---
18
+
19
+ # Model Card for π0.5 — UR7e PickandPlace (30 epoch)
20
+
21
+ **π₀.₅ (Pi05) Policy**
22
+
23
+ π₀.₅ is a Vision-Language-Action model with open-world generalization, from
24
+ Physical Intelligence. The LeRobot implementation is adapted from their open
25
+ source OpenPI repository. See the
26
+ [Physical Intelligence π₀.₅ blog post](https://www.physicalintelligence.company/blog/pi05).
27
+
28
+ This checkpoint is a **fine-tune of [`lerobot/pi05_base`](https://huggingface.co/lerobot/pi05_base)**
29
+ on the [`CoRL2026-CSI/UR7e_CaP_PickandPlace_100epi_10fps`](https://huggingface.co/datasets/CoRL2026-CSI/UR7e_CaP_PickandPlace_100epi_10fps)
30
+ dataset for a UR7e single-arm pick-and-place task.
31
+
32
+ This policy has been trained and pushed to the Hub using
33
+ [LeRobot](https://github.com/huggingface/lerobot). See the full documentation at
34
+ [LeRobot Docs](https://huggingface.co/docs/lerobot/index).
35
+
36
+ ---
37
+
38
+ ## Training Summary
39
+
40
+ | Field | Value |
41
+ |---|---|
42
+ | Base model | `lerobot/pi05_base` |
43
+ | Dataset | `CoRL2026-CSI/UR7e_CaP_PickandPlace_100epi_10fps` (100 eps, 35,878 frames, 10 fps) |
44
+ | Robot | UR7e single-arm, 7-DoF (6 joints + gripper) |
45
+ | Cameras | `realsense_topview`, `realsense_wrist` (renamed → `base_0_rgb`/`left_wrist_0_rgb`) |
46
+ | Steps | 4,300 (≈ 30 epoch · 35878 × 30 / 256) |
47
+ | Batch | 32 × 2 GPU × 4 grad_accum = 256 per optimizer-step samples |
48
+ | VLM / Action expert | PaliGemma `gemma_2b` / `gemma_300m`, `bfloat16` |
49
+ | Optimizer | AdamW (lr 1e-4, betas (0.9, 0.95), wd 1e-10), cosine decay w/ warmup 1000 |
50
+ | Chunk / Action steps | 50 / 50 |
51
+ | Memory | `gradient_checkpointing=true`, `compile_model=false` |
52
+ | Normalization | ACTION/STATE = `MEAN_STD`, VISUAL = `IDENTITY` |
53
+ | Image augmentation | brightness, contrast, saturation, hue, sharpness, affine (max 3, random order) |
54
+ | Hardware | 2× NVIDIA RTX PRO 6000 Blackwell |
55
+
56
+ `action`/`observation.state` dim 은 7 이며, π0.5 의 `max_action_dim=32`, `max_state_dim=32` 으로 자동 zero-pad 됩니다.
57
+
58
+ ---
59
+
60
+ ## How to Get Started
61
+
62
+ ### Inference (load + step)
63
+
64
+ ```python
65
+ import torch
66
+ from lerobot.policies.pi05.modeling_pi05 import PI05Policy
67
+
68
+ policy = PI05Policy.from_pretrained("CoRL2026-CSI/pi05-UR7e-PickandPlace-30epoch")
69
+ policy.to("cuda").eval()
70
+
71
+ # observation 의 카메라 키는 학습 시 사용한 이름(`observation.images.base_0_rgb`,
72
+ # `observation.images.left_wrist_0_rgb`) 과 동일해야 합니다.
73
+ with torch.inference_mode():
74
+ action = policy.select_action(observation)
75
+ ```
76
+
77
+ ### Continue fine-tuning
78
+
79
+ ```bash
80
+ lerobot-train \
81
+ --policy.path=CoRL2026-CSI/pi05-UR7e-PickandPlace-30epoch \
82
+ --dataset.repo_id=CoRL2026-CSI/UR7e_CaP_PickandPlace_100epi_10fps \
83
+ --output_dir=outputs/train/pi05_ur7e_pickandplace_ft \
84
+ --job_name=pi05_ur7e_pickandplace_ft \
85
+ --batch_size=32 --gradient_accumulation_steps=4 --steps=1000 \
86
+ --policy.device=cuda --policy.dtype=bfloat16 \
87
+ --policy.gradient_checkpointing=true --wandb.enable=true
88
+ ```
89
+
90
+ 원본 학습 스크립트는 `scripts/cap/pi05_cap_ur7e_pickandplace.sh` 이며,
91
+ 정확한 hyperparameter 는 이 리포의 `train_config.json` 으로도 재구성 가능합니다.
92
+
93
+ ---
94
+
95
+ ## Model Details
96
+
97
+ - **License:** apache-2.0
98
+ - **Base model:** [`lerobot/pi05_base`](https://huggingface.co/lerobot/pi05_base)
99
+ - **Library:** [LeRobot](https://github.com/huggingface/lerobot)
100
+ - **Trained by:** CoRL2026-CSI
config.json ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "pi05",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.images.base_0_rgb": {
6
+ "type": "VISUAL",
7
+ "shape": [
8
+ 3,
9
+ 224,
10
+ 224
11
+ ]
12
+ },
13
+ "observation.images.left_wrist_0_rgb": {
14
+ "type": "VISUAL",
15
+ "shape": [
16
+ 3,
17
+ 224,
18
+ 224
19
+ ]
20
+ },
21
+ "observation.images.right_wrist_0_rgb": {
22
+ "type": "VISUAL",
23
+ "shape": [
24
+ 3,
25
+ 224,
26
+ 224
27
+ ]
28
+ },
29
+ "observation.state": {
30
+ "type": "STATE",
31
+ "shape": [
32
+ 32
33
+ ]
34
+ }
35
+ },
36
+ "output_features": {
37
+ "action": {
38
+ "type": "ACTION",
39
+ "shape": [
40
+ 7
41
+ ]
42
+ }
43
+ },
44
+ "device": "cuda",
45
+ "use_amp": false,
46
+ "use_peft": false,
47
+ "push_to_hub": false,
48
+ "repo_id": null,
49
+ "private": null,
50
+ "tags": null,
51
+ "license": null,
52
+ "pretrained_path": "lerobot/pi05_base",
53
+ "paligemma_variant": "gemma_2b",
54
+ "action_expert_variant": "gemma_300m",
55
+ "dtype": "bfloat16",
56
+ "chunk_size": 50,
57
+ "n_action_steps": 50,
58
+ "max_state_dim": 32,
59
+ "max_action_dim": 32,
60
+ "num_inference_steps": 10,
61
+ "time_sampling_beta_alpha": 1.5,
62
+ "time_sampling_beta_beta": 1.0,
63
+ "time_sampling_scale": 0.999,
64
+ "time_sampling_offset": 0.001,
65
+ "min_period": 0.004,
66
+ "max_period": 4.0,
67
+ "use_relative_actions": false,
68
+ "relative_exclude_joints": [
69
+ "gripper"
70
+ ],
71
+ "action_feature_names": [
72
+ "shoulder_pan.pos",
73
+ "shoulder_lift.pos",
74
+ "elbow.pos",
75
+ "wrist_1.pos",
76
+ "wrist_2.pos",
77
+ "wrist_3.pos",
78
+ "gripper.pos"
79
+ ],
80
+ "rtc_config": null,
81
+ "image_resolution": [
82
+ 224,
83
+ 224
84
+ ],
85
+ "empty_cameras": 0,
86
+ "tokenizer_max_length": 200,
87
+ "normalization_mapping": {
88
+ "ACTION": "MEAN_STD",
89
+ "STATE": "MEAN_STD",
90
+ "VISUAL": "IDENTITY"
91
+ },
92
+ "gradient_checkpointing": true,
93
+ "compile_model": false,
94
+ "compile_mode": "max-autotune",
95
+ "freeze_vision_encoder": false,
96
+ "train_expert_only": false,
97
+ "optimizer_lr": 2.5e-05,
98
+ "optimizer_betas": [
99
+ 0.9,
100
+ 0.95
101
+ ],
102
+ "optimizer_eps": 1e-08,
103
+ "optimizer_weight_decay": 0.01,
104
+ "optimizer_grad_clip_norm": 1.0,
105
+ "scheduler_warmup_steps": 1000,
106
+ "scheduler_decay_steps": 30000,
107
+ "scheduler_decay_lr": 2.5e-06
108
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59130fbaffbf1ed7ad611dcc85de8d03a2a9827a064b77eb26017342c9797693
3
+ size 9354050752
policy_postprocessor.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "policy_postprocessor",
3
+ "steps": [
4
+ {
5
+ "registry_name": "unnormalizer_processor",
6
+ "config": {
7
+ "eps": 1e-08,
8
+ "features": {
9
+ "action": {
10
+ "type": "ACTION",
11
+ "shape": [
12
+ 7
13
+ ]
14
+ }
15
+ },
16
+ "norm_map": {
17
+ "ACTION": "MEAN_STD",
18
+ "STATE": "MEAN_STD",
19
+ "VISUAL": "IDENTITY"
20
+ }
21
+ },
22
+ "state_file": "policy_postprocessor_step_0_unnormalizer_processor.safetensors"
23
+ },
24
+ {
25
+ "registry_name": "device_processor",
26
+ "config": {
27
+ "device": "cpu",
28
+ "float_dtype": null
29
+ }
30
+ }
31
+ ]
32
+ }
policy_postprocessor_step_0_unnormalizer_processor.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3994c388ba8dbf283e60b9b240d944c58ca6472bc933a52c48708db2be8e2b3
3
+ size 15124
policy_preprocessor.json ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "policy_preprocessor",
3
+ "steps": [
4
+ {
5
+ "registry_name": "rename_observations_processor",
6
+ "config": {
7
+ "rename_map": {
8
+ "observation.images.realsense_topview": "observation.images.base_0_rgb",
9
+ "observation.images.realsense_wrist": "observation.images.left_wrist_0_rgb"
10
+ }
11
+ }
12
+ },
13
+ {
14
+ "registry_name": "to_batch_processor",
15
+ "config": {}
16
+ },
17
+ {
18
+ "registry_name": "normalizer_processor",
19
+ "config": {
20
+ "eps": 1e-08,
21
+ "features": {
22
+ "observation.images.base_0_rgb": {
23
+ "type": "VISUAL",
24
+ "shape": [
25
+ 3,
26
+ 224,
27
+ 224
28
+ ]
29
+ },
30
+ "observation.images.left_wrist_0_rgb": {
31
+ "type": "VISUAL",
32
+ "shape": [
33
+ 3,
34
+ 224,
35
+ 224
36
+ ]
37
+ },
38
+ "observation.images.right_wrist_0_rgb": {
39
+ "type": "VISUAL",
40
+ "shape": [
41
+ 3,
42
+ 224,
43
+ 224
44
+ ]
45
+ },
46
+ "observation.state": {
47
+ "type": "STATE",
48
+ "shape": [
49
+ 32
50
+ ]
51
+ },
52
+ "action": {
53
+ "type": "ACTION",
54
+ "shape": [
55
+ 7
56
+ ]
57
+ }
58
+ },
59
+ "norm_map": {
60
+ "ACTION": "MEAN_STD",
61
+ "STATE": "MEAN_STD",
62
+ "VISUAL": "IDENTITY"
63
+ }
64
+ },
65
+ "state_file": "policy_preprocessor_step_2_normalizer_processor.safetensors"
66
+ },
67
+ {
68
+ "registry_name": "pi05_prepare_state_tokenizer_processor_step",
69
+ "config": {}
70
+ },
71
+ {
72
+ "registry_name": "tokenizer_processor",
73
+ "config": {
74
+ "max_length": 200,
75
+ "task_key": "task",
76
+ "padding_side": "right",
77
+ "padding": "max_length",
78
+ "truncation": true,
79
+ "tokenizer_name": "google/paligemma-3b-pt-224"
80
+ }
81
+ },
82
+ {
83
+ "registry_name": "device_processor",
84
+ "config": {
85
+ "device": "cuda",
86
+ "float_dtype": null
87
+ }
88
+ }
89
+ ]
90
+ }
policy_preprocessor_step_2_normalizer_processor.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3994c388ba8dbf283e60b9b240d944c58ca6472bc933a52c48708db2be8e2b3
3
+ size 15124
train_config.json ADDED
@@ -0,0 +1,251 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "CoRL2026-CSI/UR7e_CaP_PickandPlace_100epi_10fps",
4
+ "root": null,
5
+ "episodes": null,
6
+ "image_transforms": {
7
+ "enable": true,
8
+ "max_num_transforms": 3,
9
+ "random_order": true,
10
+ "tfs": {
11
+ "brightness": {
12
+ "weight": 1.0,
13
+ "type": "ColorJitter",
14
+ "kwargs": {
15
+ "brightness": [
16
+ 0.8,
17
+ 1.2
18
+ ]
19
+ }
20
+ },
21
+ "contrast": {
22
+ "weight": 1.0,
23
+ "type": "ColorJitter",
24
+ "kwargs": {
25
+ "contrast": [
26
+ 0.8,
27
+ 1.2
28
+ ]
29
+ }
30
+ },
31
+ "saturation": {
32
+ "weight": 1.0,
33
+ "type": "ColorJitter",
34
+ "kwargs": {
35
+ "saturation": [
36
+ 0.5,
37
+ 1.5
38
+ ]
39
+ }
40
+ },
41
+ "hue": {
42
+ "weight": 1.0,
43
+ "type": "ColorJitter",
44
+ "kwargs": {
45
+ "hue": [
46
+ -0.05,
47
+ 0.05
48
+ ]
49
+ }
50
+ },
51
+ "sharpness": {
52
+ "weight": 1.0,
53
+ "type": "SharpnessJitter",
54
+ "kwargs": {
55
+ "sharpness": [
56
+ 0.5,
57
+ 1.5
58
+ ]
59
+ }
60
+ },
61
+ "affine": {
62
+ "weight": 1.0,
63
+ "type": "RandomAffine",
64
+ "kwargs": {
65
+ "degrees": [
66
+ -5.0,
67
+ 5.0
68
+ ],
69
+ "translate": [
70
+ 0.05,
71
+ 0.05
72
+ ]
73
+ }
74
+ }
75
+ }
76
+ },
77
+ "revision": null,
78
+ "use_imagenet_stats": true,
79
+ "video_backend": "torchcodec",
80
+ "streaming": false
81
+ },
82
+ "env": null,
83
+ "policy": {
84
+ "type": "pi05",
85
+ "n_obs_steps": 1,
86
+ "input_features": {
87
+ "observation.images.base_0_rgb": {
88
+ "type": "VISUAL",
89
+ "shape": [
90
+ 3,
91
+ 224,
92
+ 224
93
+ ]
94
+ },
95
+ "observation.images.left_wrist_0_rgb": {
96
+ "type": "VISUAL",
97
+ "shape": [
98
+ 3,
99
+ 224,
100
+ 224
101
+ ]
102
+ },
103
+ "observation.images.right_wrist_0_rgb": {
104
+ "type": "VISUAL",
105
+ "shape": [
106
+ 3,
107
+ 224,
108
+ 224
109
+ ]
110
+ },
111
+ "observation.state": {
112
+ "type": "STATE",
113
+ "shape": [
114
+ 32
115
+ ]
116
+ }
117
+ },
118
+ "output_features": {
119
+ "action": {
120
+ "type": "ACTION",
121
+ "shape": [
122
+ 7
123
+ ]
124
+ }
125
+ },
126
+ "device": "cuda",
127
+ "use_amp": false,
128
+ "use_peft": false,
129
+ "push_to_hub": false,
130
+ "repo_id": null,
131
+ "private": null,
132
+ "tags": null,
133
+ "license": null,
134
+ "pretrained_path": "lerobot/pi05_base",
135
+ "paligemma_variant": "gemma_2b",
136
+ "action_expert_variant": "gemma_300m",
137
+ "dtype": "bfloat16",
138
+ "chunk_size": 50,
139
+ "n_action_steps": 50,
140
+ "max_state_dim": 32,
141
+ "max_action_dim": 32,
142
+ "num_inference_steps": 10,
143
+ "time_sampling_beta_alpha": 1.5,
144
+ "time_sampling_beta_beta": 1.0,
145
+ "time_sampling_scale": 0.999,
146
+ "time_sampling_offset": 0.001,
147
+ "min_period": 0.004,
148
+ "max_period": 4.0,
149
+ "use_relative_actions": false,
150
+ "relative_exclude_joints": [
151
+ "gripper"
152
+ ],
153
+ "action_feature_names": [
154
+ "shoulder_pan.pos",
155
+ "shoulder_lift.pos",
156
+ "elbow.pos",
157
+ "wrist_1.pos",
158
+ "wrist_2.pos",
159
+ "wrist_3.pos",
160
+ "gripper.pos"
161
+ ],
162
+ "rtc_config": null,
163
+ "image_resolution": [
164
+ 224,
165
+ 224
166
+ ],
167
+ "empty_cameras": 0,
168
+ "tokenizer_max_length": 200,
169
+ "normalization_mapping": {
170
+ "ACTION": "MEAN_STD",
171
+ "STATE": "MEAN_STD",
172
+ "VISUAL": "IDENTITY"
173
+ },
174
+ "gradient_checkpointing": true,
175
+ "compile_model": false,
176
+ "compile_mode": "max-autotune",
177
+ "freeze_vision_encoder": false,
178
+ "train_expert_only": false,
179
+ "optimizer_lr": 2.5e-05,
180
+ "optimizer_betas": [
181
+ 0.9,
182
+ 0.95
183
+ ],
184
+ "optimizer_eps": 1e-08,
185
+ "optimizer_weight_decay": 0.01,
186
+ "optimizer_grad_clip_norm": 1.0,
187
+ "scheduler_warmup_steps": 1000,
188
+ "scheduler_decay_steps": 30000,
189
+ "scheduler_decay_lr": 2.5e-06
190
+ },
191
+ "output_dir": "/workspace/train_with_lerobot/outputs/train/cap_pi05_ur7e_pickandplace",
192
+ "job_name": "cap_pi05_ur7e_pickandplace",
193
+ "resume": false,
194
+ "seed": 1000,
195
+ "cudnn_deterministic": false,
196
+ "num_workers": 16,
197
+ "persistent_workers": false,
198
+ "batch_size": 32,
199
+ "gradient_accumulation_steps": 4,
200
+ "steps": 4300,
201
+ "eval_freq": 0,
202
+ "log_freq": 100,
203
+ "tolerance_s": 0.0001,
204
+ "save_checkpoint": true,
205
+ "save_freq": 4300,
206
+ "use_policy_training_preset": true,
207
+ "optimizer": {
208
+ "type": "adamw",
209
+ "lr": 2.5e-05,
210
+ "weight_decay": 0.01,
211
+ "grad_clip_norm": 1.0,
212
+ "betas": [
213
+ 0.9,
214
+ 0.95
215
+ ],
216
+ "eps": 1e-08
217
+ },
218
+ "scheduler": {
219
+ "type": "cosine_decay_with_warmup",
220
+ "num_warmup_steps": 1000,
221
+ "num_decay_steps": 30000,
222
+ "peak_lr": 2.5e-05,
223
+ "decay_lr": 2.5e-06
224
+ },
225
+ "eval": {
226
+ "n_episodes": 50,
227
+ "batch_size": 44,
228
+ "use_async_envs": true
229
+ },
230
+ "wandb": {
231
+ "enable": true,
232
+ "disable_artifact": false,
233
+ "project": "lerobot-pi05-cap",
234
+ "entity": null,
235
+ "notes": null,
236
+ "run_id": "h96me86l",
237
+ "mode": null,
238
+ "add_tags": true
239
+ },
240
+ "peft": null,
241
+ "use_rabc": false,
242
+ "rabc_progress_path": null,
243
+ "rabc_kappa": 0.01,
244
+ "rabc_epsilon": 1e-06,
245
+ "rabc_head_mode": "sparse",
246
+ "rename_map": {
247
+ "observation.images.realsense_topview": "observation.images.base_0_rgb",
248
+ "observation.images.realsense_wrist": "observation.images.left_wrist_0_rgb"
249
+ },
250
+ "checkpoint_path": null
251
+ }