Robotics
LeRobot
Safetensors
pi05
HyeonseokE commited on
Commit
18853a3
·
verified ·
1 Parent(s): 08e0ff7

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +70 -0
  2. config.json +107 -0
  3. model.safetensors +3 -0
  4. train_config.json +236 -0
README.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets: CoRL2026-CSI/Isaaclab-so101_11task_baseCaP_3300epi_10fps
3
+ library_name: lerobot
4
+ license: apache-2.0
5
+ model_name: pi05
6
+ pipeline_tag: robotics
7
+ tags:
8
+ - pi05
9
+ - lerobot
10
+ - robotics
11
+ ---
12
+
13
+ # Model Card for pi05
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+ **π₀.₅ (Pi05) Policy**
19
+
20
+ π₀.₅ is a Vision-Language-Action model with open-world generalization, from Physical Intelligence. The LeRobot implementation is adapted from their open source OpenPI repository.
21
+
22
+ **Model Overview**
23
+
24
+ π₀.₅ represents a significant evolution from π₀, developed by Physical Intelligence to address a big challenge in robotics: open-world generalization. While robots can perform impressive tasks in controlled environments, π₀.₅ is designed to generalize to entirely new environments and situations that were never seen during training.
25
+
26
+ For more details, see the [Physical Intelligence π₀.₅ blog post](https://www.physicalintelligence.company/blog/pi05).
27
+
28
+
29
+ This policy has been trained and pushed to the Hub using [LeRobot](https://github.com/huggingface/lerobot).
30
+ See the full documentation at [LeRobot Docs](https://huggingface.co/docs/lerobot/index).
31
+
32
+ ---
33
+
34
+ ## How to Get Started with the Model
35
+
36
+ For a complete walkthrough, see the [training guide](https://huggingface.co/docs/lerobot/il_robots#train-a-policy).
37
+ Below is the short version on how to train and run inference/eval:
38
+
39
+ ### Train from scratch
40
+
41
+ ```bash
42
+ lerobot-train \
43
+ --dataset.repo_id=${HF_USER}/<dataset> \
44
+ --policy.type=act \
45
+ --output_dir=outputs/train/<desired_policy_repo_id> \
46
+ --job_name=lerobot_training \
47
+ --policy.device=cuda \
48
+ --policy.repo_id=${HF_USER}/<desired_policy_repo_id>
49
+ --wandb.enable=true
50
+ ```
51
+
52
+ _Writes checkpoints to `outputs/train/<desired_policy_repo_id>/checkpoints/`._
53
+
54
+ ### Evaluate the policy/run inference
55
+
56
+ ```bash
57
+ lerobot-record \
58
+ --robot.type=so100_follower \
59
+ --dataset.repo_id=<hf_user>/eval_<dataset> \
60
+ --policy.path=<hf_user>/<desired_policy_repo_id> \
61
+ --episodes=10
62
+ ```
63
+
64
+ Prefix the dataset repo with **eval\_** and supply `--policy.path` pointing to a local or hub checkpoint.
65
+
66
+ ---
67
+
68
+ ## Model Details
69
+
70
+ - **License:** apache-2.0
config.json ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ 32
41
+ ]
42
+ }
43
+ },
44
+ "device": "cuda",
45
+ "use_amp": false,
46
+ "use_peft": false,
47
+ "push_to_hub": true,
48
+ "repo_id": "CoRL2026-CSI/pi05-IsaacLab-Multi-Task-1epoch-mod",
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_flex.pos",
75
+ "wrist_flex.pos",
76
+ "wrist_roll.pos",
77
+ "gripper.pos"
78
+ ],
79
+ "rtc_config": null,
80
+ "image_resolution": [
81
+ 224,
82
+ 224
83
+ ],
84
+ "empty_cameras": 0,
85
+ "tokenizer_max_length": 200,
86
+ "normalization_mapping": {
87
+ "ACTION": "MEAN_STD",
88
+ "STATE": "MEAN_STD",
89
+ "VISUAL": "IDENTITY"
90
+ },
91
+ "gradient_checkpointing": true,
92
+ "compile_model": false,
93
+ "compile_mode": "max-autotune",
94
+ "freeze_vision_encoder": false,
95
+ "train_expert_only": false,
96
+ "optimizer_lr": 2.5e-05,
97
+ "optimizer_betas": [
98
+ 0.9,
99
+ 0.95
100
+ ],
101
+ "optimizer_eps": 1e-08,
102
+ "optimizer_weight_decay": 0.01,
103
+ "optimizer_grad_clip_norm": 1.0,
104
+ "scheduler_warmup_steps": 1000,
105
+ "scheduler_decay_steps": 30000,
106
+ "scheduler_decay_lr": 2.5e-06
107
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e529206c6f61905eaa3fe22a006f16dffff932a837ba287ac02e65f2f6b42a41
3
+ size 9354050752
train_config.json ADDED
@@ -0,0 +1,236 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "CoRL2026-CSI/Isaaclab-so101_11task_baseCaP_3300epi_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
+ }
62
+ },
63
+ "revision": null,
64
+ "use_imagenet_stats": true,
65
+ "video_backend": "torchcodec",
66
+ "streaming": false
67
+ },
68
+ "env": null,
69
+ "policy": {
70
+ "type": "pi05",
71
+ "n_obs_steps": 1,
72
+ "input_features": {
73
+ "observation.images.base_0_rgb": {
74
+ "type": "VISUAL",
75
+ "shape": [
76
+ 3,
77
+ 224,
78
+ 224
79
+ ]
80
+ },
81
+ "observation.images.left_wrist_0_rgb": {
82
+ "type": "VISUAL",
83
+ "shape": [
84
+ 3,
85
+ 224,
86
+ 224
87
+ ]
88
+ },
89
+ "observation.images.right_wrist_0_rgb": {
90
+ "type": "VISUAL",
91
+ "shape": [
92
+ 3,
93
+ 224,
94
+ 224
95
+ ]
96
+ },
97
+ "observation.state": {
98
+ "type": "STATE",
99
+ "shape": [
100
+ 32
101
+ ]
102
+ }
103
+ },
104
+ "output_features": {
105
+ "action": {
106
+ "type": "ACTION",
107
+ "shape": [
108
+ 32
109
+ ]
110
+ }
111
+ },
112
+ "device": "cuda",
113
+ "use_amp": false,
114
+ "use_peft": false,
115
+ "push_to_hub": true,
116
+ "repo_id": "CoRL2026-CSI/pi05-IsaacLab-Multi-Task-1epoch-mod",
117
+ "private": null,
118
+ "tags": null,
119
+ "license": null,
120
+ "pretrained_path": "lerobot/pi05_base",
121
+ "paligemma_variant": "gemma_2b",
122
+ "action_expert_variant": "gemma_300m",
123
+ "dtype": "bfloat16",
124
+ "chunk_size": 50,
125
+ "n_action_steps": 50,
126
+ "max_state_dim": 32,
127
+ "max_action_dim": 32,
128
+ "num_inference_steps": 10,
129
+ "time_sampling_beta_alpha": 1.5,
130
+ "time_sampling_beta_beta": 1.0,
131
+ "time_sampling_scale": 0.999,
132
+ "time_sampling_offset": 0.001,
133
+ "min_period": 0.004,
134
+ "max_period": 4.0,
135
+ "use_relative_actions": false,
136
+ "relative_exclude_joints": [
137
+ "gripper"
138
+ ],
139
+ "action_feature_names": [
140
+ "shoulder_pan.pos",
141
+ "shoulder_lift.pos",
142
+ "elbow_flex.pos",
143
+ "wrist_flex.pos",
144
+ "wrist_roll.pos",
145
+ "gripper.pos"
146
+ ],
147
+ "rtc_config": null,
148
+ "image_resolution": [
149
+ 224,
150
+ 224
151
+ ],
152
+ "empty_cameras": 0,
153
+ "tokenizer_max_length": 200,
154
+ "normalization_mapping": {
155
+ "ACTION": "MEAN_STD",
156
+ "STATE": "MEAN_STD",
157
+ "VISUAL": "IDENTITY"
158
+ },
159
+ "gradient_checkpointing": true,
160
+ "compile_model": false,
161
+ "compile_mode": "max-autotune",
162
+ "freeze_vision_encoder": false,
163
+ "train_expert_only": false,
164
+ "optimizer_lr": 2.5e-05,
165
+ "optimizer_betas": [
166
+ 0.9,
167
+ 0.95
168
+ ],
169
+ "optimizer_eps": 1e-08,
170
+ "optimizer_weight_decay": 0.01,
171
+ "optimizer_grad_clip_norm": 1.0,
172
+ "scheduler_warmup_steps": 1000,
173
+ "scheduler_decay_steps": 30000,
174
+ "scheduler_decay_lr": 2.5e-06
175
+ },
176
+ "output_dir": "/home/csiwoo/CORL2026/lerobot/outputs/train/pi05_isaaclab_so101_multitask_1ep_20260517_065038",
177
+ "job_name": "pi05_isaaclab_so101_multitask_1ep_20260517_065038",
178
+ "resume": false,
179
+ "seed": 1000,
180
+ "cudnn_deterministic": false,
181
+ "num_workers": 22,
182
+ "persistent_workers": false,
183
+ "batch_size": 32,
184
+ "gradient_accumulation_steps": 4,
185
+ "steps": 4600,
186
+ "eval_freq": 0,
187
+ "log_freq": 100,
188
+ "tolerance_s": 0.0001,
189
+ "save_checkpoint": true,
190
+ "save_freq": 4600,
191
+ "use_policy_training_preset": true,
192
+ "optimizer": {
193
+ "type": "adamw",
194
+ "lr": 2.5e-05,
195
+ "weight_decay": 0.01,
196
+ "grad_clip_norm": 1.0,
197
+ "betas": [
198
+ 0.9,
199
+ 0.95
200
+ ],
201
+ "eps": 1e-08
202
+ },
203
+ "scheduler": {
204
+ "type": "cosine_decay_with_warmup",
205
+ "num_warmup_steps": 1000,
206
+ "num_decay_steps": 30000,
207
+ "peak_lr": 2.5e-05,
208
+ "decay_lr": 2.5e-06
209
+ },
210
+ "eval": {
211
+ "n_episodes": 50,
212
+ "batch_size": 50,
213
+ "use_async_envs": true
214
+ },
215
+ "wandb": {
216
+ "enable": true,
217
+ "disable_artifact": false,
218
+ "project": "lerobot-pi05",
219
+ "entity": null,
220
+ "notes": null,
221
+ "run_id": "fqnosagq",
222
+ "mode": null,
223
+ "add_tags": true
224
+ },
225
+ "peft": null,
226
+ "use_rabc": false,
227
+ "rabc_progress_path": null,
228
+ "rabc_kappa": 0.01,
229
+ "rabc_epsilon": 1e-06,
230
+ "rabc_head_mode": "sparse",
231
+ "rename_map": {
232
+ "observation.images.top": "observation.images.base_0_rgb",
233
+ "observation.images.left_wrist": "observation.images.left_wrist_0_rgb"
234
+ },
235
+ "checkpoint_path": null
236
+ }