Robotics
LeRobot
Safetensors
molmoact2
justintiensmith commited on
Commit
ed28e5e
·
verified ·
1 Parent(s): 28ffbf2

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +155 -0
  2. config.json +181 -0
  3. model.safetensors +3 -0
  4. train_config.json +319 -0
README.md ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets: justintiensmith/Merged_Reasoning_Tasks
3
+ library_name: lerobot
4
+ license: apache-2.0
5
+ model_name: molmoact2
6
+ pipeline_tag: robotics
7
+ tags:
8
+ - molmoact2
9
+ - lerobot
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
+
41
+
42
+ ## Inputs & Outputs
43
+
44
+ The policy consumes these observation features and produces these action features.
45
+
46
+ **Inputs**
47
+
48
+ | Feature | Type | Shape |
49
+ | --- | --- | --- |
50
+ | `observation.state` | STATE | `(6,)` |
51
+ | `observation.images.wrist` | VISUAL | `(3, 480, 640)` |
52
+ | `observation.images.middle` | VISUAL | `(3, 480, 640)` |
53
+ | `observation.images.above` | VISUAL | `(3, 480, 640)` |
54
+ | `observation.images.right` | VISUAL | `(3, 480, 640)` |
55
+ | `observation.images.left` | VISUAL | `(3, 480, 640)` |
56
+ | `observation.motor_currents` | STATE | `(6,)` |
57
+ | `observation.motor_velocities` | STATE | `(6,)` |
58
+ | `observation.sensor_timestamps` | STATE | `(8,)` |
59
+ | `observation.depths.middle` | STATE | `(480, 640)` |
60
+
61
+ **Outputs**
62
+
63
+ | Feature | Type | Shape |
64
+ | --- | --- | --- |
65
+ | `action` | ACTION | `(6,)` |
66
+
67
+
68
+
69
+ ## Training Configuration
70
+
71
+ | Setting | Value |
72
+ | --- | --- |
73
+ | Training steps | 7081 |
74
+ | Batch size | 32 |
75
+ | Optimizer | adamw |
76
+ | Learning rate | 1e-05 |
77
+ | Seed | 1000 |
78
+ | LeRobot version | 0.5.2 |
79
+
80
+ ---
81
+
82
+ ## How to Get Started with the Model
83
+
84
+ New to LeRobot? These guides cover the full workflow:
85
+
86
+ - **[Install LeRobot](https://huggingface.co/docs/lerobot/main/en/installation)** — set up the `lerobot` package.
87
+ - **[Hardware setup](https://huggingface.co/docs/lerobot/main/en/hardware_guide)** — assemble, wire, and calibrate your robot and cameras.
88
+ - **[Record data & train a policy](https://huggingface.co/docs/lerobot/en/il_robots)** — the end-to-end imitation-learning walkthrough.
89
+ - **[CLI cheat-sheet](https://huggingface.co/docs/lerobot/main/en/cheat-sheet)** — quick reference for the `lerobot-*` commands.
90
+
91
+ The short version to run and train this policy:
92
+
93
+ ### Run the policy on your robot
94
+
95
+ ```bash
96
+ lerobot-rollout \
97
+ --strategy.type=base \
98
+ --robot.type=<your_robot_type> \
99
+ --robot.port=<your_robot_port> \
100
+ --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}}" \
101
+ --policy.path=justintiensmith/molmoact2_Merged_Reasoning_Tasks \
102
+ --task="<your_task_description>" \
103
+ --duration=60
104
+ ```
105
+
106
+ 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.
107
+
108
+ 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).
109
+
110
+ ### Train your own policy
111
+
112
+ ```bash
113
+ lerobot-train \
114
+ --dataset.repo_id=${HF_USER}/<dataset> \
115
+ --policy.type=molmoact2 \
116
+ --output_dir=outputs/train/<policy_repo_id> \
117
+ --job_name=lerobot_training \
118
+ --policy.device=cuda \
119
+ --policy.repo_id=${HF_USER}/<policy_repo_id> \
120
+ --wandb.enable=true
121
+ ```
122
+
123
+ _Writes checkpoints to `outputs/train/<policy_repo_id>/checkpoints/`._
124
+
125
+ ---
126
+
127
+ ## Evaluation
128
+
129
+ <!-- Report real-robot results here: run the policy several times per task and count the
130
+ successes. Delete the "No evaluation results" line and fill in this table instead:
131
+
132
+ | Task | Trials | Successes | Success rate |
133
+ | ---- | ------ | --------- | ------------ |
134
+ | pick the lego brick | 10 | 8 | 80% |
135
+
136
+ Also worth noting: anything that affects difficulty (new object positions, lighting,
137
+ distractors, a different robot of the same type, ...).
138
+ -->
139
+
140
+ _No evaluation results have been provided for this policy yet._
141
+
142
+ ---
143
+
144
+ ## Citation
145
+
146
+ If you use this policy, please cite the method linked in the description above, along with LeRobot:
147
+
148
+ ```bibtex
149
+ @misc{cadene2024lerobot,
150
+ 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},
151
+ title = {LeRobot: State-of-the-art Machine Learning for Real-World Robotics in Pytorch},
152
+ howpublished = "\url{https://github.com/huggingface/lerobot}",
153
+ year = {2024}
154
+ }
155
+ ```
config.json ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.wrist": {
12
+ "type": "VISUAL",
13
+ "shape": [
14
+ 3,
15
+ 480,
16
+ 640
17
+ ]
18
+ },
19
+ "observation.images.middle": {
20
+ "type": "VISUAL",
21
+ "shape": [
22
+ 3,
23
+ 480,
24
+ 640
25
+ ]
26
+ },
27
+ "observation.images.above": {
28
+ "type": "VISUAL",
29
+ "shape": [
30
+ 3,
31
+ 480,
32
+ 640
33
+ ]
34
+ },
35
+ "observation.images.right": {
36
+ "type": "VISUAL",
37
+ "shape": [
38
+ 3,
39
+ 480,
40
+ 640
41
+ ]
42
+ },
43
+ "observation.images.left": {
44
+ "type": "VISUAL",
45
+ "shape": [
46
+ 3,
47
+ 480,
48
+ 640
49
+ ]
50
+ },
51
+ "observation.motor_currents": {
52
+ "type": "STATE",
53
+ "shape": [
54
+ 6
55
+ ]
56
+ },
57
+ "observation.motor_velocities": {
58
+ "type": "STATE",
59
+ "shape": [
60
+ 6
61
+ ]
62
+ },
63
+ "observation.sensor_timestamps": {
64
+ "type": "STATE",
65
+ "shape": [
66
+ 8
67
+ ]
68
+ },
69
+ "observation.depths.middle": {
70
+ "type": "STATE",
71
+ "shape": [
72
+ 480,
73
+ 640
74
+ ]
75
+ }
76
+ },
77
+ "output_features": {
78
+ "action": {
79
+ "type": "ACTION",
80
+ "shape": [
81
+ 6
82
+ ]
83
+ }
84
+ },
85
+ "device": "cuda",
86
+ "use_amp": false,
87
+ "use_peft": false,
88
+ "push_to_hub": true,
89
+ "repo_id": "justintiensmith/molmoact2_Merged_Reasoning_Tasks",
90
+ "private": null,
91
+ "tags": null,
92
+ "license": null,
93
+ "pretrained_path": null,
94
+ "checkpoint_path": "allenai/MolmoAct2-SO100_101",
95
+ "checkpoint_revision": null,
96
+ "checkpoint_force_download": false,
97
+ "chunk_size": 10,
98
+ "n_action_steps": 10,
99
+ "action_mode": "continuous",
100
+ "inference_action_mode": null,
101
+ "discrete_action_tokenizer": "allenai/MolmoAct2-FAST-Tokenizer",
102
+ "discrete_generation_max_steps": null,
103
+ "norm_tag": null,
104
+ "setup_type": "single SO-101 follower robot arm with three RGB cameras.",
105
+ "control_mode": "absolute joint position control",
106
+ "image_keys": [
107
+ "observation.images.wrist",
108
+ "observation.images.middle",
109
+ "observation.images.above"
110
+ ],
111
+ "normalize_language": true,
112
+ "add_setup_tokens": true,
113
+ "add_control_tokens": true,
114
+ "normalize_gripper": true,
115
+ "num_state_tokens": 256,
116
+ "max_sequence_length": null,
117
+ "expected_max_action_dim": 32,
118
+ "num_flow_timesteps": 8,
119
+ "flow_matching_cutoff": 1.0,
120
+ "flow_matching_time_offset": 0.001,
121
+ "flow_matching_time_scale": 0.999,
122
+ "flow_matching_beta_alpha": 1.0,
123
+ "flow_matching_beta_beta": 1.5,
124
+ "num_inference_steps": null,
125
+ "mask_action_dim_padding": true,
126
+ "enable_inference_cuda_graph": true,
127
+ "per_episode_seed": false,
128
+ "eval_seed": null,
129
+ "rtc_config": null,
130
+ "enable_lora_vlm": false,
131
+ "lora_rank": 64,
132
+ "lora_alpha": 16,
133
+ "lora_dropout": 0.05,
134
+ "lora_bias": "none",
135
+ "enable_lora_action_expert": false,
136
+ "enable_knowledge_insulation": false,
137
+ "freeze_embedding": true,
138
+ "train_action_expert_only": true,
139
+ "gradient_checkpointing": true,
140
+ "model_dtype": "bfloat16",
141
+ "softmax_auxiliary_loss": true,
142
+ "softmax_auxiliary_loss_scale": 0.0001,
143
+ "discrete_loss_token_weighting": "root_subsegments_root_tokens",
144
+ "optimizer_lr": 1e-05,
145
+ "optimizer_vit_lr": 5e-06,
146
+ "optimizer_connector_lr": 5e-06,
147
+ "optimizer_action_expert_lr": 5e-05,
148
+ "optimizer_betas": [
149
+ 0.9,
150
+ 0.95
151
+ ],
152
+ "optimizer_eps": 1e-06,
153
+ "optimizer_weight_decay": 0.0,
154
+ "optimizer_grad_clip_norm": 1.0,
155
+ "scheduler_warmup_steps": 200,
156
+ "scheduler_decay_steps": null,
157
+ "scheduler_decay_lr": 1e-06,
158
+ "normalization_mapping": {
159
+ "VISUAL": "IDENTITY",
160
+ "STATE": "QUANTILES",
161
+ "ACTION": "QUANTILES"
162
+ },
163
+ "dataset_feature_names": {
164
+ "action": [
165
+ "shoulder_pan.pos",
166
+ "shoulder_lift.pos",
167
+ "elbow_flex.pos",
168
+ "wrist_flex.pos",
169
+ "wrist_roll.pos",
170
+ "gripper.pos"
171
+ ],
172
+ "observation.state": [
173
+ "shoulder_pan.pos",
174
+ "shoulder_lift.pos",
175
+ "elbow_flex.pos",
176
+ "wrist_flex.pos",
177
+ "wrist_roll.pos",
178
+ "gripper.pos"
179
+ ]
180
+ }
181
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:015c4b90dc40c69b0410073c6df8fb2357fdd31b25550cb5866fd8c4dc48017a
3
+ size 10884573720
train_config.json ADDED
@@ -0,0 +1,319 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "justintiensmith/Merged_Reasoning_Tasks",
4
+ "root": null,
5
+ "episodes": null,
6
+ "image_transforms": {
7
+ "enable": true,
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
+ "streaming": false
82
+ },
83
+ "env": null,
84
+ "policy": {
85
+ "type": "molmoact2",
86
+ "n_obs_steps": 1,
87
+ "input_features": {
88
+ "observation.state": {
89
+ "type": "STATE",
90
+ "shape": [
91
+ 6
92
+ ]
93
+ },
94
+ "observation.images.wrist": {
95
+ "type": "VISUAL",
96
+ "shape": [
97
+ 3,
98
+ 480,
99
+ 640
100
+ ]
101
+ },
102
+ "observation.images.middle": {
103
+ "type": "VISUAL",
104
+ "shape": [
105
+ 3,
106
+ 480,
107
+ 640
108
+ ]
109
+ },
110
+ "observation.images.above": {
111
+ "type": "VISUAL",
112
+ "shape": [
113
+ 3,
114
+ 480,
115
+ 640
116
+ ]
117
+ },
118
+ "observation.images.right": {
119
+ "type": "VISUAL",
120
+ "shape": [
121
+ 3,
122
+ 480,
123
+ 640
124
+ ]
125
+ },
126
+ "observation.images.left": {
127
+ "type": "VISUAL",
128
+ "shape": [
129
+ 3,
130
+ 480,
131
+ 640
132
+ ]
133
+ },
134
+ "observation.motor_currents": {
135
+ "type": "STATE",
136
+ "shape": [
137
+ 6
138
+ ]
139
+ },
140
+ "observation.motor_velocities": {
141
+ "type": "STATE",
142
+ "shape": [
143
+ 6
144
+ ]
145
+ },
146
+ "observation.sensor_timestamps": {
147
+ "type": "STATE",
148
+ "shape": [
149
+ 8
150
+ ]
151
+ },
152
+ "observation.depths.middle": {
153
+ "type": "STATE",
154
+ "shape": [
155
+ 480,
156
+ 640
157
+ ]
158
+ }
159
+ },
160
+ "output_features": {
161
+ "action": {
162
+ "type": "ACTION",
163
+ "shape": [
164
+ 6
165
+ ]
166
+ }
167
+ },
168
+ "device": "cuda",
169
+ "use_amp": false,
170
+ "use_peft": false,
171
+ "push_to_hub": true,
172
+ "repo_id": "justintiensmith/molmoact2_Merged_Reasoning_Tasks",
173
+ "private": null,
174
+ "tags": null,
175
+ "license": null,
176
+ "pretrained_path": null,
177
+ "checkpoint_path": "allenai/MolmoAct2-SO100_101",
178
+ "checkpoint_revision": null,
179
+ "checkpoint_force_download": false,
180
+ "chunk_size": 10,
181
+ "n_action_steps": 10,
182
+ "action_mode": "continuous",
183
+ "inference_action_mode": null,
184
+ "discrete_action_tokenizer": "allenai/MolmoAct2-FAST-Tokenizer",
185
+ "discrete_generation_max_steps": null,
186
+ "norm_tag": null,
187
+ "setup_type": "single SO-101 follower robot arm with three RGB cameras.",
188
+ "control_mode": "absolute joint position control",
189
+ "image_keys": [
190
+ "observation.images.wrist",
191
+ "observation.images.middle",
192
+ "observation.images.above"
193
+ ],
194
+ "normalize_language": true,
195
+ "add_setup_tokens": true,
196
+ "add_control_tokens": true,
197
+ "normalize_gripper": true,
198
+ "num_state_tokens": 256,
199
+ "max_sequence_length": null,
200
+ "expected_max_action_dim": 32,
201
+ "num_flow_timesteps": 8,
202
+ "flow_matching_cutoff": 1.0,
203
+ "flow_matching_time_offset": 0.001,
204
+ "flow_matching_time_scale": 0.999,
205
+ "flow_matching_beta_alpha": 1.0,
206
+ "flow_matching_beta_beta": 1.5,
207
+ "num_inference_steps": null,
208
+ "mask_action_dim_padding": true,
209
+ "enable_inference_cuda_graph": true,
210
+ "per_episode_seed": false,
211
+ "eval_seed": null,
212
+ "rtc_config": null,
213
+ "enable_lora_vlm": false,
214
+ "lora_rank": 64,
215
+ "lora_alpha": 16,
216
+ "lora_dropout": 0.05,
217
+ "lora_bias": "none",
218
+ "enable_lora_action_expert": false,
219
+ "enable_knowledge_insulation": false,
220
+ "freeze_embedding": true,
221
+ "train_action_expert_only": true,
222
+ "gradient_checkpointing": true,
223
+ "model_dtype": "bfloat16",
224
+ "softmax_auxiliary_loss": true,
225
+ "softmax_auxiliary_loss_scale": 0.0001,
226
+ "discrete_loss_token_weighting": "root_subsegments_root_tokens",
227
+ "optimizer_lr": 1e-05,
228
+ "optimizer_vit_lr": 5e-06,
229
+ "optimizer_connector_lr": 5e-06,
230
+ "optimizer_action_expert_lr": 5e-05,
231
+ "optimizer_betas": [
232
+ 0.9,
233
+ 0.95
234
+ ],
235
+ "optimizer_eps": 1e-06,
236
+ "optimizer_weight_decay": 0.0,
237
+ "optimizer_grad_clip_norm": 1.0,
238
+ "scheduler_warmup_steps": 200,
239
+ "scheduler_decay_steps": null,
240
+ "scheduler_decay_lr": 1e-06,
241
+ "normalization_mapping": {
242
+ "VISUAL": "IDENTITY",
243
+ "STATE": "QUANTILES",
244
+ "ACTION": "QUANTILES"
245
+ },
246
+ "dataset_feature_names": {
247
+ "action": [
248
+ "shoulder_pan.pos",
249
+ "shoulder_lift.pos",
250
+ "elbow_flex.pos",
251
+ "wrist_flex.pos",
252
+ "wrist_roll.pos",
253
+ "gripper.pos"
254
+ ],
255
+ "observation.state": [
256
+ "shoulder_pan.pos",
257
+ "shoulder_lift.pos",
258
+ "elbow_flex.pos",
259
+ "wrist_flex.pos",
260
+ "wrist_roll.pos",
261
+ "gripper.pos"
262
+ ]
263
+ }
264
+ },
265
+ "reward_model": null,
266
+ "output_dir": "/vol/dissolve/justin/outputs/molmoact2_Merged_Reasoning_Tasks",
267
+ "job_name": "molmoact2_Merged_Reasoning_Tasks",
268
+ "resume": false,
269
+ "seed": 1000,
270
+ "cudnn_deterministic": false,
271
+ "num_workers": 4,
272
+ "batch_size": 32,
273
+ "prefetch_factor": 4,
274
+ "persistent_workers": true,
275
+ "steps": 7081,
276
+ "eval_freq": -1,
277
+ "log_freq": 20,
278
+ "tolerance_s": 0.0001,
279
+ "save_checkpoint": true,
280
+ "save_freq": 7081,
281
+ "use_policy_training_preset": true,
282
+ "optimizer": {
283
+ "type": "adamw",
284
+ "lr": 1e-05,
285
+ "weight_decay": 0.0,
286
+ "grad_clip_norm": 1.0,
287
+ "betas": [
288
+ 0.9,
289
+ 0.95
290
+ ],
291
+ "eps": 1e-06
292
+ },
293
+ "scheduler": {
294
+ "type": "molmoact2_cosine_decay_with_warmup",
295
+ "num_warmup_steps": 200,
296
+ "num_decay_steps": null,
297
+ "peak_lr": 1e-05,
298
+ "decay_lr": 1e-06
299
+ },
300
+ "eval": {
301
+ "n_episodes": 50,
302
+ "batch_size": 44,
303
+ "use_async_envs": true
304
+ },
305
+ "wandb": {
306
+ "enable": true,
307
+ "disable_artifact": true,
308
+ "project": "lerobot",
309
+ "entity": null,
310
+ "notes": null,
311
+ "run_id": "pfr27qid",
312
+ "mode": null,
313
+ "add_tags": true
314
+ },
315
+ "peft": null,
316
+ "sample_weighting": null,
317
+ "rename_map": {},
318
+ "checkpoint_path": null
319
+ }