Robotics
LeRobot
Safetensors
molmoact2
lilkm HF Staff commited on
Commit
137193d
·
verified ·
1 Parent(s): 4c1f488

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +163 -0
  2. config.json +137 -0
  3. model.safetensors +3 -0
  4. train_config.json +290 -0
README.md ADDED
@@ -0,0 +1,163 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets: lilkm/vf_stackblocks_combined
3
+ library_name: lerobot
4
+ license: apache-2.0
5
+ model_name: molmoact2
6
+ pipeline_tag: robotics
7
+ tags:
8
+ - lerobot
9
+ - molmoact2
10
+ - robotics
11
+ ---
12
+
13
+ # Model Card for molmoact2
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+ [MolmoAct2](https://allenai.org/blog/molmoact2) is an open robotics foundation model from the Allen Institute for AI (Ai2) that maps camera images and language instructions to robot action chunks. The LeRobot implementation supports training and evaluation of the regular MolmoAct2 model.
19
+
20
+
21
+
22
+
23
+ <!-- A short demo is worth more than any description! Record a GIF/video of the policy
24
+ running on your robot, upload it to this repo, and embed it here:
25
+ <p align="center">
26
+ <img src="https://huggingface.co/<hf_user>/<policy_repo_id>/resolve/main/demo.gif" width="60%"/>
27
+ </p>
28
+ -->
29
+
30
+ This policy has been trained and pushed to the Hub using [LeRobot](https://github.com/huggingface/lerobot).
31
+
32
+ Learn how to train and run it in the [LeRobot molmoact2 guide](https://huggingface.co/docs/lerobot/main/en/molmoact2), or browse the [full documentation](https://huggingface.co/docs/lerobot/index).
33
+
34
+
35
+ ---
36
+
37
+ ## Model Details
38
+
39
+ - **License:** apache-2.0
40
+ - **Robot type:** `so_follower`
41
+ - **Cameras:** `top`, `wrist`
42
+
43
+
44
+ ## Inputs & Outputs
45
+
46
+ The policy consumes these observation features and produces these action features.
47
+
48
+ **Inputs**
49
+
50
+ | Feature | Type | Shape |
51
+ | --- | --- | --- |
52
+ | `observation.state` | STATE | `(6,)` |
53
+ | `observation.images.top` | VISUAL | `(3, 480, 640)` |
54
+ | `observation.images.wrist` | VISUAL | `(3, 480, 640)` |
55
+
56
+ **Outputs**
57
+
58
+ | Feature | Type | Shape |
59
+ | --- | --- | --- |
60
+ | `action` | ACTION | `(6,)` |
61
+
62
+
63
+ ## Training Dataset
64
+
65
+ - **Repository:** [lilkm/vf_stackblocks_combined](https://huggingface.co/datasets/lilkm/vf_stackblocks_combined)
66
+ - **Episodes:** 116
67
+ - **Frames:** 96511
68
+ - **Frame rate:** 30 FPS
69
+ - **Task(s):** "Place the blue cube on the purple plastic rectangular pad, then stack the yellow cube on top of the blue cube."
70
+
71
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=lilkm/vf_stackblocks_combined">
72
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
73
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
74
+ </a>
75
+
76
+
77
+ ## Training Configuration
78
+
79
+ | Setting | Value |
80
+ | --- | --- |
81
+ | Training steps | 100 |
82
+ | Batch size | 8 |
83
+ | Optimizer | adamw |
84
+ | Learning rate | 1e-05 |
85
+ | Seed | 1000 |
86
+ | LeRobot version | 0.5.2 |
87
+
88
+ ---
89
+
90
+ ## How to Get Started with the Model
91
+
92
+ New to LeRobot? These guides cover the full workflow:
93
+
94
+ - **[Install LeRobot](https://huggingface.co/docs/lerobot/main/en/installation)** — set up the `lerobot` package.
95
+ - **[Hardware setup](https://huggingface.co/docs/lerobot/main/en/hardware_guide)** — assemble, wire, and calibrate your robot and cameras.
96
+ - **[Record data & train a policy](https://huggingface.co/docs/lerobot/en/il_robots)** — the end-to-end imitation-learning walkthrough.
97
+ - **[CLI cheat-sheet](https://huggingface.co/docs/lerobot/main/en/cheat-sheet)** — quick reference for the `lerobot-*` commands.
98
+
99
+ The short version to run and train this policy:
100
+
101
+ ### Run the policy on your robot
102
+
103
+ ```bash
104
+ lerobot-rollout \
105
+ --strategy.type=base \
106
+ --robot.type=so_follower \
107
+ --robot.port=<your_robot_port> \
108
+ --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}}" \
109
+ --policy.path=lilkm/molmoact2_recap_stackblocks_iter1 \
110
+ --task="Place the blue cube on the purple plastic rectangular pad, then stack the yellow cube on top of the blue cube." \
111
+ --duration=60
112
+ ```
113
+
114
+ 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.
115
+
116
+ 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).
117
+
118
+ ### Train your own policy
119
+
120
+ ```bash
121
+ lerobot-train \
122
+ --dataset.repo_id=${HF_USER}/<dataset> \
123
+ --policy.type=molmoact2 \
124
+ --output_dir=outputs/train/<policy_repo_id> \
125
+ --job_name=lerobot_training \
126
+ --policy.device=cuda \
127
+ --policy.repo_id=${HF_USER}/<policy_repo_id> \
128
+ --wandb.enable=true
129
+ ```
130
+
131
+ _Writes checkpoints to `outputs/train/<policy_repo_id>/checkpoints/`._
132
+
133
+ ---
134
+
135
+ ## Evaluation
136
+
137
+ <!-- Report real-robot results here: run the policy several times per task and count the
138
+ successes. Delete the "No evaluation results" line and fill in this table instead:
139
+
140
+ | Task | Trials | Successes | Success rate |
141
+ | ---- | ------ | --------- | ------------ |
142
+ | pick the lego brick | 10 | 8 | 80% |
143
+
144
+ Also worth noting: anything that affects difficulty (new object positions, lighting,
145
+ distractors, a different robot of the same type, ...).
146
+ -->
147
+
148
+ _No evaluation results have been provided for this policy yet._
149
+
150
+ ---
151
+
152
+ ## Citation
153
+
154
+ If you use this policy, please cite the method linked in the description above, along with LeRobot:
155
+
156
+ ```bibtex
157
+ @misc{cadene2024lerobot,
158
+ 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},
159
+ title = {LeRobot: State-of-the-art Machine Learning for Real-World Robotics in Pytorch},
160
+ howpublished = "\url{https://github.com/huggingface/lerobot}",
161
+ year = {2024}
162
+ }
163
+ ```
config.json ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "molmoact2",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.state": {
6
+ "type": "STATE",
7
+ "shape": [
8
+ 6
9
+ ]
10
+ },
11
+ "observation.images.top": {
12
+ "type": "VISUAL",
13
+ "shape": [
14
+ 3,
15
+ 480,
16
+ 640
17
+ ]
18
+ },
19
+ "observation.images.wrist": {
20
+ "type": "VISUAL",
21
+ "shape": [
22
+ 3,
23
+ 480,
24
+ 640
25
+ ]
26
+ }
27
+ },
28
+ "output_features": {
29
+ "action": {
30
+ "type": "ACTION",
31
+ "shape": [
32
+ 6
33
+ ]
34
+ }
35
+ },
36
+ "device": "cuda",
37
+ "use_amp": false,
38
+ "use_peft": false,
39
+ "push_to_hub": true,
40
+ "repo_id": "lilkm/molmoact2_recap_stackblocks_iter1",
41
+ "private": null,
42
+ "tags": null,
43
+ "license": null,
44
+ "pretrained_path": null,
45
+ "pretrained_revision": null,
46
+ "checkpoint_path": "allenai/MolmoAct2-SO100_101",
47
+ "checkpoint_revision": null,
48
+ "checkpoint_force_download": false,
49
+ "chunk_size": 30,
50
+ "n_action_steps": 30,
51
+ "action_mode": "continuous",
52
+ "inference_action_mode": null,
53
+ "discrete_action_tokenizer": "allenai/MolmoAct2-FAST-Tokenizer",
54
+ "discrete_generation_max_steps": null,
55
+ "norm_tag": null,
56
+ "setup_type": "single so100/so101 robotic arm in molmoact2",
57
+ "control_mode": "absolute joint pose",
58
+ "image_keys": [
59
+ "observation.images.wrist",
60
+ "observation.images.top"
61
+ ],
62
+ "normalize_language": true,
63
+ "add_setup_tokens": true,
64
+ "add_control_tokens": true,
65
+ "normalize_gripper": true,
66
+ "num_state_tokens": 256,
67
+ "max_sequence_length": null,
68
+ "expected_max_action_dim": 32,
69
+ "num_flow_timesteps": 8,
70
+ "flow_matching_cutoff": 1.0,
71
+ "flow_matching_time_offset": 0.001,
72
+ "flow_matching_time_scale": 0.999,
73
+ "flow_matching_beta_alpha": 1.0,
74
+ "flow_matching_beta_beta": 1.5,
75
+ "num_inference_steps": null,
76
+ "mask_action_dim_padding": true,
77
+ "enable_inference_cuda_graph": true,
78
+ "recipe_path": "src/lerobot/configs/recipes/recap_advantage_molmoact2.yaml",
79
+ "advantage_prefix": "",
80
+ "cfg_beta": 1.0,
81
+ "per_episode_seed": false,
82
+ "eval_seed": null,
83
+ "rtc_config": null,
84
+ "joint_signs": null,
85
+ "joint_offsets": null,
86
+ "enable_lora_vlm": false,
87
+ "lora_rank": 64,
88
+ "lora_alpha": 16,
89
+ "lora_dropout": 0.05,
90
+ "lora_bias": "none",
91
+ "enable_lora_action_expert": false,
92
+ "enable_knowledge_insulation": false,
93
+ "freeze_embedding": true,
94
+ "train_action_expert_only": true,
95
+ "gradient_checkpointing": true,
96
+ "model_dtype": "bfloat16",
97
+ "softmax_auxiliary_loss": true,
98
+ "softmax_auxiliary_loss_scale": 0.0001,
99
+ "discrete_loss_token_weighting": "root_subsegments_root_tokens",
100
+ "optimizer_lr": 1e-05,
101
+ "optimizer_vit_lr": 5e-06,
102
+ "optimizer_connector_lr": 5e-06,
103
+ "optimizer_action_expert_lr": 5e-05,
104
+ "optimizer_betas": [
105
+ 0.9,
106
+ 0.95
107
+ ],
108
+ "optimizer_eps": 1e-06,
109
+ "optimizer_weight_decay": 0.0,
110
+ "optimizer_grad_clip_norm": 1.0,
111
+ "scheduler_warmup_steps": 200,
112
+ "scheduler_decay_steps": 100000,
113
+ "scheduler_decay_lr": 1e-06,
114
+ "normalization_mapping": {
115
+ "VISUAL": "IDENTITY",
116
+ "STATE": "QUANTILES",
117
+ "ACTION": "QUANTILES"
118
+ },
119
+ "dataset_feature_names": {
120
+ "action": [
121
+ "shoulder_pan.pos",
122
+ "shoulder_lift.pos",
123
+ "elbow_flex.pos",
124
+ "wrist_flex.pos",
125
+ "wrist_roll.pos",
126
+ "gripper.pos"
127
+ ],
128
+ "observation.state": [
129
+ "shoulder_pan.pos",
130
+ "shoulder_lift.pos",
131
+ "elbow_flex.pos",
132
+ "wrist_flex.pos",
133
+ "wrist_roll.pos",
134
+ "gripper.pos"
135
+ ]
136
+ }
137
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18e13189caa8757904a64300a3c7178dc5bd844897c1d791aef25da872445c85
3
+ size 10884573720
train_config.json ADDED
@@ -0,0 +1,290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "lilkm/vf_stackblocks_combined",
4
+ "root": null,
5
+ "episodes": null,
6
+ "image_transforms": {
7
+ "enable": false,
8
+ "max_num_transforms": 3,
9
+ "random_order": false,
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": "pyav",
80
+ "return_uint8": false,
81
+ "depth_output_unit": "mm",
82
+ "streaming": false,
83
+ "eval_split": 0.0
84
+ },
85
+ "env": null,
86
+ "policy": {
87
+ "type": "molmoact2",
88
+ "n_obs_steps": 1,
89
+ "input_features": {
90
+ "observation.state": {
91
+ "type": "STATE",
92
+ "shape": [
93
+ 6
94
+ ]
95
+ },
96
+ "observation.images.top": {
97
+ "type": "VISUAL",
98
+ "shape": [
99
+ 3,
100
+ 480,
101
+ 640
102
+ ]
103
+ },
104
+ "observation.images.wrist": {
105
+ "type": "VISUAL",
106
+ "shape": [
107
+ 3,
108
+ 480,
109
+ 640
110
+ ]
111
+ }
112
+ },
113
+ "output_features": {
114
+ "action": {
115
+ "type": "ACTION",
116
+ "shape": [
117
+ 6
118
+ ]
119
+ }
120
+ },
121
+ "device": "cuda",
122
+ "use_amp": false,
123
+ "use_peft": false,
124
+ "push_to_hub": true,
125
+ "repo_id": "lilkm/molmoact2_recap_stackblocks_iter1",
126
+ "private": null,
127
+ "tags": null,
128
+ "license": null,
129
+ "pretrained_path": null,
130
+ "pretrained_revision": null,
131
+ "checkpoint_path": "allenai/MolmoAct2-SO100_101",
132
+ "checkpoint_revision": null,
133
+ "checkpoint_force_download": false,
134
+ "chunk_size": 30,
135
+ "n_action_steps": 30,
136
+ "action_mode": "continuous",
137
+ "inference_action_mode": null,
138
+ "discrete_action_tokenizer": "allenai/MolmoAct2-FAST-Tokenizer",
139
+ "discrete_generation_max_steps": null,
140
+ "norm_tag": null,
141
+ "setup_type": "single so100/so101 robotic arm in molmoact2",
142
+ "control_mode": "absolute joint pose",
143
+ "image_keys": [
144
+ "observation.images.wrist",
145
+ "observation.images.top"
146
+ ],
147
+ "normalize_language": true,
148
+ "add_setup_tokens": true,
149
+ "add_control_tokens": true,
150
+ "normalize_gripper": true,
151
+ "num_state_tokens": 256,
152
+ "max_sequence_length": null,
153
+ "expected_max_action_dim": 32,
154
+ "num_flow_timesteps": 8,
155
+ "flow_matching_cutoff": 1.0,
156
+ "flow_matching_time_offset": 0.001,
157
+ "flow_matching_time_scale": 0.999,
158
+ "flow_matching_beta_alpha": 1.0,
159
+ "flow_matching_beta_beta": 1.5,
160
+ "num_inference_steps": null,
161
+ "mask_action_dim_padding": true,
162
+ "enable_inference_cuda_graph": true,
163
+ "recipe_path": "src/lerobot/configs/recipes/recap_advantage_molmoact2.yaml",
164
+ "advantage_prefix": "",
165
+ "cfg_beta": 1.0,
166
+ "per_episode_seed": false,
167
+ "eval_seed": null,
168
+ "rtc_config": null,
169
+ "joint_signs": null,
170
+ "joint_offsets": null,
171
+ "enable_lora_vlm": false,
172
+ "lora_rank": 64,
173
+ "lora_alpha": 16,
174
+ "lora_dropout": 0.05,
175
+ "lora_bias": "none",
176
+ "enable_lora_action_expert": false,
177
+ "enable_knowledge_insulation": false,
178
+ "freeze_embedding": true,
179
+ "train_action_expert_only": true,
180
+ "gradient_checkpointing": true,
181
+ "model_dtype": "bfloat16",
182
+ "softmax_auxiliary_loss": true,
183
+ "softmax_auxiliary_loss_scale": 0.0001,
184
+ "discrete_loss_token_weighting": "root_subsegments_root_tokens",
185
+ "optimizer_lr": 1e-05,
186
+ "optimizer_vit_lr": 5e-06,
187
+ "optimizer_connector_lr": 5e-06,
188
+ "optimizer_action_expert_lr": 5e-05,
189
+ "optimizer_betas": [
190
+ 0.9,
191
+ 0.95
192
+ ],
193
+ "optimizer_eps": 1e-06,
194
+ "optimizer_weight_decay": 0.0,
195
+ "optimizer_grad_clip_norm": 1.0,
196
+ "scheduler_warmup_steps": 200,
197
+ "scheduler_decay_steps": 100000,
198
+ "scheduler_decay_lr": 1e-06,
199
+ "normalization_mapping": {
200
+ "VISUAL": "IDENTITY",
201
+ "STATE": "QUANTILES",
202
+ "ACTION": "QUANTILES"
203
+ },
204
+ "dataset_feature_names": {
205
+ "action": [
206
+ "shoulder_pan.pos",
207
+ "shoulder_lift.pos",
208
+ "elbow_flex.pos",
209
+ "wrist_flex.pos",
210
+ "wrist_roll.pos",
211
+ "gripper.pos"
212
+ ],
213
+ "observation.state": [
214
+ "shoulder_pan.pos",
215
+ "shoulder_lift.pos",
216
+ "elbow_flex.pos",
217
+ "wrist_flex.pos",
218
+ "wrist_roll.pos",
219
+ "gripper.pos"
220
+ ]
221
+ }
222
+ },
223
+ "reward_model": null,
224
+ "output_dir": "outputs/molmoact2_recap_stackblocks_smoke",
225
+ "job_name": "molmoact2_recap_stackblocks_smoke",
226
+ "resume": false,
227
+ "seed": 1000,
228
+ "cudnn_deterministic": false,
229
+ "num_workers": 2,
230
+ "batch_size": 8,
231
+ "prefetch_factor": 4,
232
+ "persistent_workers": true,
233
+ "steps": 100,
234
+ "env_eval_freq": -1,
235
+ "log_freq": 10,
236
+ "eval_steps": 0,
237
+ "max_eval_samples": 0,
238
+ "tolerance_s": 0.0001,
239
+ "save_checkpoint": false,
240
+ "save_freq": 50,
241
+ "use_policy_training_preset": true,
242
+ "optimizer": {
243
+ "type": "adamw",
244
+ "lr": 1e-05,
245
+ "weight_decay": 0.0,
246
+ "grad_clip_norm": 1.0,
247
+ "betas": [
248
+ 0.9,
249
+ 0.95
250
+ ],
251
+ "eps": 1e-06
252
+ },
253
+ "scheduler": {
254
+ "type": "cosine_decay_with_warmup",
255
+ "num_warmup_steps": 200,
256
+ "num_decay_steps": 100000,
257
+ "peak_lr": 1e-05,
258
+ "decay_lr": 1e-06
259
+ },
260
+ "eval": {
261
+ "n_episodes": 50,
262
+ "batch_size": 16,
263
+ "use_async_envs": true,
264
+ "recording": false,
265
+ "recording_repo_id": null,
266
+ "recording_private": false
267
+ },
268
+ "wandb": {
269
+ "enable": false,
270
+ "disable_artifact": false,
271
+ "project": "lerobot",
272
+ "entity": null,
273
+ "notes": null,
274
+ "run_id": null,
275
+ "mode": null,
276
+ "add_tags": true
277
+ },
278
+ "peft": null,
279
+ "job": {
280
+ "target": null,
281
+ "image": "huggingface/lerobot-gpu:latest",
282
+ "timeout": "2d",
283
+ "detach": false,
284
+ "tags": []
285
+ },
286
+ "save_checkpoint_to_hub": false,
287
+ "sample_weighting": null,
288
+ "rename_map": {},
289
+ "checkpoint_path": null
290
+ }