Robotics
LeRobot
Safetensors
pi05
AndreGaio commited on
Commit
7ef3b18
·
verified ·
1 Parent(s): 317efcf

Upload model card and train config

Browse files
Files changed (5) hide show
  1. README.md +168 -0
  2. adapter_config.json +45 -0
  3. adapter_model.safetensors +3 -0
  4. config.json +115 -0
  5. train_config.json +329 -0
README.md ADDED
@@ -0,0 +1,168 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: lerobot/pi05_base
3
+ datasets: AndreGaio/test-packing_3cam_ee
4
+ library_name: lerobot
5
+ license: apache-2.0
6
+ model_name: pi05
7
+ pipeline_tag: robotics
8
+ tags:
9
+ - lerobot
10
+ - pi05
11
+ - robotics
12
+ ---
13
+
14
+ # Model Card for pi05
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+ [π₀.₅ (Pi05)](https://www.physicalintelligence.company/blog/pi05) is a Vision-Language-Action model from Physical Intelligence designed for open-world generalization: it evolves π₀ to generalize to entirely new environments and situations that were never seen during training. The LeRobot implementation is adapted from their open-source OpenPI repository.
20
+
21
+
22
+
23
+
24
+ <!-- A short demo is worth more than any description! Record a GIF/video of the policy
25
+ running on your robot, upload it to this repo, and embed it here:
26
+ <p align="center">
27
+ <img src="https://huggingface.co/<hf_user>/<policy_repo_id>/resolve/main/demo.gif" width="60%"/>
28
+ </p>
29
+ -->
30
+
31
+ This policy has been trained and pushed to the Hub using [LeRobot](https://github.com/huggingface/lerobot).
32
+
33
+ Learn how to train and run it in the [LeRobot pi05 guide](https://huggingface.co/docs/lerobot/main/en/pi05), or browse the [full documentation](https://huggingface.co/docs/lerobot/index).
34
+
35
+
36
+ ---
37
+
38
+ ## Model Details
39
+
40
+ - **License:** apache-2.0
41
+ - **Fine-tuned from:** [lerobot/pi05_base](https://huggingface.co/lerobot/pi05_base)
42
+ - **Robot type:** `so_follower`
43
+ - **Cameras:** `front`, `top`, `wrist`
44
+
45
+
46
+ ## Inputs & Outputs
47
+
48
+ The policy consumes these observation features and produces these action features.
49
+
50
+ **Inputs**
51
+
52
+ | Feature | Type | Shape |
53
+ | --- | --- | --- |
54
+ | `observation.images.camera1` | VISUAL | `(3, 640, 480)` |
55
+ | `observation.images.camera2` | VISUAL | `(3, 640, 480)` |
56
+ | `observation.images.camera3` | VISUAL | `(3, 480, 640)` |
57
+ | `observation.state` | STATE | `(7,)` |
58
+
59
+ **Outputs**
60
+
61
+ | Feature | Type | Shape |
62
+ | --- | --- | --- |
63
+ | `action` | ACTION | `(7,)` |
64
+
65
+
66
+ ## Training Dataset
67
+
68
+ - **Repository:** [AndreGaio/test-packing_3cam_ee](https://huggingface.co/datasets/AndreGaio/test-packing_3cam_ee)
69
+ - **Episodes:** 50
70
+ - **Frames:** 134745
71
+ - **Frame rate:** 30 FPS
72
+ - **Task(s):** "Load erasers into container"
73
+
74
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=AndreGaio/test-packing_3cam_ee">
75
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
76
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
77
+ </a>
78
+
79
+
80
+ ## Training Configuration
81
+
82
+ | Setting | Value |
83
+ | --- | --- |
84
+ | Training steps | 5000 |
85
+ | Batch size | 8 |
86
+ | Optimizer | adamw |
87
+ | Learning rate | 2.5e-05 |
88
+ | Seed | 1000 |
89
+ | LeRobot version | 0.6.2 |
90
+
91
+ ---
92
+
93
+ ## How to Get Started with the Model
94
+
95
+ New to LeRobot? These guides cover the full workflow:
96
+
97
+ - **[Install LeRobot](https://huggingface.co/docs/lerobot/main/en/installation)** — set up the `lerobot` package.
98
+ - **[Hardware setup](https://huggingface.co/docs/lerobot/main/en/hardware_guide)** — assemble, wire, and calibrate your robot and cameras.
99
+ - **[Record data & train a policy](https://huggingface.co/docs/lerobot/en/il_robots)** — the end-to-end imitation-learning walkthrough.
100
+ - **[CLI cheat-sheet](https://huggingface.co/docs/lerobot/main/en/cheat-sheet)** — quick reference for the `lerobot-*` commands.
101
+
102
+ The short version to run and train this policy:
103
+
104
+ ### Run the policy on your robot
105
+
106
+ ```bash
107
+ lerobot-rollout \
108
+ --strategy.type=base \
109
+ --robot.type=so_follower \
110
+ --robot.port=<your_robot_port> \
111
+ --robot.cameras="{ <camera_1>: {type: opencv, index_or_path: <index_or_path>, width: 640, height: 480, fps: 30}, <camera_2>: {type: opencv, index_or_path: <index_or_path>, width: 640, height: 480, fps: 30}}" \
112
+ --policy.path=AndreGaio/pi05_packing_ee_lora \
113
+ --task="Load erasers into container" \
114
+ --duration=60
115
+ ```
116
+
117
+ Replace the remaining `<...>` placeholders with your own values: `--robot.port` and the camera names/indices are specific to your machine, and the camera names must match the observation keys this policy was trained on.
118
+
119
+ When `--strategy.type=base` is used the script doesn't record the episodes. Skipping duration will make the policy run indefinitely. For more information look at [rollout documentation](https://huggingface.co/docs/lerobot/main/en/inference).
120
+
121
+ ### Train your own policy
122
+
123
+ This policy type is usually fine-tuned from the pretrained base model [lerobot/pi05_base](https://huggingface.co/lerobot/pi05_base):
124
+
125
+ ```bash
126
+ lerobot-train \
127
+ --dataset.repo_id=${HF_USER}/<dataset> \
128
+ --policy.path=lerobot/pi05_base \
129
+ --output_dir=outputs/train/<policy_repo_id> \
130
+ --job_name=lerobot_training \
131
+ --policy.device=cuda \
132
+ --policy.repo_id=${HF_USER}/<policy_repo_id> \
133
+ --wandb.enable=true
134
+ ```
135
+
136
+ _Writes checkpoints to `outputs/train/<policy_repo_id>/checkpoints/`._
137
+
138
+ ---
139
+
140
+ ## Evaluation
141
+
142
+ <!-- Report real-robot results here: run the policy several times per task and count the
143
+ successes. Delete the "No evaluation results" line and fill in this table instead:
144
+
145
+ | Task | Trials | Successes | Success rate |
146
+ | ---- | ------ | --------- | ------------ |
147
+ | pick the lego brick | 10 | 8 | 80% |
148
+
149
+ Also worth noting: anything that affects difficulty (new object positions, lighting,
150
+ distractors, a different robot of the same type, ...).
151
+ -->
152
+
153
+ _No evaluation results have been provided for this policy yet._
154
+
155
+ ---
156
+
157
+ ## Citation
158
+
159
+ If you use this policy, please cite the method linked in the description above, along with LeRobot:
160
+
161
+ ```bibtex
162
+ @misc{cadene2024lerobot,
163
+ author = {Cadene, Remi and Alibert, Simon and Soare, Alexander and Gallouedec, Quentin and Zouitine, Adil and Palma, Steven and Kooijmans, Pepijn and Aractingi, Michel and Shukor, Mustafa and Aubakirova, Dana and Russi, Martino and Capuano, Francesco and Pascal, Caroline and Choghari, Jade and Moss, Jess and Wolf, Thomas},
164
+ title = {LeRobot: State-of-the-art Machine Learning for Real-World Robotics in Pytorch},
165
+ howpublished = "\url{https://github.com/huggingface/lerobot}",
166
+ year = {2024}
167
+ }
168
+ ```
adapter_config.json ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "PI05Policy",
7
+ "parent_library": "lerobot.policies.pi05.modeling_pi05"
8
+ },
9
+ "base_model_name_or_path": "lerobot/pi05_base",
10
+ "bias": "none",
11
+ "corda_config": null,
12
+ "ensure_weight_tying": false,
13
+ "eva_config": null,
14
+ "exclude_modules": null,
15
+ "fan_in_fan_out": false,
16
+ "inference_mode": true,
17
+ "init_lora_weights": true,
18
+ "layer_replication": null,
19
+ "layers_pattern": null,
20
+ "layers_to_transform": null,
21
+ "loftq_config": {},
22
+ "lora_alpha": 8,
23
+ "lora_bias": false,
24
+ "lora_dropout": 0.0,
25
+ "lora_ga_config": null,
26
+ "megatron_config": null,
27
+ "megatron_core": "megatron.core",
28
+ "modules_to_save": [],
29
+ "monteclora_config": null,
30
+ "peft_type": "LORA",
31
+ "peft_version": "0.20.0",
32
+ "qalora_group_size": 16,
33
+ "r": 32,
34
+ "rank_pattern": {},
35
+ "revision": null,
36
+ "target_modules": "(.*\\.gemma_expert\\..*\\.self_attn\\.(q|v)_proj|model\\.(state_proj|action_in_proj|action_out_proj|action_time_mlp_in|action_time_mlp_out))",
37
+ "target_parameters": null,
38
+ "task_type": null,
39
+ "trainable_token_indices": null,
40
+ "use_bdlora": null,
41
+ "use_dora": false,
42
+ "use_qalora": false,
43
+ "use_rslora": false,
44
+ "velora_config": null
45
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f138861418eddc55451957b0d02dcc56df288c588e284ea721fc8b5e34a3858e
3
+ size 10310320
config.json ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "pi05",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.images.camera1": {
6
+ "type": "VISUAL",
7
+ "shape": [
8
+ 3,
9
+ 640,
10
+ 480
11
+ ]
12
+ },
13
+ "observation.images.camera2": {
14
+ "type": "VISUAL",
15
+ "shape": [
16
+ 3,
17
+ 640,
18
+ 480
19
+ ]
20
+ },
21
+ "observation.images.camera3": {
22
+ "type": "VISUAL",
23
+ "shape": [
24
+ 3,
25
+ 480,
26
+ 640
27
+ ]
28
+ },
29
+ "observation.state": {
30
+ "type": "STATE",
31
+ "shape": [
32
+ 7
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": true,
47
+ "push_to_hub": true,
48
+ "repo_id": "AndreGaio/pi05_packing_ee_lora",
49
+ "private": null,
50
+ "tags": null,
51
+ "license": null,
52
+ "pretrained_path": "lerobot/pi05_base",
53
+ "pretrained_revision": null,
54
+ "paligemma_variant": "gemma_2b",
55
+ "action_expert_variant": "gemma_300m",
56
+ "dtype": "bfloat16",
57
+ "chunk_size": 20,
58
+ "n_action_steps": 20,
59
+ "use_visual_memory": false,
60
+ "use_proprioceptive_memory": false,
61
+ "memory_frames": 6,
62
+ "memory_stride": 30,
63
+ "memory_temporal_attention_every": 4,
64
+ "max_state_dim": 32,
65
+ "max_action_dim": 32,
66
+ "num_inference_steps": 10,
67
+ "time_sampling_beta_alpha": 1.5,
68
+ "time_sampling_beta_beta": 1.0,
69
+ "time_sampling_scale": 0.999,
70
+ "time_sampling_offset": 0.001,
71
+ "min_period": 0.004,
72
+ "max_period": 4.0,
73
+ "use_relative_actions": false,
74
+ "relative_exclude_joints": [
75
+ "gripper"
76
+ ],
77
+ "action_feature_names": [
78
+ "ee.x",
79
+ "ee.y",
80
+ "ee.z",
81
+ "ee.wx",
82
+ "ee.wy",
83
+ "ee.wz",
84
+ "ee.gripper_pos"
85
+ ],
86
+ "rtc_config": null,
87
+ "rtc_training_max_delay": 0,
88
+ "image_resolution": [
89
+ 224,
90
+ 224
91
+ ],
92
+ "empty_cameras": 0,
93
+ "tokenizer_max_length": 200,
94
+ "normalization_mapping": {
95
+ "VISUAL": "IDENTITY",
96
+ "STATE": "QUANTILES",
97
+ "ACTION": "QUANTILES"
98
+ },
99
+ "gradient_checkpointing": true,
100
+ "compile_model": false,
101
+ "compile_mode": "max-autotune",
102
+ "freeze_vision_encoder": false,
103
+ "train_expert_only": false,
104
+ "optimizer_lr": 2.5e-05,
105
+ "optimizer_betas": [
106
+ 0.9,
107
+ 0.95
108
+ ],
109
+ "optimizer_eps": 1e-08,
110
+ "optimizer_weight_decay": 0.01,
111
+ "optimizer_grad_clip_norm": 1.0,
112
+ "scheduler_warmup_steps": 1000,
113
+ "scheduler_decay_steps": 30000,
114
+ "scheduler_decay_lr": 2.5e-06
115
+ }
train_config.json ADDED
@@ -0,0 +1,329 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "AndreGaio/test-packing_3cam_ee",
4
+ "repo_type": "dataset",
5
+ "root": "data/test-packing_3cam_ee",
6
+ "episodes": null,
7
+ "exclude_episodes": null,
8
+ "image_transforms": {
9
+ "enable": false,
10
+ "max_num_transforms": 3,
11
+ "random_order": false,
12
+ "tfs": {
13
+ "brightness": {
14
+ "weight": 1.0,
15
+ "type": "ColorJitter",
16
+ "kwargs": {
17
+ "brightness": [
18
+ 0.8,
19
+ 1.2
20
+ ]
21
+ }
22
+ },
23
+ "contrast": {
24
+ "weight": 1.0,
25
+ "type": "ColorJitter",
26
+ "kwargs": {
27
+ "contrast": [
28
+ 0.8,
29
+ 1.2
30
+ ]
31
+ }
32
+ },
33
+ "saturation": {
34
+ "weight": 1.0,
35
+ "type": "ColorJitter",
36
+ "kwargs": {
37
+ "saturation": [
38
+ 0.5,
39
+ 1.5
40
+ ]
41
+ }
42
+ },
43
+ "hue": {
44
+ "weight": 1.0,
45
+ "type": "ColorJitter",
46
+ "kwargs": {
47
+ "hue": [
48
+ -0.05,
49
+ 0.05
50
+ ]
51
+ }
52
+ },
53
+ "sharpness": {
54
+ "weight": 1.0,
55
+ "type": "SharpnessJitter",
56
+ "kwargs": {
57
+ "sharpness": [
58
+ 0.5,
59
+ 1.5
60
+ ]
61
+ }
62
+ },
63
+ "affine": {
64
+ "weight": 1.0,
65
+ "type": "RandomAffine",
66
+ "kwargs": {
67
+ "degrees": [
68
+ -5.0,
69
+ 5.0
70
+ ],
71
+ "translate": [
72
+ 0.05,
73
+ 0.05
74
+ ]
75
+ }
76
+ }
77
+ }
78
+ },
79
+ "revision": null,
80
+ "use_imagenet_stats": true,
81
+ "video_backend": "torchcodec",
82
+ "return_uint8": false,
83
+ "depth_output_unit": "mm",
84
+ "streaming": false,
85
+ "eval_split": 0.0
86
+ },
87
+ "env": null,
88
+ "policy": {
89
+ "type": "pi05",
90
+ "n_obs_steps": 1,
91
+ "input_features": {
92
+ "observation.images.camera1": {
93
+ "type": "VISUAL",
94
+ "shape": [
95
+ 3,
96
+ 640,
97
+ 480
98
+ ]
99
+ },
100
+ "observation.images.camera2": {
101
+ "type": "VISUAL",
102
+ "shape": [
103
+ 3,
104
+ 640,
105
+ 480
106
+ ]
107
+ },
108
+ "observation.images.camera3": {
109
+ "type": "VISUAL",
110
+ "shape": [
111
+ 3,
112
+ 480,
113
+ 640
114
+ ]
115
+ },
116
+ "observation.state": {
117
+ "type": "STATE",
118
+ "shape": [
119
+ 7
120
+ ]
121
+ }
122
+ },
123
+ "output_features": {
124
+ "action": {
125
+ "type": "ACTION",
126
+ "shape": [
127
+ 7
128
+ ]
129
+ }
130
+ },
131
+ "device": "cuda",
132
+ "use_amp": false,
133
+ "use_peft": true,
134
+ "push_to_hub": true,
135
+ "repo_id": "AndreGaio/pi05_packing_ee_lora",
136
+ "private": null,
137
+ "tags": null,
138
+ "license": null,
139
+ "pretrained_path": "lerobot/pi05_base",
140
+ "pretrained_revision": null,
141
+ "paligemma_variant": "gemma_2b",
142
+ "action_expert_variant": "gemma_300m",
143
+ "dtype": "bfloat16",
144
+ "chunk_size": 20,
145
+ "n_action_steps": 20,
146
+ "use_visual_memory": false,
147
+ "use_proprioceptive_memory": false,
148
+ "memory_frames": 6,
149
+ "memory_stride": 30,
150
+ "memory_temporal_attention_every": 4,
151
+ "max_state_dim": 32,
152
+ "max_action_dim": 32,
153
+ "num_inference_steps": 10,
154
+ "time_sampling_beta_alpha": 1.5,
155
+ "time_sampling_beta_beta": 1.0,
156
+ "time_sampling_scale": 0.999,
157
+ "time_sampling_offset": 0.001,
158
+ "min_period": 0.004,
159
+ "max_period": 4.0,
160
+ "use_relative_actions": false,
161
+ "relative_exclude_joints": [
162
+ "gripper"
163
+ ],
164
+ "action_feature_names": [
165
+ "ee.x",
166
+ "ee.y",
167
+ "ee.z",
168
+ "ee.wx",
169
+ "ee.wy",
170
+ "ee.wz",
171
+ "ee.gripper_pos"
172
+ ],
173
+ "rtc_config": null,
174
+ "rtc_training_max_delay": 0,
175
+ "image_resolution": [
176
+ 224,
177
+ 224
178
+ ],
179
+ "empty_cameras": 0,
180
+ "tokenizer_max_length": 200,
181
+ "normalization_mapping": {
182
+ "VISUAL": "IDENTITY",
183
+ "STATE": "QUANTILES",
184
+ "ACTION": "QUANTILES"
185
+ },
186
+ "gradient_checkpointing": true,
187
+ "compile_model": false,
188
+ "compile_mode": "max-autotune",
189
+ "freeze_vision_encoder": false,
190
+ "train_expert_only": false,
191
+ "optimizer_lr": 2.5e-05,
192
+ "optimizer_betas": [
193
+ 0.9,
194
+ 0.95
195
+ ],
196
+ "optimizer_eps": 1e-08,
197
+ "optimizer_weight_decay": 0.01,
198
+ "optimizer_grad_clip_norm": 1.0,
199
+ "scheduler_warmup_steps": 1000,
200
+ "scheduler_decay_steps": 30000,
201
+ "scheduler_decay_lr": 2.5e-06
202
+ },
203
+ "reward_model": null,
204
+ "output_dir": "outputs/train/pi05_packing_ee_lora",
205
+ "job_name": "pi05_packing_ee_lora",
206
+ "resume": false,
207
+ "seed": 1000,
208
+ "cudnn_deterministic": false,
209
+ "num_workers": 4,
210
+ "batch_size": 8,
211
+ "prefetch_factor": 4,
212
+ "persistent_workers": true,
213
+ "dataloader_multiprocessing_context": "spawn",
214
+ "steps": 5000,
215
+ "env_eval_freq": 20000,
216
+ "log_freq": 200,
217
+ "eval_steps": 0,
218
+ "max_eval_samples": 0,
219
+ "tolerance_s": 0.0001,
220
+ "save_checkpoint": true,
221
+ "save_freq": 5000,
222
+ "checkpoint_format": "safetensors",
223
+ "use_policy_training_preset": true,
224
+ "optimizer": {
225
+ "type": "adamw",
226
+ "lr": 2.5e-05,
227
+ "weight_decay": 0.01,
228
+ "grad_clip_norm": 1.0,
229
+ "betas": [
230
+ 0.9,
231
+ 0.95
232
+ ],
233
+ "eps": 1e-08
234
+ },
235
+ "scheduler": {
236
+ "type": "cosine_decay_with_warmup",
237
+ "num_warmup_steps": 1000,
238
+ "num_decay_steps": 30000,
239
+ "peak_lr": 2.5e-05,
240
+ "decay_lr": 2.5e-06
241
+ },
242
+ "parallelism": {
243
+ "dp_replicate": 1,
244
+ "dp_shard": 1,
245
+ "context_parallel": {
246
+ "ring_degree": 1,
247
+ "ulysses_degree": 1
248
+ },
249
+ "cfg_parallel": 1
250
+ },
251
+ "accelerator": {
252
+ "mixed_precision": "no",
253
+ "gradient_accumulation": {
254
+ "steps": 1
255
+ },
256
+ "fsdp": {
257
+ "reshard_after_forward": true,
258
+ "wrap_modules": null,
259
+ "min_num_params": null,
260
+ "cpu_offload": false,
261
+ "ignored_modules": null
262
+ },
263
+ "ddp": {
264
+ "find_unused_parameters": true,
265
+ "gradient_as_bucket_view": false,
266
+ "static_graph": false
267
+ },
268
+ "compile": {
269
+ "enabled": false,
270
+ "backend": "inductor",
271
+ "mode": null,
272
+ "regional": true
273
+ },
274
+ "activation_checkpointing": {
275
+ "mode": "none"
276
+ }
277
+ },
278
+ "eval": {
279
+ "n_episodes": 50,
280
+ "batch_size": 14,
281
+ "use_async_envs": true,
282
+ "recording": false,
283
+ "recording_repo_id": null,
284
+ "recording_private": false
285
+ },
286
+ "ema": {
287
+ "enable": false,
288
+ "decay": null,
289
+ "update_after_step": 0,
290
+ "inv_gamma": 1.0,
291
+ "power": 0.75,
292
+ "min_decay": 0.0,
293
+ "max_decay": 0.9999,
294
+ "use_for_eval": true
295
+ },
296
+ "wandb": {
297
+ "enable": true,
298
+ "disable_artifact": true,
299
+ "project": "lerobot",
300
+ "entity": null,
301
+ "notes": null,
302
+ "run_id": "6a10la2j",
303
+ "mode": null,
304
+ "add_tags": true
305
+ },
306
+ "peft": {
307
+ "target_modules": null,
308
+ "full_training_modules": null,
309
+ "method_type": "LORA",
310
+ "init_type": null,
311
+ "r": 32,
312
+ "lora_alpha": null
313
+ },
314
+ "job": {
315
+ "target": null,
316
+ "image": "huggingface/lerobot-gpu:latest",
317
+ "timeout": "2d",
318
+ "detach": false,
319
+ "tags": []
320
+ },
321
+ "save_checkpoint_to_hub": false,
322
+ "sample_weighting": null,
323
+ "rename_map": {
324
+ "observation.images.front": "observation.images.camera1",
325
+ "observation.images.top": "observation.images.camera2",
326
+ "observation.images.wrist": "observation.images.camera3"
327
+ },
328
+ "checkpoint_path": null
329
+ }