Robotics
LeRobot
Safetensors
smolvla
godnpeter commited on
Commit
dd72aa6
·
verified ·
1 Parent(s): ff84843

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +63 -0
  2. config.json +94 -0
  3. model.safetensors +3 -0
  4. train_config.json +1121 -0
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: lerobot/smolvla_base
3
+ datasets: godnpeter/aopoli-lv-libero_combined_no_noops_lerobot_v21
4
+ library_name: lerobot
5
+ license: apache-2.0
6
+ model_name: smolvla
7
+ pipeline_tag: robotics
8
+ tags:
9
+ - smolvla
10
+ - robotics
11
+ - lerobot
12
+ ---
13
+
14
+ # Model Card for smolvla
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+ [SmolVLA](https://huggingface.co/papers/2506.01844) is a compact, efficient vision-language-action model that achieves competitive performance at reduced computational costs and can be deployed on consumer-grade hardware.
20
+
21
+
22
+ This policy has been trained and pushed to the Hub using [LeRobot](https://github.com/huggingface/lerobot).
23
+ See the full documentation at [LeRobot Docs](https://huggingface.co/docs/lerobot/index).
24
+
25
+ ---
26
+
27
+ ## How to Get Started with the Model
28
+
29
+ For a complete walkthrough, see the [training guide](https://huggingface.co/docs/lerobot/il_robots#train-a-policy).
30
+ Below is the short version on how to train and run inference/eval:
31
+
32
+ ### Train from scratch
33
+
34
+ ```bash
35
+ lerobot-train \
36
+ --dataset.repo_id=${HF_USER}/<dataset> \
37
+ --policy.type=act \
38
+ --output_dir=outputs/train/<desired_policy_repo_id> \
39
+ --job_name=lerobot_training \
40
+ --policy.device=cuda \
41
+ --policy.repo_id=${HF_USER}/<desired_policy_repo_id>
42
+ --wandb.enable=true
43
+ ```
44
+
45
+ _Writes checkpoints to `outputs/train/<desired_policy_repo_id>/checkpoints/`._
46
+
47
+ ### Evaluate the policy/run inference
48
+
49
+ ```bash
50
+ lerobot-record \
51
+ --robot.type=so100_follower \
52
+ --dataset.repo_id=<hf_user>/eval_<dataset> \
53
+ --policy.path=<hf_user>/<desired_policy_repo_id> \
54
+ --episodes=10
55
+ ```
56
+
57
+ Prefix the dataset repo with **eval\_** and supply `--policy.path` pointing to a local or hub checkpoint.
58
+
59
+ ---
60
+
61
+ ## Model Details
62
+
63
+ - **License:** apache-2.0
config.json ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "smolvla",
3
+ "n_obs_steps": 1,
4
+ "normalization_mapping": {
5
+ "VISUAL": "IDENTITY",
6
+ "STATE": "MEAN_STD",
7
+ "ACTION": "MEAN_STD"
8
+ },
9
+ "input_features": {
10
+ "observation.images.wrist_image": {
11
+ "type": "VISUAL",
12
+ "shape": [
13
+ 256,
14
+ 256,
15
+ 3
16
+ ]
17
+ },
18
+ "observation.images.image": {
19
+ "type": "VISUAL",
20
+ "shape": [
21
+ 256,
22
+ 256,
23
+ 3
24
+ ]
25
+ },
26
+ "observation.state": {
27
+ "type": "STATE",
28
+ "shape": [
29
+ 8
30
+ ]
31
+ }
32
+ },
33
+ "output_features": {
34
+ "action": {
35
+ "type": "ACTION",
36
+ "shape": [
37
+ 7
38
+ ]
39
+ }
40
+ },
41
+ "device": "cuda",
42
+ "use_amp": false,
43
+ "use_peft": false,
44
+ "push_to_hub": true,
45
+ "repo_id": "combined_frozen_chunk8_yesproprio_diversified_text_prompt_1010",
46
+ "private": null,
47
+ "tags": null,
48
+ "license": null,
49
+ "use_proprio": true,
50
+ "chunk_size": 8,
51
+ "n_action_steps": 8,
52
+ "normalize_visual": "identity",
53
+ "normalize_state": "mean_std",
54
+ "normalize_action": "mean_std",
55
+ "max_state_dim": 32,
56
+ "max_action_dim": 32,
57
+ "resize_imgs_with_padding": [
58
+ 512,
59
+ 512
60
+ ],
61
+ "empty_cameras": 0,
62
+ "adapt_to_pi_aloha": false,
63
+ "use_delta_joint_actions_aloha": false,
64
+ "tokenizer_max_length": 48,
65
+ "num_steps": 10,
66
+ "use_cache": true,
67
+ "freeze_vision_encoder": true,
68
+ "train_expert_only": true,
69
+ "train_state_proj": true,
70
+ "optimizer_lr": 0.0001,
71
+ "optimizer_betas": [
72
+ 0.9,
73
+ 0.95
74
+ ],
75
+ "optimizer_eps": 1e-08,
76
+ "optimizer_weight_decay": 1e-10,
77
+ "optimizer_grad_clip_norm": 10,
78
+ "scheduler_warmup_steps": 1000,
79
+ "scheduler_decay_steps": 30000,
80
+ "scheduler_decay_lr": 2.5e-06,
81
+ "vlm_model_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct",
82
+ "load_vlm_weights": true,
83
+ "vlm_model_dtype": "bfloat16",
84
+ "add_image_special_tokens": false,
85
+ "attention_mode": "cross_attn",
86
+ "prefix_length": -1,
87
+ "pad_language_to": "longest",
88
+ "num_expert_layers": -1,
89
+ "num_vlm_layers": 16,
90
+ "self_attn_every_n_layers": 2,
91
+ "expert_width_multiplier": 0.75,
92
+ "min_period": 0.004,
93
+ "max_period": 4.0
94
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78ed39aba4ccbf34f6ccae3ee1813d8b737e9f9b5ac378d45614df62bc19987c
3
+ size 906713328
train_config.json ADDED
@@ -0,0 +1,1121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "godnpeter/aopoli-lv-libero_combined_no_noops_lerobot_v21",
4
+ "use_all_local_repos": false,
5
+ "root": null,
6
+ "episodes": null,
7
+ "image_transforms": {
8
+ "enable": false,
9
+ "max_num_transforms": 3,
10
+ "random_order": false,
11
+ "tfs": {
12
+ "brightness": {
13
+ "weight": 1.0,
14
+ "type": "ColorJitter",
15
+ "kwargs": {
16
+ "brightness": [
17
+ 0.8,
18
+ 1.2
19
+ ]
20
+ }
21
+ },
22
+ "contrast": {
23
+ "weight": 1.0,
24
+ "type": "ColorJitter",
25
+ "kwargs": {
26
+ "contrast": [
27
+ 0.8,
28
+ 1.2
29
+ ]
30
+ }
31
+ },
32
+ "saturation": {
33
+ "weight": 1.0,
34
+ "type": "ColorJitter",
35
+ "kwargs": {
36
+ "saturation": [
37
+ 0.5,
38
+ 1.5
39
+ ]
40
+ }
41
+ },
42
+ "hue": {
43
+ "weight": 1.0,
44
+ "type": "ColorJitter",
45
+ "kwargs": {
46
+ "hue": [
47
+ -0.05,
48
+ 0.05
49
+ ]
50
+ }
51
+ },
52
+ "sharpness": {
53
+ "weight": 1.0,
54
+ "type": "SharpnessJitter",
55
+ "kwargs": {
56
+ "sharpness": [
57
+ 0.5,
58
+ 1.5
59
+ ]
60
+ }
61
+ },
62
+ "shift": {
63
+ "weight": 0.0,
64
+ "type": "RandomShift",
65
+ "kwargs": {
66
+ "max_shift": 8,
67
+ "padding_mode": "edge"
68
+ }
69
+ }
70
+ }
71
+ },
72
+ "text_transform": {
73
+ "enable": true,
74
+ "rewrite_map_path": "/fsx/dongyoonhwang/lerobot_raw/modified_libero_prompts/diversified_text_prompt.yaml",
75
+ "case_insensitive": true,
76
+ "random_choice": true,
77
+ "rewrite_map": {
78
+ "pick up the black bowl between the plate and the ramekin and place it on the plate": [
79
+ "pick up the black bowl that\u2019s sitting between the plate and the ramekin, and set it down on the plate",
80
+ "lift the black bowl positioned between the plate and ramekin, then put it on top of the plate",
81
+ "move the black bowl located between the plate and the ramekin onto the plate",
82
+ "carefully take the black bowl from between the plate and ramekin and place it on the plate",
83
+ "grab the black bowl found between the plate and ramekin and position it on the plate",
84
+ "take the black bowl lying in the space between the plate and the ramekin and move it onto the plate",
85
+ "retrieve the black bowl that\u2019s placed between the plate and ramekin and rest it on the plate",
86
+ "grasp the black bowl sitting between the plate and ramekin, then transfer it onto the plate",
87
+ "move the black bowl resting between the plate and ramekin so it ends up on the plate",
88
+ "pick up the black bowl from the area between the plate and ramekin and put it on the plate",
89
+ "lift the black bowl positioned between those two items \u2014 the plate and ramekin \u2014 and place it neatly on the plate",
90
+ "take hold of the black bowl in the middle of the plate and ramekin, and carefully set it on the plate",
91
+ "relocate the black bowl that\u2019s currently placed between the plate and ramekin to the plate itself",
92
+ "with one smooth motion, grasp the black bowl between the plate and ramekin and place it squarely on the plate",
93
+ "pick up the black bowl in the spot between the plate and ramekin and gently place it onto the plate",
94
+ "grab the black bowl resting midway between the plate and ramekin and move it so it sits atop the plate",
95
+ "take the black bowl that lies between the plate and ramekin and put it down on the plate in front of you",
96
+ "retrieve the black bowl nestled between the plate and ramekin and position it carefully on the plate",
97
+ "move the black bowl situated between the plate and ramekin directly onto the plate",
98
+ "lift the black bowl found between the plate and ramekin, then neatly place it onto the plate"
99
+ ],
100
+ "pick up the black bowl next to the ramekin and place it on the plate": [
101
+ "pick up the black bowl next to the ramekin and set it down on the plate",
102
+ "grab the black bowl located beside the ramekin and place it on the plate",
103
+ "lift the black bowl positioned right next to the ramekin, then move it to the plate",
104
+ "take the black bowl that\u2019s sitting near the ramekin and put it on the plate",
105
+ "move the black bowl beside the ramekin so it\u2019s resting on the plate",
106
+ "retrieve the black bowl placed next to the ramekin and place it carefully on the plate",
107
+ "grasp the black bowl sitting adjacent to the ramekin and set it on the plate",
108
+ "transfer the black bowl lying beside the ramekin to the plate",
109
+ "lift the black bowl located close to the ramekin and move it onto the plate",
110
+ "take the black bowl from beside the ramekin and position it on top of the plate",
111
+ "carefully pick up the black bowl that\u2019s next to the ramekin and put it down on the plate\u2019s surface",
112
+ "grab the black bowl near the ramekin and gently place it on the plate",
113
+ "take hold of the black bowl situated next to the ramekin and lay it down on the plate",
114
+ "move the black bowl positioned right by the ramekin onto the plate in front of you",
115
+ "lift the black bowl resting beside the ramekin and put it onto the plate",
116
+ "pick up the black bowl you find next to the ramekin and place it carefully on the plate",
117
+ "retrieve the black bowl next to the ramekin and set it neatly on the plate",
118
+ "with care, move the black bowl that\u2019s near the ramekin to the plate\u2019s center",
119
+ "take the black bowl positioned alongside the ramekin and place it on top of the plate",
120
+ "lift the black bowl beside the ramekin, then put it gently onto the plate"
121
+ ],
122
+ "pick up the black bowl from table center and place it on the plate": [
123
+ "pick up the black bowl from the center of the table and put it on the plate",
124
+ "lift the black bowl that\u2019s placed at the table\u2019s center and set it on the plate",
125
+ "move the black bowl from the middle of the table onto the plate",
126
+ "grab the black bowl in the table\u2019s center and transfer it to the plate",
127
+ "take the black bowl from the center area of the table and place it on the plate",
128
+ "retrieve the black bowl located at the center of the table and put it on top of the plate",
129
+ "lift the black bowl that\u2019s sitting right in the table\u2019s middle and set it carefully on the plate",
130
+ "move the black bowl positioned at the table\u2019s center onto the plate\u2019s surface",
131
+ "pick up the black bowl resting in the center of the table and place it on the plate",
132
+ "grab the black bowl from the table center and move it onto the plate in front of you",
133
+ "carefully lift the black bowl from the table\u2019s middle section and put it on the plate",
134
+ "take the black bowl located in the center of the table and rest it on the plate",
135
+ "pick up the black bowl from the middle spot on the table and place it onto the plate",
136
+ "with one motion, lift the black bowl from the table\u2019s center and lay it on the plate",
137
+ "take the black bowl found in the table\u2019s center area and gently set it on the plate",
138
+ "retrieve the black bowl positioned in the middle of the table and move it to the plate",
139
+ "grab the black bowl right in the table\u2019s center and place it on the plate\u2019s surface",
140
+ "lift the black bowl that\u2019s at the center of the table and move it onto the plate",
141
+ "move the black bowl from the middle of the table directly onto the plate",
142
+ "pick up the black bowl sitting in the center of the table and position it neatly on the plate"
143
+ ],
144
+ "pick up the black bowl on the cookie box and place it on the plate": [
145
+ "pick up the black bowl that\u2019s resting on the cookie box and set it on the plate",
146
+ "lift the black bowl placed on top of the cookie box and move it to the plate",
147
+ "grab the black bowl sitting on the cookie box and put it on the plate",
148
+ "take the black bowl from the cookie box and place it carefully on the plate",
149
+ "retrieve the black bowl that\u2019s on the cookie box and set it down on the plate",
150
+ "move the black bowl from the cookie box\u2019s top surface to the plate",
151
+ "grasp the black bowl placed atop the cookie box and lay it on the plate",
152
+ "lift the black bowl positioned on the cookie box and put it on the plate",
153
+ "pick up the black bowl lying on the cookie box and transfer it to the plate",
154
+ "move the black bowl resting on the cookie box onto the plate in front of you",
155
+ "take the black bowl from the cookie box and carefully place it on the plate",
156
+ "gently lift the black bowl on the cookie box and set it on top of the plate",
157
+ "grab the black bowl resting over the cookie box and place it onto the plate\u2019s surface",
158
+ "retrieve the black bowl from its spot on the cookie box and move it to the plate",
159
+ "lift the black bowl situated on the cookie box and put it down on the plate",
160
+ "pick up the black bowl positioned over the cookie box and carefully lay it on the plate",
161
+ "take the black bowl that\u2019s resting on top of the cookie box and place it on the plate",
162
+ "move the black bowl from the cookie box to the plate smoothly",
163
+ "grasp the black bowl found on the cookie box and set it down on the plate",
164
+ "lift the black bowl that\u2019s on the cookie box, then gently place it onto the plate"
165
+ ],
166
+ "pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate": [
167
+ "pick up the black bowl inside the wooden cabinet\u2019s top drawer and set it on the plate",
168
+ "open the wooden cabinet\u2019s top drawer, take the black bowl, and place it on the plate",
169
+ "retrieve the black bowl kept in the upper drawer of the wooden cabinet and put it on the plate",
170
+ "lift the black bowl from the top drawer of the wooden cabinet and move it onto the plate",
171
+ "take out the black bowl stored in the wooden cabinet\u2019s top drawer and rest it on the plate",
172
+ "pull open the cabinet\u2019s top drawer, grab the black bowl inside, and place it on the plate",
173
+ "remove the black bowl from the wooden cabinet\u2019s highest drawer and put it down on the plate",
174
+ "carefully lift the black bowl from the uppermost drawer of the wooden cabinet and set it on the plate",
175
+ "find the black bowl inside the top drawer of the wooden cabinet, pick it up, and place it on the plate",
176
+ "open the top drawer, take the black bowl inside, and lay it gently on the plate",
177
+ "retrieve the black bowl located within the wooden cabinet\u2019s top drawer and put it onto the plate",
178
+ "grasp the black bowl resting in the top drawer of the wooden cabinet and move it to the plate",
179
+ "take the black bowl out from the top drawer of the cabinet and position it on the plate",
180
+ "lift the black bowl kept inside the top drawer of the wooden cabinet and place it on the plate",
181
+ "remove the black bowl you find in the top drawer of the wooden cabinet and set it on the plate",
182
+ "take hold of the black bowl sitting in the cabinet\u2019s top drawer and move it to the plate",
183
+ "carefully take out the black bowl from the wooden cabinet\u2019s top drawer and put it on the plate",
184
+ "pull open the wooden cabinet\u2019s upper drawer, grab the black bowl, and rest it on the plate",
185
+ "lift the black bowl from inside the wooden cabinet\u2019s top drawer and lay it on the plate",
186
+ "retrieve the black bowl placed in the top drawer of the cabinet and set it neatly on the plate"
187
+ ],
188
+ "pick up the black bowl on the ramekin and place it on the plate": [
189
+ "pick up the black bowl that\u2019s resting on the ramekin and set it on the plate",
190
+ "lift the black bowl sitting atop the ramekin and move it to the plate",
191
+ "grab the black bowl placed on the ramekin and put it down on the plate",
192
+ "take the black bowl from the ramekin and place it carefully on the plate",
193
+ "retrieve the black bowl balanced on the ramekin and rest it on the plate",
194
+ "move the black bowl that\u2019s on the ramekin onto the plate",
195
+ "grasp the black bowl sitting over the ramekin and set it on the plate",
196
+ "lift the black bowl from the ramekin and put it gently on the plate",
197
+ "take the black bowl located on top of the ramekin and move it to the plate",
198
+ "carefully remove the black bowl from the ramekin and lay it on the plate",
199
+ "pick up the black bowl balanced on the ramekin and place it on the plate\u2019s surface",
200
+ "grab the black bowl from the ramekin and transfer it to the plate",
201
+ "retrieve the black bowl found atop the ramekin and put it on the plate",
202
+ "lift the black bowl resting over the ramekin and move it to the plate in front of you",
203
+ "take hold of the black bowl positioned on the ramekin and set it down on the plate",
204
+ "move the black bowl from the ramekin and position it neatly on the plate",
205
+ "grasp the black bowl lying on the ramekin and lay it onto the plate\u2019s surface",
206
+ "pick up the black bowl that\u2019s placed on top of the ramekin and set it on the plate",
207
+ "lift the black bowl you see on the ramekin and carefully rest it on the plate",
208
+ "take the black bowl sitting over the ramekin and gently place it onto the plate"
209
+ ],
210
+ "pick up the black bowl next to the cookie box and place it on the plate": [
211
+ "pick up the black bowl next to the cookie box and put it on the plate",
212
+ "lift the black bowl beside the cookie box and move it to the plate",
213
+ "grab the black bowl sitting next to the cookie box and set it down on the plate",
214
+ "take the black bowl located beside the cookie box and place it on the plate",
215
+ "move the black bowl found near the cookie box onto the plate",
216
+ "retrieve the black bowl from beside the cookie box and lay it on the plate",
217
+ "grasp the black bowl positioned next to the cookie box and transfer it to the plate",
218
+ "carefully lift the black bowl by the cookie box and put it on the plate",
219
+ "take hold of the black bowl placed beside the cookie box and move it onto the plate",
220
+ "pick up the black bowl near the cookie box and gently place it on the plate",
221
+ "lift the black bowl that\u2019s resting next to the cookie box and put it on the plate\u2019s surface",
222
+ "take the black bowl from beside the cookie box and set it down on the plate",
223
+ "move the black bowl adjacent to the cookie box onto the plate",
224
+ "grab the black bowl next to the cookie box and rest it carefully on the plate",
225
+ "retrieve the black bowl positioned beside the cookie box and lay it on the plate",
226
+ "lift the black bowl lying near the cookie box and transfer it to the plate",
227
+ "pick up the black bowl you see beside the cookie box and put it on the plate",
228
+ "take the black bowl found next to the cookie box and place it on the plate",
229
+ "move the black bowl that\u2019s close to the cookie box onto the plate in front of you",
230
+ "grasp the black bowl near the cookie box and carefully place it on the plate"
231
+ ],
232
+ "pick up the black bowl on the stove and place it on the plate": [
233
+ "pick up the black bowl that\u2019s on the stove and set it on the plate",
234
+ "lift the black bowl sitting atop the stove and move it to the plate",
235
+ "take the black bowl placed on the stove and put it down on the plate",
236
+ "grab the black bowl resting on the stove and lay it on the plate",
237
+ "retrieve the black bowl from the stove\u2019s surface and place it on the plate",
238
+ "move the black bowl located on the stove onto the plate",
239
+ "carefully lift the black bowl sitting on top of the stove and transfer it to the plate",
240
+ "pick up the black bowl lying on the stove and set it on the plate",
241
+ "take the black bowl from the stove and put it on the plate",
242
+ "lift the black bowl positioned over the stove and place it on the plate",
243
+ "grab the black bowl found on the stove and move it to the plate\u2019s surface",
244
+ "retrieve the black bowl sitting on the stove and set it gently on the plate",
245
+ "pick up the black bowl that\u2019s been placed on the stove and move it to the plate",
246
+ "lift the black bowl from the stove and lay it on top of the plate",
247
+ "take hold of the black bowl resting on the stove and position it on the plate",
248
+ "grasp the black bowl placed over the stove and transfer it onto the plate",
249
+ "carefully take the black bowl from the stove\u2019s surface and put it on the plate",
250
+ "move the black bowl that\u2019s on the stove directly to the plate",
251
+ "lift the black bowl from the stove area and set it on the plate",
252
+ "pick up the black bowl located on the stove and gently place it onto the plate"
253
+ ],
254
+ "pick up the black bowl next to the plate and place it on the plate": [
255
+ "pick up the black bowl next to the plate and set it down on the plate",
256
+ "grab the black bowl that\u2019s beside the plate and put it on top of the plate",
257
+ "lift the black bowl sitting near the plate and place it on the plate",
258
+ "take the black bowl located beside the plate and move it onto the plate",
259
+ "move the black bowl next to the plate so it rests on the plate",
260
+ "retrieve the black bowl positioned beside the plate and put it on the plate",
261
+ "carefully pick up the black bowl from beside the plate and place it on the plate",
262
+ "take the black bowl that\u2019s right next to the plate and set it on the plate\u2019s surface",
263
+ "grab the black bowl near the plate and gently put it on the plate",
264
+ "lift the black bowl lying next to the plate and move it onto the plate",
265
+ "take the black bowl beside the plate and rest it neatly on the plate",
266
+ "pick up the black bowl close to the plate and put it directly on top of it",
267
+ "move the black bowl that\u2019s near the plate onto the plate",
268
+ "lift the black bowl adjacent to the plate and lay it on the plate\u2019s surface",
269
+ "retrieve the black bowl from beside the plate and place it on the plate",
270
+ "grasp the black bowl next to the plate and transfer it carefully onto the plate",
271
+ "take the black bowl positioned near the plate and set it gently on the plate",
272
+ "lift the black bowl beside the plate and move it over onto the plate",
273
+ "grab the black bowl near the plate and place it squarely on the plate",
274
+ "move the black bowl from beside the plate onto the plate itself"
275
+ ],
276
+ "pick up the black bowl on the wooden cabinet and place it on the plate": [
277
+ "pick up the black bowl that\u2019s on the wooden cabinet and set it on the plate",
278
+ "lift the black bowl placed on top of the wooden cabinet and move it to the plate",
279
+ "grab the black bowl resting on the wooden cabinet and put it down on the plate",
280
+ "take the black bowl from the wooden cabinet and place it on the plate",
281
+ "retrieve the black bowl that\u2019s sitting on the cabinet and set it on the plate",
282
+ "move the black bowl located on the wooden cabinet onto the plate",
283
+ "grasp the black bowl sitting atop the wooden cabinet and put it on the plate",
284
+ "lift the black bowl from the wooden cabinet\u2019s surface and place it on the plate",
285
+ "take hold of the black bowl resting on the wooden cabinet and move it to the plate",
286
+ "carefully pick up the black bowl from the cabinet and set it on the plate",
287
+ "grab the black bowl positioned on the wooden cabinet and lay it on the plate",
288
+ "move the black bowl that\u2019s on top of the cabinet onto the plate",
289
+ "retrieve the black bowl sitting over the wooden cabinet and put it on the plate",
290
+ "lift the black bowl from the cabinet and gently place it on the plate",
291
+ "take the black bowl you see on the wooden cabinet and position it on the plate",
292
+ "grasp the black bowl found atop the wooden cabinet and transfer it to the plate",
293
+ "move the black bowl from the wooden cabinet directly to the plate",
294
+ "pick up the black bowl that\u2019s resting on the cabinet and lay it on the plate",
295
+ "carefully lift the black bowl from the wooden cabinet and put it onto the plate",
296
+ "take the black bowl from on top of the wooden cabinet and place it neatly on the plate"
297
+ ],
298
+ "pick up the alphabet soup and place it in the basket": [
299
+ "pick up the can of alphabet soup and put it in the basket",
300
+ "lift the alphabet soup from the table and drop it into the basket",
301
+ "take the alphabet soup and place it inside the basket",
302
+ "grab the alphabet soup and set it carefully in the basket",
303
+ "move the alphabet soup container and put it into the basket",
304
+ "pick up the alphabet soup and gently lay it in the basket",
305
+ "retrieve the alphabet soup and put it down in the basket",
306
+ "take the can of alphabet soup and place it inside the shopping basket",
307
+ "lift the alphabet soup off the surface and set it into the basket",
308
+ "pick up the alphabet soup package and put it in the basket",
309
+ "grab the alphabet soup and neatly place it in the basket",
310
+ "take hold of the alphabet soup can and move it into the basket",
311
+ "carefully lift the alphabet soup and lay it inside the basket",
312
+ "move the alphabet soup from the table to the basket",
313
+ "retrieve the alphabet soup container and put it in the basket\u2019s center",
314
+ "pick up the alphabet soup can and rest it inside the basket",
315
+ "take the alphabet soup and position it in the basket",
316
+ "lift the alphabet soup can from the table and place it in the basket",
317
+ "grab the alphabet soup and gently drop it into the basket",
318
+ "pick up the alphabet soup item and set it securely in the basket"
319
+ ],
320
+ "pick up the cream cheese and place it in the basket": [
321
+ "pick up the cream cheese and put it in the basket",
322
+ "lift the cream cheese container and place it into the basket",
323
+ "take the cream cheese box and set it in the basket",
324
+ "grab the cream cheese package and drop it into the basket",
325
+ "move the cream cheese and put it carefully in the basket",
326
+ "retrieve the cream cheese container and place it in the basket",
327
+ "pick up the cream cheese block and set it inside the basket",
328
+ "lift the cream cheese from the table and lay it in the basket",
329
+ "take hold of the cream cheese and put it into the basket",
330
+ "move the cream cheese package from the counter into the basket",
331
+ "grab the cream cheese box and gently place it in the basket",
332
+ "pick up the cream cheese item and rest it inside the basket",
333
+ "take the cream cheese out of its spot and put it into the basket",
334
+ "carefully lift the cream cheese and place it neatly in the basket",
335
+ "retrieve the cream cheese pack and set it inside the basket",
336
+ "lift the cream cheese and move it to the basket",
337
+ "take the cream cheese package and put it in the basket",
338
+ "grab the cream cheese container and lay it in the basket",
339
+ "pick up the cream cheese and gently drop it in the basket",
340
+ "move the cream cheese to the basket and set it there securely"
341
+ ],
342
+ "pick up the salad dressing and place it in the basket": [
343
+ "pick up the salad dressing and put it in the basket",
344
+ "lift the salad dressing bottle and place it into the basket",
345
+ "grab the salad dressing and drop it into the basket",
346
+ "take the salad dressing from the table and set it in the basket",
347
+ "move the salad dressing bottle to the basket",
348
+ "retrieve the salad dressing container and put it in the basket",
349
+ "pick up the salad dressing and gently lay it in the basket",
350
+ "lift the salad dressing from the surface and place it in the basket",
351
+ "take the salad dressing and position it inside the basket",
352
+ "carefully pick up the salad dressing bottle and put it in the basket",
353
+ "grab the salad dressing item and set it neatly in the basket",
354
+ "move the salad dressing into the basket carefully",
355
+ "pick up the salad dressing from where it\u2019s lying and put it in the basket",
356
+ "lift the salad dressing and rest it in the basket",
357
+ "take hold of the salad dressing bottle and move it into the basket",
358
+ "retrieve the salad dressing container and lay it inside the basket",
359
+ "grab the salad dressing and place it securely in the basket",
360
+ "pick up the salad dressing bottle and drop it gently into the basket",
361
+ "take the salad dressing item and put it in the basket",
362
+ "lift the salad dressing off the table and position it in the basket"
363
+ ],
364
+ "pick up the bbq sauce and place it in the basket": [
365
+ "pick up the BBQ sauce and put it in the basket",
366
+ "lift the barbecue sauce bottle and set it into the basket",
367
+ "grab the BBQ sauce and place it carefully in the basket",
368
+ "take the BBQ sauce container and drop it into the basket",
369
+ "move the barbecue sauce from the counter into the basket",
370
+ "retrieve the BBQ sauce and lay it inside the basket",
371
+ "pick up the BBQ sauce and put it down in the basket",
372
+ "lift the barbecue sauce bottle and place it gently in the basket",
373
+ "take hold of the BBQ sauce and rest it inside the basket",
374
+ "grab the barbecue sauce and set it into the basket",
375
+ "move the BBQ sauce from the table to the basket",
376
+ "lift the BBQ sauce bottle and drop it into the basket",
377
+ "carefully take the barbecue sauce and place it neatly in the basket",
378
+ "retrieve the BBQ sauce container and put it inside the basket",
379
+ "grab the BBQ sauce and move it into the basket",
380
+ "take the BBQ sauce bottle and position it in the basket",
381
+ "pick up the barbecue sauce and set it inside the basket",
382
+ "lift the BBQ sauce and place it securely in the basket",
383
+ "take hold of the BBQ sauce bottle and drop it into the basket",
384
+ "pick up the BBQ sauce container and put it in the basket"
385
+ ],
386
+ "pick up the ketchup and place it in the basket": [
387
+ "pick up the ketchup and put it in the basket",
388
+ "lift the ketchup bottle and place it inside the basket",
389
+ "take the ketchup and drop it into the basket",
390
+ "grab the ketchup from the table and set it in the basket",
391
+ "move the ketchup bottle to the basket",
392
+ "retrieve the ketchup and put it carefully in the basket",
393
+ "pick up the ketchup container and lay it in the basket",
394
+ "lift the ketchup from the surface and place it in the basket",
395
+ "take hold of the ketchup and set it in the basket",
396
+ "grab the ketchup bottle and put it in the basket",
397
+ "carefully lift the ketchup and drop it into the basket",
398
+ "move the ketchup from the table into the basket",
399
+ "retrieve the ketchup container and rest it in the basket",
400
+ "pick up the ketchup and gently place it in the basket",
401
+ "lift the ketchup bottle and put it on the basket\u2019s bottom",
402
+ "take the ketchup item and lay it inside the basket",
403
+ "grab the ketchup and move it into the basket",
404
+ "take the ketchup from the counter and set it in the basket",
405
+ "lift the ketchup bottle and position it in the basket",
406
+ "pick up the ketchup and drop it gently into the basket"
407
+ ],
408
+ "pick up the tomato sauce and place it in the basket": [
409
+ "pick up the tomato sauce and put it in the basket",
410
+ "lift the tomato sauce can and place it into the basket",
411
+ "grab the tomato sauce and set it in the basket",
412
+ "take the tomato sauce and drop it carefully in the basket",
413
+ "move the tomato sauce container to the basket",
414
+ "retrieve the tomato sauce and place it inside the basket",
415
+ "pick up the tomato sauce bottle and lay it in the basket",
416
+ "lift the tomato sauce from the table and set it in the basket",
417
+ "take the tomato sauce item and put it in the basket",
418
+ "grab the tomato sauce and move it to the basket",
419
+ "lift the tomato sauce container and drop it into the basket",
420
+ "carefully pick up the tomato sauce and set it in the basket",
421
+ "take the tomato sauce and position it in the basket",
422
+ "retrieve the tomato sauce and lay it inside the basket",
423
+ "move the tomato sauce bottle into the basket",
424
+ "grab the tomato sauce can and put it in the basket",
425
+ "lift the tomato sauce item and place it gently in the basket",
426
+ "take hold of the tomato sauce and move it to the basket",
427
+ "pick up the tomato sauce and drop it into the basket",
428
+ "lift the tomato sauce container and rest it inside the basket"
429
+ ],
430
+ "pick up the butter and place it in the basket": [
431
+ "pick up the butter and put it in the basket",
432
+ "lift the butter pack and place it inside the basket",
433
+ "grab the butter block and set it in the basket",
434
+ "take the butter and drop it into the basket",
435
+ "move the butter to the basket carefully",
436
+ "retrieve the butter and put it in the basket",
437
+ "pick up the butter packet and lay it in the basket",
438
+ "lift the butter from the table and place it in the basket",
439
+ "take the butter stick and rest it in the basket",
440
+ "grab the butter item and move it into the basket",
441
+ "carefully lift the butter and set it down in the basket",
442
+ "move the butter from the counter to the basket",
443
+ "retrieve the butter pack and put it in the basket",
444
+ "take the butter and place it gently in the basket",
445
+ "lift the butter block and lay it inside the basket",
446
+ "pick up the butter from the surface and set it in the basket",
447
+ "take hold of the butter and put it in the basket",
448
+ "grab the butter and position it in the basket",
449
+ "move the butter into the basket carefully",
450
+ "lift the butter and place it securely in the basket"
451
+ ],
452
+ "pick up the milk and place it in the basket": [
453
+ "pick up the milk and put it in the basket",
454
+ "lift the milk carton and place it inside the basket",
455
+ "take the milk bottle and set it in the basket",
456
+ "grab the milk and drop it into the basket",
457
+ "move the milk container to the basket",
458
+ "retrieve the milk and put it in the basket carefully",
459
+ "pick up the milk carton and lay it in the basket",
460
+ "lift the milk from the table and set it in the basket",
461
+ "take the milk item and position it in the basket",
462
+ "grab the milk and place it gently in the basket",
463
+ "lift the milk carton and put it in the basket",
464
+ "move the milk from the counter into the basket",
465
+ "retrieve the milk and lay it in the basket",
466
+ "carefully pick up the milk and set it down in the basket",
467
+ "take hold of the milk and move it to the basket",
468
+ "pick up the milk bottle and drop it into the basket",
469
+ "lift the milk container and place it neatly in the basket",
470
+ "grab the milk and rest it inside the basket",
471
+ "move the milk into the basket",
472
+ "take the milk carton and gently set it in the basket"
473
+ ],
474
+ "pick up the chocolate pudding and place it in the basket": [
475
+ "pick up the chocolate pudding and put it in the basket",
476
+ "lift the pudding cup and place it inside the basket",
477
+ "grab the chocolate pudding and drop it into the basket",
478
+ "take the pudding container and set it in the basket",
479
+ "move the chocolate pudding into the basket carefully",
480
+ "retrieve the pudding and put it in the basket",
481
+ "pick up the chocolate pudding cup and lay it in the basket",
482
+ "lift the pudding from the table and place it in the basket",
483
+ "take hold of the chocolate pudding and rest it in the basket",
484
+ "grab the pudding container and move it to the basket",
485
+ "carefully lift the chocolate pudding and set it in the basket",
486
+ "move the pudding item into the basket",
487
+ "pick up the chocolate pudding pack and drop it gently into the basket",
488
+ "take the pudding and place it in the basket",
489
+ "lift the pudding from the counter and set it inside the basket",
490
+ "retrieve the chocolate pudding cup and put it in the basket",
491
+ "grab the pudding and position it in the basket",
492
+ "pick up the chocolate pudding and lay it neatly in the basket",
493
+ "take hold of the pudding cup and move it to the basket",
494
+ "lift the chocolate pudding container and set it carefully in the basket"
495
+ ],
496
+ "pick up the orange juice and place it in the basket": [
497
+ "pick up the orange juice and put it in the basket",
498
+ "lift the orange juice carton and place it inside the basket",
499
+ "take the orange juice bottle and set it in the basket",
500
+ "grab the orange juice and drop it into the basket",
501
+ "move the orange juice container to the basket",
502
+ "retrieve the orange juice and put it in the basket",
503
+ "pick up the orange juice and gently place it in the basket",
504
+ "lift the orange juice from the table and set it in the basket",
505
+ "take the orange juice carton and lay it inside the basket",
506
+ "grab the orange juice bottle and position it in the basket",
507
+ "carefully pick up the orange juice and rest it in the basket",
508
+ "move the orange juice into the basket",
509
+ "take the orange juice item and put it on the basket\u2019s base",
510
+ "lift the orange juice container and drop it in the basket",
511
+ "retrieve the orange juice and set it neatly in the basket",
512
+ "grab the orange juice and move it into the basket",
513
+ "pick up the orange juice bottle and place it carefully in the basket",
514
+ "lift the orange juice and put it down in the basket",
515
+ "take the orange juice carton and position it in the basket",
516
+ "move the orange juice into the basket and make sure it\u2019s steady"
517
+ ],
518
+ "open the middle drawer of the cabinet": [
519
+ "open the middle drawer of the cabinet",
520
+ "pull open the cabinet\u2019s middle drawer",
521
+ "slide out the center drawer from the cabinet",
522
+ "open the drawer located in the middle section of the cabinet",
523
+ "gently pull the middle drawer of the cabinet outward",
524
+ "access the cabinet\u2019s middle drawer by opening it",
525
+ "pull open the drawer in the center of the cabinet",
526
+ "open up the cabinet\u2019s central drawer",
527
+ "slide the middle drawer open on the cabinet",
528
+ "carefully open the cabinet\u2019s drawer in the middle",
529
+ "pull the handle and open the cabinet\u2019s middle drawer",
530
+ "move the middle drawer outward to open it",
531
+ "open the cabinet\u2019s central drawer smoothly",
532
+ "gently pull out the cabinet\u2019s drawer that\u2019s in the middle",
533
+ "Unlock and open the middle drawer of the cabinet",
534
+ "slide open the drawer that sits in the cabinet\u2019s middle slot",
535
+ "open up the middle compartment drawer of the cabinet",
536
+ "pull outward to open the middle drawer of the cabinet",
537
+ "carefully slide open the cabinet\u2019s center drawer",
538
+ "open the cabinet drawer located between the top and bottom ones"
539
+ ],
540
+ "put the bowl on the stove": [
541
+ "put the bowl on the stove",
542
+ "place the bowl on top of the stove",
543
+ "set the bowl down on the stove\u2019s surface",
544
+ "move the bowl and position it on the stove",
545
+ "put the bowl gently on the stove",
546
+ "place the bowl carefully onto the stove",
547
+ "lay the bowl on the stove\u2019s top",
548
+ "put the bowl directly on the stove",
549
+ "set the bowl over the stove burner area",
550
+ "move the bowl so that it sits on the stove",
551
+ "carefully place the bowl on the stove\u2019s center",
552
+ "put the bowl onto the stove\u2019s flat surface",
553
+ "rest the bowl on top of the stove",
554
+ "lift the bowl and set it on the stove",
555
+ "position the bowl neatly on the stove",
556
+ "place the bowl right on the stove",
557
+ "move the bowl from where it is to the stove",
558
+ "put the bowl down onto the stove\u2019s surface",
559
+ "lay the bowl on top of the stove gently",
560
+ "set the bowl on the stove and ensure it\u2019s stable"
561
+ ],
562
+ "put the wine bottle on top of the cabinet": [
563
+ "put the wine bottle on top of the cabinet",
564
+ "place the wine bottle on the cabinet\u2019s upper surface",
565
+ "set the wine bottle on top of the cabinet carefully",
566
+ "move the wine bottle and place it atop the cabinet",
567
+ "lift the wine bottle and rest it on top of the cabinet",
568
+ "position the wine bottle on the cabinet\u2019s top area",
569
+ "put the wine bottle onto the upper surface of the cabinet",
570
+ "lay the wine bottle down on top of the cabinet",
571
+ "carefully place the wine bottle on the cabinet\u2019s top",
572
+ "set the wine bottle over the cabinet",
573
+ "put the wine bottle on top of the wooden cabinet",
574
+ "move the wine bottle up and set it on the cabinet\u2019s top side",
575
+ "gently place the wine bottle on the top surface of the cabinet",
576
+ "lift the wine bottle and put it on top of the cabinet",
577
+ "position the wine bottle neatly on the cabinet\u2019s top",
578
+ "place the wine bottle over the cabinet and make sure it\u2019s stable",
579
+ "put the bottle of wine right on top of the cabinet",
580
+ "set the wine bottle atop the cabinet",
581
+ "carefully rest the wine bottle on the cabinet\u2019s uppermost surface",
582
+ "move the wine bottle to the top of the cabinet"
583
+ ],
584
+ "open the top drawer and put the bowl inside": [
585
+ "open the top drawer and put the bowl inside",
586
+ "pull open the upper drawer and place the bowl in it",
587
+ "open the cabinet\u2019s top drawer and set the bowl inside",
588
+ "slide open the top drawer and put the bowl in",
589
+ "open the upper drawer, then place the bowl within it",
590
+ "gently open the top drawer and put the bowl inside",
591
+ "pull open the drawer at the top and set the bowl inside",
592
+ "open the topmost drawer and place the bowl inside it",
593
+ "slide out the top drawer and put the bowl in",
594
+ "open the top drawer completely and set the bowl within",
595
+ "Unlock the top drawer, open it, and put the bowl inside",
596
+ "open up the drawer on the top and put the bowl in",
597
+ "pull open the uppermost drawer and lay the bowl inside",
598
+ "gently slide open the top drawer and drop the bowl in",
599
+ "open the top drawer and carefully place the bowl inside",
600
+ "pull the top drawer open and insert the bowl",
601
+ "slide out the upper drawer and put the bowl inside",
602
+ "open the top compartment drawer and place the bowl in",
603
+ "open the drawer at the top of the cabinet and set the bowl inside",
604
+ "open the top drawer fully and put the bowl inside neatly"
605
+ ],
606
+ "put the bowl on top of the cabinet": [
607
+ "put the bowl on top of the cabinet",
608
+ "place the bowl carefully on the cabinet\u2019s upper surface",
609
+ "set the bowl on top of the cabinet",
610
+ "move the bowl and position it on the cabinet\u2019s top",
611
+ "lift the bowl and place it atop the cabinet",
612
+ "put the bowl directly on the top of the cabinet",
613
+ "lay the bowl on the cabinet\u2019s top surface",
614
+ "carefully rest the bowl on top of the cabinet",
615
+ "place the bowl onto the cabinet\u2019s upper area",
616
+ "set the bowl down on the cabinet\u2019s top",
617
+ "move the bowl to the cabinet and place it on top",
618
+ "lift the bowl and gently lay it on the cabinet",
619
+ "put the bowl over the cabinet\u2019s top",
620
+ "position the bowl neatly on the top surface of the cabinet",
621
+ "place the bowl on the cabinet\u2019s uppermost surface",
622
+ "set the bowl atop the cabinet carefully",
623
+ "move the bowl upward and rest it on the cabinet\u2019s top",
624
+ "put the bowl right on the top of the cabinet",
625
+ "lay the bowl gently on the cabinet\u2019s upper part",
626
+ "place the bowl on top of the cabinet in a stable position"
627
+ ],
628
+ "push the plate to the front of the stove": [
629
+ "push the plate to the front of the stove",
630
+ "move the plate forward until it\u2019s at the stove\u2019s front",
631
+ "slide the plate toward the front of the stove",
632
+ "push the plate closer to the stove\u2019s front edge",
633
+ "gently push the plate to the stove\u2019s front side",
634
+ "move the plate toward the front burner area",
635
+ "push the plate forward to the stove\u2019s edge",
636
+ "slide the plate up to the front part of the stove",
637
+ "shift the plate until it\u2019s positioned at the stove\u2019s front",
638
+ "move the plate forward to the front section of the stove",
639
+ "gently slide the plate toward the stove\u2019s front",
640
+ "push the plate ahead until it reaches the front of the stove",
641
+ "move the plate up to the front burner on the stove",
642
+ "slide the plate forward along the counter to the stove\u2019s front",
643
+ "push the plate gently toward the front burners",
644
+ "Bring the plate forward to the front of the stove",
645
+ "move the plate until it sits at the frontmost position on the stove",
646
+ "carefully push the plate to the stove\u2019s leading edge",
647
+ "slide the plate toward the nearest part of the stove",
648
+ "push the plate so that it ends up at the stove\u2019s front edge"
649
+ ],
650
+ "put the cream cheese in the bowl": [
651
+ "put the cream cheese in the bowl",
652
+ "place the cream cheese inside the bowl",
653
+ "drop the cream cheese into the bowl",
654
+ "set the cream cheese in the bowl",
655
+ "move the cream cheese and put it in the bowl",
656
+ "carefully place the cream cheese in the bowl",
657
+ "put the cream cheese block into the bowl",
658
+ "lift the cream cheese and set it down in the bowl",
659
+ "position the cream cheese inside the bowl\u2019s center",
660
+ "drop the cream cheese gently into the bowl",
661
+ "take the cream cheese and place it within the bowl",
662
+ "put the cream cheese right inside the bowl",
663
+ "lay the cream cheese in the middle of the bowl",
664
+ "place the cream cheese into the bowl carefully",
665
+ "move the cream cheese so that it rests inside the bowl",
666
+ "put the cream cheese in the bowl\u2019s bottom",
667
+ "drop the cream cheese inside the bowl gently",
668
+ "set the cream cheese down in the bowl",
669
+ "carefully position the cream cheese in the bowl",
670
+ "place the cream cheese squarely inside the bowl"
671
+ ],
672
+ "turn on the stove": [
673
+ "turn on the stove",
674
+ "switch on the stove",
675
+ "activate the stove",
676
+ "power on the stove",
677
+ "turn the stove knob to start it",
678
+ "switch the stove to the on position",
679
+ "turn the control to turn on the stove",
680
+ "turn the burner knob to ignite the stove",
681
+ "start the stove by turning it on",
682
+ "engage the stove\u2019s power by switching it on",
683
+ "turn the stove to the \u201con\u201d setting",
684
+ "light the stove by turning it on",
685
+ "rotate the stove knob to the on side",
686
+ "turn on the burner on the stove",
687
+ "activate the stove by twisting the knob",
688
+ "power the stove on by adjusting its control",
689
+ "switch the stove from off to on",
690
+ "turn the stove control to start heating",
691
+ "turn the stove knob clockwise to ignite",
692
+ "simply turn on the stove to activate it"
693
+ ],
694
+ "put the bowl on the plate": [
695
+ "put the bowl on the plate",
696
+ "place the bowl on top of the plate",
697
+ "set the bowl down on the plate",
698
+ "move the bowl and put it on the plate",
699
+ "carefully place the bowl on the plate",
700
+ "lay the bowl on the plate\u2019s surface",
701
+ "put the bowl directly on the plate",
702
+ "set the bowl on top of the plate gently",
703
+ "position the bowl on the plate",
704
+ "move the bowl to the plate and place it there",
705
+ "rest the bowl on the plate",
706
+ "lift the bowl and put it on top of the plate",
707
+ "put the bowl down on the plate in front of you",
708
+ "place the bowl carefully on the center of the plate",
709
+ "move the bowl to sit neatly on the plate",
710
+ "set the bowl on the plate so it\u2019s stable",
711
+ "put the bowl right on the plate\u2019s middle",
712
+ "lay the bowl on the plate carefully",
713
+ "lift the bowl and place it on the plate surface",
714
+ "gently put the bowl down on top of the plate"
715
+ ],
716
+ "put the wine bottle on the rack": [
717
+ "put the wine bottle on the rack",
718
+ "place the wine bottle on the wine rack",
719
+ "set the wine bottle onto the rack",
720
+ "move the wine bottle and position it on the rack",
721
+ "carefully lay the wine bottle on the rack",
722
+ "put the bottle of wine in the rack",
723
+ "place the wine bottle neatly on the rack\u2019s holder",
724
+ "set the wine bottle into its rack slot",
725
+ "position the wine bottle securely on the rack",
726
+ "move the wine bottle from the table to the rack",
727
+ "lift the wine bottle and place it on the rack",
728
+ "put the wine bottle down on the rack gently",
729
+ "carefully place the wine bottle on the wine rack\u2019s shelf",
730
+ "lay the wine bottle horizontally on the rack",
731
+ "Insert the wine bottle into the rack\u2019s groove",
732
+ "move the wine bottle so it rests on the rack",
733
+ "set the bottle of wine in its proper rack position",
734
+ "put the wine bottle into one of the rack slots",
735
+ "place the wine bottle over the rack\u2019s support rails",
736
+ "securely place the wine bottle on the rack for storage"
737
+ ],
738
+ "put both the alphabet soup and the tomato sauce in the basket": [
739
+ "put both the alphabet soup and the tomato sauce in the basket",
740
+ "place the alphabet soup and tomato sauce together in the basket",
741
+ "put the can of alphabet soup and the jar of tomato sauce into the basket",
742
+ "take both the alphabet soup and tomato sauce and drop them into the basket",
743
+ "move the alphabet soup and tomato sauce into the basket side by side",
744
+ "place both the alphabet soup and tomato sauce neatly in the basket",
745
+ "put the alphabet soup along with the tomato sauce into the basket",
746
+ "pick up the alphabet soup and the tomato sauce, then set them in the basket",
747
+ "lift the two items \u2014 alphabet soup and tomato sauce \u2014 and place them inside the basket",
748
+ "put both the alphabet soup and tomato sauce cans into the basket carefully",
749
+ "transfer the alphabet soup and tomato sauce to the basket together",
750
+ "take the alphabet soup and tomato sauce and rest them inside the basket",
751
+ "move both food items, the alphabet soup and tomato sauce, into the basket",
752
+ "place both cans \u2014 alphabet soup and tomato sauce \u2014 neatly inside the basket",
753
+ "put the alphabet soup and tomato sauce together on the basket\u2019s bottom",
754
+ "gently place the alphabet soup beside the tomato sauce in the basket",
755
+ "pick up both the alphabet soup and tomato sauce and put them in the basket",
756
+ "place the alphabet soup and the tomato sauce side by side in the basket",
757
+ "move the alphabet soup and tomato sauce containers into the basket carefully",
758
+ "set both the alphabet soup and tomato sauce in the basket for storage"
759
+ ],
760
+ "put both the cream cheese box and the butter in the basket": [
761
+ "put both the cream cheese box and the butter in the basket",
762
+ "place the cream cheese and the butter together in the basket",
763
+ "move the cream cheese box and butter into the basket",
764
+ "take both the cream cheese box and the butter and put them in the basket",
765
+ "place the butter and cream cheese side by side in the basket",
766
+ "put the cream cheese along with the butter into the basket",
767
+ "lift the cream cheese box and butter, and set them together in the basket",
768
+ "transfer both the butter and cream cheese into the basket",
769
+ "gently place the butter and cream cheese box in the basket",
770
+ "pick up the cream cheese and the butter and drop them in the basket",
771
+ "move the two items \u2014 cream cheese and butter \u2014 into the basket",
772
+ "put the cream cheese box beside the butter inside the basket",
773
+ "lay both the cream cheese and butter in the basket neatly",
774
+ "carefully place the cream cheese and the butter together in the basket",
775
+ "pick up both the cream cheese box and the butter and rest them in the basket",
776
+ "put the cream cheese and butter into the basket at the same time",
777
+ "lift the cream cheese box and butter and place them in the basket",
778
+ "place the cream cheese next to the butter in the basket",
779
+ "move the cream cheese and butter items to the basket",
780
+ "set both the cream cheese and butter inside the basket side by side"
781
+ ],
782
+ "turn on the stove and put the moka pot on it": [
783
+ "turn on the stove and put the moka pot on it",
784
+ "switch on the stove, then place the moka pot on top",
785
+ "turn the stove on and set the moka pot over it",
786
+ "activate the stove, then put the moka pot on the burner",
787
+ "turn the stove knob and place the moka pot on the heating area",
788
+ "power on the stove and rest the moka pot on it",
789
+ "turn on the burner and position the moka pot on the stove",
790
+ "start the stove and place the moka pot on top",
791
+ "turn on the stove, then gently set the moka pot on the surface",
792
+ "switch the stove on and move the moka pot onto it",
793
+ "turn on the stove before placing the moka pot there",
794
+ "turn the burner on and put the moka pot above it",
795
+ "power on the stove and place the moka pot in the center",
796
+ "turn on the stove, then lay the moka pot over it carefully",
797
+ "activate the stove, then move the moka pot to the burner area",
798
+ "turn the stove on fully and set the moka pot on top",
799
+ "switch on the stove and carefully position the moka pot",
800
+ "turn the burner knob, then place the moka pot on the stove\u2019s surface",
801
+ "turn the stove on to heat, then put the moka pot there",
802
+ "start the stove and gently place the moka pot on top of it"
803
+ ],
804
+ "put the black bowl in the bottom drawer of the cabinet and close it": [
805
+ "put the black bowl in the bottom drawer of the cabinet and close it",
806
+ "place the black bowl inside the cabinet\u2019s lower drawer, then shut it",
807
+ "open the bottom drawer, put in the black bowl, and close it afterward",
808
+ "move the black bowl into the cabinet\u2019s bottom drawer and close the drawer",
809
+ "put the black bowl into the lowest drawer of the cabinet, then close it",
810
+ "carefully place the black bowl in the cabinet\u2019s bottom drawer and shut it",
811
+ "Insert the black bowl into the cabinet\u2019s bottom drawer and close it",
812
+ "put the black bowl in the lower drawer of the cabinet, then push it closed",
813
+ "set the black bowl inside the bottom drawer, then close the drawer completely",
814
+ "place the black bowl in the cabinet\u2019s bottom drawer and slide it shut",
815
+ "open the cabinet\u2019s lowest drawer, put the bowl inside, and close it",
816
+ "put the black bowl in the bottom drawer, then close the cabinet drawer",
817
+ "gently set the black bowl into the cabinet\u2019s lower drawer and close it",
818
+ "move the black bowl into the bottom drawer and close it securely",
819
+ "place the black bowl into the cabinet\u2019s lowest drawer, then push it closed",
820
+ "Insert the black bowl in the cabinet\u2019s bottom drawer and shut it gently",
821
+ "open the cabinet drawer, put the bowl inside, and close it back",
822
+ "slide the black bowl into the bottom drawer and close the cabinet",
823
+ "put the black bowl in the lower compartment of the cabinet and close it",
824
+ "set the black bowl in the bottom drawer and push the drawer shut"
825
+ ],
826
+ "put the white mug on the left plate and put the yellow and white mug on the right plate": [
827
+ "put the white mug on the left plate and the yellow-and-white mug on the right plate",
828
+ "place the white mug on the left plate, then set the yellow-and-white mug on the right one",
829
+ "position the white mug on the plate to the left, and the yellow-and-white mug on the plate to the right",
830
+ "put the white mug on the left-hand plate, and the yellow-and-white one on the right-hand plate",
831
+ "move the white mug to the left plate and the yellow-and-white mug to the right",
832
+ "set the white mug on the left plate while placing the yellow-and-white mug on the right",
833
+ "put the white mug down on the left plate, and the yellow-and-white one on the right",
834
+ "place both mugs \u2014 white on the left plate and yellow-and-white on the right plate",
835
+ "put the white mug on the left plate and the yellow-and-white one on the right side",
836
+ "set the white mug to the left plate, the yellow-and-white one to the right",
837
+ "carefully place the white mug on the plate on the left and the yellow-and-white mug on the right",
838
+ "arrange the mugs: white on the left plate, yellow-and-white on the right",
839
+ "move the white mug to the left-hand plate and the yellow-and-white to the right-hand plate",
840
+ "put the white mug on the left plate, and right after, place the yellow-and-white mug on the right plate",
841
+ "set the mugs on their respective plates \u2014 white left, yellow-and-white right",
842
+ "position the white mug on the left and the yellow-and-white mug on the right plate",
843
+ "place the mugs correctly: the white mug goes on the left plate, the yellow-and-white mug on the right",
844
+ "move the white mug to rest on the left plate, then put the yellow-and-white mug on the right",
845
+ "put down the white mug on the left plate, and the yellow-and-white mug on the right-hand one",
846
+ "set the white mug on the left plate and neatly place the yellow-and-white mug on the right plate"
847
+ ],
848
+ "pick up the book and place it in the back compartment of the caddy": [
849
+ "pick up the book and place it in the back compartment of the caddy",
850
+ "lift the book and put it in the caddy\u2019s rear compartment",
851
+ "take the book and move it to the back section of the caddy",
852
+ "pick up the book and set it inside the caddy\u2019s back compartment",
853
+ "grab the book and place it neatly in the caddy\u2019s rear compartment",
854
+ "move the book and put it in the back part of the caddy",
855
+ "lift the book from the table and drop it into the caddy\u2019s back compartment",
856
+ "take hold of the book and position it in the back area of the caddy",
857
+ "carefully pick up the book and place it into the back compartment of the caddy",
858
+ "move the book from its spot and put it into the caddy\u2019s back section",
859
+ "take the book and gently place it in the back compartment of the caddy",
860
+ "grab the book and slide it into the caddy\u2019s rear compartment",
861
+ "lift the book up and set it inside the back compartment of the caddy",
862
+ "pick up the book from the surface and rest it in the back compartment of the caddy",
863
+ "move the book to the caddy and put it in the back slot",
864
+ "take the book and lay it in the back compartment of the caddy",
865
+ "lift the book and carefully place it in the caddy\u2019s back area",
866
+ "grab the book and position it at the back section of the caddy",
867
+ "move the book over to the caddy and put it into the back compartment",
868
+ "place the book securely in the back compartment of the caddy after picking it up"
869
+ ],
870
+ "put the white mug on the plate and put the chocolate pudding to the right of the plate": [
871
+ "put the white mug on the plate and place the chocolate pudding to the right of the plate",
872
+ "set the white mug on top of the plate, then put the chocolate pudding to its right",
873
+ "place the white mug on the plate and position the pudding on the plate\u2019s right side",
874
+ "put the mug on the plate and move the chocolate pudding beside it on the right",
875
+ "lay the white mug on the plate, and set the chocolate pudding on the right-hand side",
876
+ "position the white mug directly on the plate, then place the chocolate pudding to its right",
877
+ "place the mug on top of the plate and put the pudding to the plate\u2019s right",
878
+ "put the white mug on the plate, then move the chocolate pudding next to it on the right",
879
+ "set the mug over the plate and the pudding to the right-hand side of the plate",
880
+ "place the mug on the plate and move the chocolate pudding to the right side",
881
+ "put the white mug on top of the plate, and place the pudding right next to it on the right",
882
+ "carefully place the mug on the plate and the pudding to its right",
883
+ "move the mug to sit on the plate and the chocolate pudding to the right of it",
884
+ "set the white mug in the center of the plate, and the pudding to the right side",
885
+ "put the mug on the plate and place the pudding on the right-hand edge",
886
+ "place the white mug squarely on the plate, and put the pudding on the right side",
887
+ "position the white mug on the plate, and then place the chocolate pudding beside it on the right",
888
+ "lay the mug on the plate and the chocolate pudding to the right of that plate",
889
+ "put the white mug over the plate and the pudding just to the right of it",
890
+ "place the white mug on the plate, followed by setting the chocolate pudding to its right"
891
+ ],
892
+ "put both the alphabet soup and the cream cheese box in the basket": [
893
+ "put both the alphabet soup and the cream cheese box in the basket",
894
+ "place the alphabet soup and cream cheese together in the basket",
895
+ "move the cream cheese box and alphabet soup into the basket",
896
+ "pick up both items \u2014 the alphabet soup and the cream cheese \u2014 and put them in the basket",
897
+ "put the alphabet soup and the cream cheese box inside the basket",
898
+ "place the cream cheese and alphabet soup side by side in the basket",
899
+ "take the alphabet soup and cream cheese box and set them into the basket",
900
+ "lift both the alphabet soup and cream cheese and put them in the basket",
901
+ "move the alphabet soup along with the cream cheese into the basket",
902
+ "put the cream cheese box next to the alphabet soup inside the basket",
903
+ "transfer both the alphabet soup and cream cheese box to the basket",
904
+ "carefully place the alphabet soup and cream cheese into the basket",
905
+ "pick up both food items \u2014 alphabet soup and cream cheese \u2014 and drop them in the basket",
906
+ "move the cream cheese and alphabet soup from the counter into the basket",
907
+ "place the alphabet soup and cream cheese box neatly inside the basket",
908
+ "put the alphabet soup together with the cream cheese into the basket",
909
+ "lift the alphabet soup and cream cheese box and lay them inside the basket",
910
+ "place the two items, cream cheese and alphabet soup, into the basket",
911
+ "move both the alphabet soup and cream cheese into the basket carefully",
912
+ "set the alphabet soup and cream cheese in the basket next to each other"
913
+ ],
914
+ "put both moka pots on the stove": [
915
+ "put both moka pots on the stove",
916
+ "place the two moka pots on top of the stove",
917
+ "set both moka pots down on the stove\u2019s surface",
918
+ "move the moka pots and position them on the stove",
919
+ "put each moka pot on the stove side by side",
920
+ "place the pair of moka pots on top of the stove",
921
+ "lift both moka pots and set them on the stove",
922
+ "position the moka pots next to each other on the stove",
923
+ "put the two moka pots on the stove burners",
924
+ "carefully place both moka pots onto the stove",
925
+ "move the moka pots from the counter and place them on the stove",
926
+ "put the moka pots on top of the stove in parallel",
927
+ "set both moka pots over the stove burners",
928
+ "place the moka pots together on the stove\u2019s surface",
929
+ "lift both moka pots and gently position them on the stove",
930
+ "put the moka pots side by side on the stove top",
931
+ "place both moka pots securely on the stove\u2019s heating area",
932
+ "move each moka pot to the stove and set them on top",
933
+ "set the pair of moka pots neatly on the stove burners",
934
+ "put both moka pots on the stove so they\u2019re evenly spaced"
935
+ ],
936
+ "put the yellow and white mug in the microwave and close it": [
937
+ "put the yellow-and-white mug in the microwave and close it",
938
+ "place the yellow-and-white mug inside the microwave, then shut the door",
939
+ "open the microwave, insert the yellow-and-white mug, and close it",
940
+ "put the mug with yellow and white colors in the microwave and close the door",
941
+ "move the yellow-and-white mug into the microwave and shut it afterward",
942
+ "carefully place the yellow-and-white mug in the microwave, then close the door",
943
+ "Insert the yellow-and-white mug inside the microwave and close it",
944
+ "place the yellow-and-white mug into the microwave and push the door closed",
945
+ "put the mug in the microwave and close its door",
946
+ "slide the yellow-and-white mug into the microwave and close it gently",
947
+ "open the microwave, put in the yellow-and-white mug, and close the door afterward",
948
+ "place the mug with yellow and white stripes inside the microwave and shut it",
949
+ "move the yellow-and-white mug into the microwave chamber and close the door",
950
+ "put the yellow-and-white mug inside the microwave oven, then close it",
951
+ "Insert the yellow-and-white mug and close the microwave door behind it",
952
+ "place the yellow-and-white mug within the microwave compartment and shut it",
953
+ "put the yellow-and-white mug inside, then gently close the microwave door",
954
+ "carefully move the yellow-and-white mug into the microwave and close it securely",
955
+ "put the yellow-and-white mug in the microwave cavity and close the lid",
956
+ "open the microwave, add the yellow-and-white mug, and close it properly"
957
+ ]
958
+ }
959
+ },
960
+ "revision": null,
961
+ "use_imagenet_stats": true,
962
+ "video_backend": "torchcodec",
963
+ "only_robot_type": "so100",
964
+ "exclude_tasks": null,
965
+ "report_task_stats": true
966
+ },
967
+ "env": null,
968
+ "policy": {
969
+ "type": "smolvla",
970
+ "n_obs_steps": 1,
971
+ "normalization_mapping": {
972
+ "VISUAL": "IDENTITY",
973
+ "STATE": "MEAN_STD",
974
+ "ACTION": "MEAN_STD"
975
+ },
976
+ "input_features": {
977
+ "observation.images.wrist_image": {
978
+ "type": "VISUAL",
979
+ "shape": [
980
+ 256,
981
+ 256,
982
+ 3
983
+ ]
984
+ },
985
+ "observation.images.image": {
986
+ "type": "VISUAL",
987
+ "shape": [
988
+ 256,
989
+ 256,
990
+ 3
991
+ ]
992
+ },
993
+ "observation.state": {
994
+ "type": "STATE",
995
+ "shape": [
996
+ 8
997
+ ]
998
+ }
999
+ },
1000
+ "output_features": {
1001
+ "action": {
1002
+ "type": "ACTION",
1003
+ "shape": [
1004
+ 7
1005
+ ]
1006
+ }
1007
+ },
1008
+ "device": "cuda",
1009
+ "use_amp": false,
1010
+ "use_peft": false,
1011
+ "push_to_hub": true,
1012
+ "repo_id": "combined_frozen_chunk8_yesproprio_diversified_text_prompt_1010",
1013
+ "private": null,
1014
+ "tags": null,
1015
+ "license": null,
1016
+ "use_proprio": true,
1017
+ "chunk_size": 8,
1018
+ "n_action_steps": 8,
1019
+ "normalize_visual": "identity",
1020
+ "normalize_state": "mean_std",
1021
+ "normalize_action": "mean_std",
1022
+ "max_state_dim": 32,
1023
+ "max_action_dim": 32,
1024
+ "resize_imgs_with_padding": [
1025
+ 512,
1026
+ 512
1027
+ ],
1028
+ "empty_cameras": 0,
1029
+ "adapt_to_pi_aloha": false,
1030
+ "use_delta_joint_actions_aloha": false,
1031
+ "tokenizer_max_length": 48,
1032
+ "num_steps": 10,
1033
+ "use_cache": true,
1034
+ "freeze_vision_encoder": true,
1035
+ "train_expert_only": true,
1036
+ "train_state_proj": true,
1037
+ "optimizer_lr": 0.0001,
1038
+ "optimizer_betas": [
1039
+ 0.9,
1040
+ 0.95
1041
+ ],
1042
+ "optimizer_eps": 1e-08,
1043
+ "optimizer_weight_decay": 1e-10,
1044
+ "optimizer_grad_clip_norm": 10,
1045
+ "scheduler_warmup_steps": 1000,
1046
+ "scheduler_decay_steps": 30000,
1047
+ "scheduler_decay_lr": 2.5e-06,
1048
+ "vlm_model_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct",
1049
+ "load_vlm_weights": true,
1050
+ "vlm_model_dtype": "bfloat16",
1051
+ "add_image_special_tokens": false,
1052
+ "attention_mode": "cross_attn",
1053
+ "prefix_length": -1,
1054
+ "pad_language_to": "longest",
1055
+ "num_expert_layers": -1,
1056
+ "num_vlm_layers": 16,
1057
+ "self_attn_every_n_layers": 2,
1058
+ "expert_width_multiplier": 0.75,
1059
+ "min_period": 0.004,
1060
+ "max_period": 4.0
1061
+ },
1062
+ "output_dir": "outputs/combined_frozen_diversified_text_prompt_1010/combined_frozen_chunk8_yesproprio_diversified_text_prompt_1010/2025-10-11/19-41-37",
1063
+ "exp_name": "combined_frozen_chunk8_yesproprio_diversified_text_prompt_1010/2025-10-11/19-41-37",
1064
+ "group_name": "combined_frozen_diversified_text_prompt_1010",
1065
+ "resume": false,
1066
+ "seed": 1000,
1067
+ "num_workers": 8,
1068
+ "batch_size": 64,
1069
+ "update_steps": 50000,
1070
+ "eval_freq": 20000,
1071
+ "log_freq": 200,
1072
+ "save_checkpoint": true,
1073
+ "save_freq": 10000,
1074
+ "use_policy_training_preset": true,
1075
+ "optimizer": {
1076
+ "type": "adamw",
1077
+ "lr": 0.0001,
1078
+ "weight_decay": 1e-10,
1079
+ "grad_clip_norm": 10,
1080
+ "betas": [
1081
+ 0.9,
1082
+ 0.95
1083
+ ],
1084
+ "eps": 1e-08
1085
+ },
1086
+ "scheduler": {
1087
+ "type": "cosine_decay_with_warmup",
1088
+ "num_warmup_steps": 1000,
1089
+ "num_decay_steps": 30000,
1090
+ "peak_lr": 0.0001,
1091
+ "decay_lr": 2.5e-06
1092
+ },
1093
+ "eval": {
1094
+ "n_episodes": 50,
1095
+ "batch_size": 50,
1096
+ "use_async_envs": false
1097
+ },
1098
+ "log_with": "wandb",
1099
+ "wandb": {
1100
+ "enable": false,
1101
+ "disable_artifact": false,
1102
+ "project": "lerobot",
1103
+ "entity": null,
1104
+ "notes": null,
1105
+ "run_id": "yat4sw2o",
1106
+ "mode": null
1107
+ },
1108
+ "gradient_accumulation_steps": 1,
1109
+ "use_peft": false,
1110
+ "autocast_adapter_dtype": true,
1111
+ "peft": {
1112
+ "target_modules": null,
1113
+ "modules_to_save": null,
1114
+ "method_type": "LORA",
1115
+ "init_type": null,
1116
+ "r": 64,
1117
+ "lora_alpha": 128,
1118
+ "fullfinetune_vlm_patch_embeddings": false,
1119
+ "fullfinetune_vlm_vision_model": false
1120
+ }
1121
+ }