AriRyo commited on
Commit
762adcc
·
verified ·
1 Parent(s): ae61ca0

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +62 -0
  2. config.json +222 -0
  3. model.safetensors +3 -0
  4. train_config.json +390 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets: AriRyo/blockpick_gray_03
3
+ library_name: lerobot
4
+ license: apache-2.0
5
+ model_name: xvla
6
+ pipeline_tag: robotics
7
+ tags:
8
+ - xvla
9
+ - robotics
10
+ - lerobot
11
+ ---
12
+
13
+ # Model Card for xvla
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+ _Model type not recognized — please update this template._
19
+
20
+
21
+ This policy has been trained and pushed to the Hub using [LeRobot](https://github.com/huggingface/lerobot).
22
+ See the full documentation at [LeRobot Docs](https://huggingface.co/docs/lerobot/index).
23
+
24
+ ---
25
+
26
+ ## How to Get Started with the Model
27
+
28
+ For a complete walkthrough, see the [training guide](https://huggingface.co/docs/lerobot/il_robots#train-a-policy).
29
+ Below is the short version on how to train and run inference/eval:
30
+
31
+ ### Train from scratch
32
+
33
+ ```bash
34
+ lerobot-train \
35
+ --dataset.repo_id=${HF_USER}/<dataset> \
36
+ --policy.type=act \
37
+ --output_dir=outputs/train/<desired_policy_repo_id> \
38
+ --job_name=lerobot_training \
39
+ --policy.device=cuda \
40
+ --policy.repo_id=${HF_USER}/<desired_policy_repo_id>
41
+ --wandb.enable=true
42
+ ```
43
+
44
+ _Writes checkpoints to `outputs/train/<desired_policy_repo_id>/checkpoints/`._
45
+
46
+ ### Evaluate the policy/run inference
47
+
48
+ ```bash
49
+ lerobot-record \
50
+ --robot.type=so100_follower \
51
+ --dataset.repo_id=<hf_user>/eval_<dataset> \
52
+ --policy.path=<hf_user>/<desired_policy_repo_id> \
53
+ --episodes=10
54
+ ```
55
+
56
+ Prefix the dataset repo with **eval\_** and supply `--policy.path` pointing to a local or hub checkpoint.
57
+
58
+ ---
59
+
60
+ ## Model Details
61
+
62
+ - **License:** apache-2.0
config.json ADDED
@@ -0,0 +1,222 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "xvla",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.images.image": {
6
+ "type": "VISUAL",
7
+ "shape": [
8
+ 3,
9
+ 256,
10
+ 256
11
+ ]
12
+ },
13
+ "observation.images.image2": {
14
+ "type": "VISUAL",
15
+ "shape": [
16
+ 3,
17
+ 256,
18
+ 256
19
+ ]
20
+ },
21
+ "observation.state": {
22
+ "type": "STATE",
23
+ "shape": [
24
+ 8
25
+ ]
26
+ },
27
+ "observation.images.image3": {
28
+ "type": "VISUAL",
29
+ "shape": [
30
+ 3,
31
+ 224,
32
+ 224
33
+ ]
34
+ }
35
+ },
36
+ "output_features": {
37
+ "action": {
38
+ "type": "ACTION",
39
+ "shape": [
40
+ 6
41
+ ]
42
+ }
43
+ },
44
+ "device": "cuda",
45
+ "use_amp": false,
46
+ "use_peft": false,
47
+ "push_to_hub": true,
48
+ "repo_id": "AriRyo/blockpick_gray_xvla_24",
49
+ "private": null,
50
+ "tags": null,
51
+ "license": null,
52
+ "pretrained_path": "lerobot/xvla-base",
53
+ "chunk_size": 30,
54
+ "n_action_steps": 30,
55
+ "dtype": "bfloat16",
56
+ "normalization_mapping": {
57
+ "STATE": "IDENTITY",
58
+ "ACTION": "MEAN_STD",
59
+ "VISUAL": "IDENTITY"
60
+ },
61
+ "florence_config": {
62
+ "model_type": "florence2",
63
+ "bos_token_id": 0,
64
+ "eos_token_id": 2,
65
+ "ignore_index": -100,
66
+ "pad_token_id": 1,
67
+ "projection_dim": 1024,
68
+ "text_config": {
69
+ "vocab_size": 51289,
70
+ "activation_dropout": 0.1,
71
+ "activation_function": "gelu",
72
+ "add_bias_logits": false,
73
+ "add_final_layer_norm": false,
74
+ "attention_dropout": 0.1,
75
+ "bos_token_id": 0,
76
+ "classif_dropout": 0.1,
77
+ "classifier_dropout": 0.0,
78
+ "d_model": 1024,
79
+ "decoder_attention_heads": 16,
80
+ "decoder_ffn_dim": 4096,
81
+ "decoder_layerdrop": 0.0,
82
+ "decoder_layers": 12,
83
+ "decoder_start_token_id": 2,
84
+ "dropout": 0.1,
85
+ "early_stopping": true,
86
+ "encoder_attention_heads": 16,
87
+ "encoder_ffn_dim": 4096,
88
+ "encoder_layerdrop": 0.0,
89
+ "encoder_layers": 12,
90
+ "eos_token_id": 2,
91
+ "forced_eos_token_id": 2,
92
+ "forced_bos_token_id": 0,
93
+ "gradient_checkpointing": false,
94
+ "init_std": 0.02,
95
+ "is_encoder_decoder": true,
96
+ "label2id": {
97
+ "LABEL_0": 0,
98
+ "LABEL_1": 1,
99
+ "LABEL_2": 2
100
+ },
101
+ "max_position_embeddings": 4096,
102
+ "no_repeat_ngram_size": 3,
103
+ "normalize_before": false,
104
+ "num_hidden_layers": 12,
105
+ "pad_token_id": 1,
106
+ "scale_embedding": false,
107
+ "num_beams": 3
108
+ },
109
+ "vision_config": {
110
+ "model_type": "davit",
111
+ "drop_path_rate": 0.1,
112
+ "patch_size": [
113
+ 7,
114
+ 3,
115
+ 3,
116
+ 3
117
+ ],
118
+ "patch_stride": [
119
+ 4,
120
+ 2,
121
+ 2,
122
+ 2
123
+ ],
124
+ "patch_padding": [
125
+ 3,
126
+ 1,
127
+ 1,
128
+ 1
129
+ ],
130
+ "patch_prenorm": [
131
+ false,
132
+ true,
133
+ true,
134
+ true
135
+ ],
136
+ "enable_checkpoint": false,
137
+ "dim_embed": [
138
+ 256,
139
+ 512,
140
+ 1024,
141
+ 2048
142
+ ],
143
+ "num_heads": [
144
+ 8,
145
+ 16,
146
+ 32,
147
+ 64
148
+ ],
149
+ "num_groups": [
150
+ 8,
151
+ 16,
152
+ 32,
153
+ 64
154
+ ],
155
+ "depths": [
156
+ 1,
157
+ 1,
158
+ 9,
159
+ 1
160
+ ],
161
+ "window_size": 12,
162
+ "projection_dim": 1024,
163
+ "visual_temporal_embedding": {
164
+ "type": "COSINE",
165
+ "max_temporal_embeddings": 100
166
+ },
167
+ "image_pos_embed": {
168
+ "type": "learned_abs_2d",
169
+ "max_pos_embeddings": 50
170
+ },
171
+ "image_feature_source": [
172
+ "spatial_avg_pool",
173
+ "temporal_avg_pool"
174
+ ]
175
+ },
176
+ "vocab_size": 51289,
177
+ "torch_dtype": "float32",
178
+ "is_encoder_decoder": true
179
+ },
180
+ "tokenizer_name": "facebook/bart-large",
181
+ "tokenizer_max_length": 1024,
182
+ "tokenizer_padding_side": "right",
183
+ "pad_language_to": "max_length",
184
+ "hidden_size": 1024,
185
+ "depth": 24,
186
+ "num_heads": 16,
187
+ "mlp_ratio": 4.0,
188
+ "num_domains": 30,
189
+ "len_soft_prompts": 32,
190
+ "dim_time": 32,
191
+ "max_len_seq": 512,
192
+ "use_hetero_proj": false,
193
+ "action_mode": "auto",
194
+ "num_denoising_steps": 10,
195
+ "use_proprio": true,
196
+ "max_state_dim": 20,
197
+ "max_action_dim": 20,
198
+ "domain_feature_key": null,
199
+ "resize_imgs_with_padding": [
200
+ 224,
201
+ 224
202
+ ],
203
+ "num_image_views": 3,
204
+ "empty_cameras": 0,
205
+ "freeze_vision_encoder": false,
206
+ "freeze_language_encoder": false,
207
+ "train_policy_transformer": true,
208
+ "train_soft_prompts": true,
209
+ "optimizer_lr": 0.0001,
210
+ "optimizer_betas": [
211
+ 0.9,
212
+ 0.95
213
+ ],
214
+ "optimizer_eps": 1e-08,
215
+ "optimizer_weight_decay": 0.0001,
216
+ "optimizer_grad_clip_norm": 10.0,
217
+ "optimizer_soft_prompt_lr_scale": 1.0,
218
+ "optimizer_soft_prompt_warmup_lr_scale": null,
219
+ "scheduler_warmup_steps": 1000,
220
+ "scheduler_decay_steps": 30000,
221
+ "scheduler_decay_lr": 2.5e-06
222
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35be90ce16260977055a9cbfe7153b493da49579c0c5fc7c2244d07b54fb72a0
3
+ size 1759596986
train_config.json ADDED
@@ -0,0 +1,390 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "AriRyo/blockpick_gray_03",
4
+ "root": null,
5
+ "episodes": [
6
+ 0,
7
+ 1,
8
+ 2,
9
+ 3,
10
+ 4,
11
+ 5,
12
+ 6,
13
+ 7,
14
+ 8,
15
+ 9,
16
+ 10,
17
+ 11,
18
+ 12,
19
+ 13,
20
+ 14,
21
+ 15,
22
+ 16,
23
+ 17,
24
+ 18,
25
+ 19,
26
+ 20,
27
+ 21,
28
+ 22,
29
+ 23
30
+ ],
31
+ "image_transforms": {
32
+ "enable": false,
33
+ "max_num_transforms": 3,
34
+ "random_order": false,
35
+ "tfs": {
36
+ "brightness": {
37
+ "weight": 1.0,
38
+ "type": "ColorJitter",
39
+ "kwargs": {
40
+ "brightness": [
41
+ 0.8,
42
+ 1.2
43
+ ]
44
+ }
45
+ },
46
+ "contrast": {
47
+ "weight": 1.0,
48
+ "type": "ColorJitter",
49
+ "kwargs": {
50
+ "contrast": [
51
+ 0.8,
52
+ 1.2
53
+ ]
54
+ }
55
+ },
56
+ "saturation": {
57
+ "weight": 1.0,
58
+ "type": "ColorJitter",
59
+ "kwargs": {
60
+ "saturation": [
61
+ 0.5,
62
+ 1.5
63
+ ]
64
+ }
65
+ },
66
+ "hue": {
67
+ "weight": 1.0,
68
+ "type": "ColorJitter",
69
+ "kwargs": {
70
+ "hue": [
71
+ -0.05,
72
+ 0.05
73
+ ]
74
+ }
75
+ },
76
+ "sharpness": {
77
+ "weight": 1.0,
78
+ "type": "SharpnessJitter",
79
+ "kwargs": {
80
+ "sharpness": [
81
+ 0.5,
82
+ 1.5
83
+ ]
84
+ }
85
+ },
86
+ "affine": {
87
+ "weight": 1.0,
88
+ "type": "RandomAffine",
89
+ "kwargs": {
90
+ "degrees": [
91
+ -5.0,
92
+ 5.0
93
+ ],
94
+ "translate": [
95
+ 0.05,
96
+ 0.05
97
+ ]
98
+ }
99
+ }
100
+ }
101
+ },
102
+ "revision": null,
103
+ "use_imagenet_stats": true,
104
+ "video_backend": "torchcodec",
105
+ "streaming": false
106
+ },
107
+ "env": null,
108
+ "policy": {
109
+ "type": "xvla",
110
+ "n_obs_steps": 1,
111
+ "input_features": {
112
+ "observation.images.image": {
113
+ "type": "VISUAL",
114
+ "shape": [
115
+ 3,
116
+ 256,
117
+ 256
118
+ ]
119
+ },
120
+ "observation.images.image2": {
121
+ "type": "VISUAL",
122
+ "shape": [
123
+ 3,
124
+ 256,
125
+ 256
126
+ ]
127
+ },
128
+ "observation.state": {
129
+ "type": "STATE",
130
+ "shape": [
131
+ 8
132
+ ]
133
+ },
134
+ "observation.images.image3": {
135
+ "type": "VISUAL",
136
+ "shape": [
137
+ 3,
138
+ 224,
139
+ 224
140
+ ]
141
+ }
142
+ },
143
+ "output_features": {
144
+ "action": {
145
+ "type": "ACTION",
146
+ "shape": [
147
+ 6
148
+ ]
149
+ }
150
+ },
151
+ "device": "cuda",
152
+ "use_amp": false,
153
+ "use_peft": false,
154
+ "push_to_hub": true,
155
+ "repo_id": "AriRyo/blockpick_gray_xvla_24",
156
+ "private": null,
157
+ "tags": null,
158
+ "license": null,
159
+ "pretrained_path": "lerobot/xvla-base",
160
+ "chunk_size": 30,
161
+ "n_action_steps": 30,
162
+ "dtype": "bfloat16",
163
+ "normalization_mapping": {
164
+ "STATE": "IDENTITY",
165
+ "ACTION": "MEAN_STD",
166
+ "VISUAL": "IDENTITY"
167
+ },
168
+ "florence_config": {
169
+ "model_type": "florence2",
170
+ "bos_token_id": 0,
171
+ "eos_token_id": 2,
172
+ "ignore_index": -100,
173
+ "pad_token_id": 1,
174
+ "projection_dim": 1024,
175
+ "text_config": {
176
+ "vocab_size": 51289,
177
+ "activation_dropout": 0.1,
178
+ "activation_function": "gelu",
179
+ "add_bias_logits": false,
180
+ "add_final_layer_norm": false,
181
+ "attention_dropout": 0.1,
182
+ "bos_token_id": 0,
183
+ "classif_dropout": 0.1,
184
+ "classifier_dropout": 0.0,
185
+ "d_model": 1024,
186
+ "decoder_attention_heads": 16,
187
+ "decoder_ffn_dim": 4096,
188
+ "decoder_layerdrop": 0.0,
189
+ "decoder_layers": 12,
190
+ "decoder_start_token_id": 2,
191
+ "dropout": 0.1,
192
+ "early_stopping": true,
193
+ "encoder_attention_heads": 16,
194
+ "encoder_ffn_dim": 4096,
195
+ "encoder_layerdrop": 0.0,
196
+ "encoder_layers": 12,
197
+ "eos_token_id": 2,
198
+ "forced_eos_token_id": 2,
199
+ "forced_bos_token_id": 0,
200
+ "gradient_checkpointing": false,
201
+ "init_std": 0.02,
202
+ "is_encoder_decoder": true,
203
+ "label2id": {
204
+ "LABEL_0": 0,
205
+ "LABEL_1": 1,
206
+ "LABEL_2": 2
207
+ },
208
+ "max_position_embeddings": 4096,
209
+ "no_repeat_ngram_size": 3,
210
+ "normalize_before": false,
211
+ "num_hidden_layers": 12,
212
+ "pad_token_id": 1,
213
+ "scale_embedding": false,
214
+ "num_beams": 3
215
+ },
216
+ "vision_config": {
217
+ "model_type": "davit",
218
+ "drop_path_rate": 0.1,
219
+ "patch_size": [
220
+ 7,
221
+ 3,
222
+ 3,
223
+ 3
224
+ ],
225
+ "patch_stride": [
226
+ 4,
227
+ 2,
228
+ 2,
229
+ 2
230
+ ],
231
+ "patch_padding": [
232
+ 3,
233
+ 1,
234
+ 1,
235
+ 1
236
+ ],
237
+ "patch_prenorm": [
238
+ false,
239
+ true,
240
+ true,
241
+ true
242
+ ],
243
+ "enable_checkpoint": false,
244
+ "dim_embed": [
245
+ 256,
246
+ 512,
247
+ 1024,
248
+ 2048
249
+ ],
250
+ "num_heads": [
251
+ 8,
252
+ 16,
253
+ 32,
254
+ 64
255
+ ],
256
+ "num_groups": [
257
+ 8,
258
+ 16,
259
+ 32,
260
+ 64
261
+ ],
262
+ "depths": [
263
+ 1,
264
+ 1,
265
+ 9,
266
+ 1
267
+ ],
268
+ "window_size": 12,
269
+ "projection_dim": 1024,
270
+ "visual_temporal_embedding": {
271
+ "type": "COSINE",
272
+ "max_temporal_embeddings": 100
273
+ },
274
+ "image_pos_embed": {
275
+ "type": "learned_abs_2d",
276
+ "max_pos_embeddings": 50
277
+ },
278
+ "image_feature_source": [
279
+ "spatial_avg_pool",
280
+ "temporal_avg_pool"
281
+ ]
282
+ },
283
+ "vocab_size": 51289,
284
+ "torch_dtype": "float32",
285
+ "is_encoder_decoder": true
286
+ },
287
+ "tokenizer_name": "facebook/bart-large",
288
+ "tokenizer_max_length": 1024,
289
+ "tokenizer_padding_side": "right",
290
+ "pad_language_to": "max_length",
291
+ "hidden_size": 1024,
292
+ "depth": 24,
293
+ "num_heads": 16,
294
+ "mlp_ratio": 4.0,
295
+ "num_domains": 30,
296
+ "len_soft_prompts": 32,
297
+ "dim_time": 32,
298
+ "max_len_seq": 512,
299
+ "use_hetero_proj": false,
300
+ "action_mode": "auto",
301
+ "num_denoising_steps": 10,
302
+ "use_proprio": true,
303
+ "max_state_dim": 20,
304
+ "max_action_dim": 20,
305
+ "domain_feature_key": null,
306
+ "resize_imgs_with_padding": [
307
+ 224,
308
+ 224
309
+ ],
310
+ "num_image_views": 3,
311
+ "empty_cameras": 0,
312
+ "freeze_vision_encoder": false,
313
+ "freeze_language_encoder": false,
314
+ "train_policy_transformer": true,
315
+ "train_soft_prompts": true,
316
+ "optimizer_lr": 0.0001,
317
+ "optimizer_betas": [
318
+ 0.9,
319
+ 0.95
320
+ ],
321
+ "optimizer_eps": 1e-08,
322
+ "optimizer_weight_decay": 0.0001,
323
+ "optimizer_grad_clip_norm": 10.0,
324
+ "optimizer_soft_prompt_lr_scale": 1.0,
325
+ "optimizer_soft_prompt_warmup_lr_scale": null,
326
+ "scheduler_warmup_steps": 1000,
327
+ "scheduler_decay_steps": 30000,
328
+ "scheduler_decay_lr": 2.5e-06
329
+ },
330
+ "output_dir": "outputs/train/blockpick_gray_xvla_24",
331
+ "job_name": "blockpick_gray_xvla_24",
332
+ "resume": false,
333
+ "seed": 1000,
334
+ "cudnn_deterministic": false,
335
+ "num_workers": 4,
336
+ "batch_size": 8,
337
+ "steps": 4000,
338
+ "eval_freq": 20000,
339
+ "log_freq": 200,
340
+ "tolerance_s": 0.0001,
341
+ "save_checkpoint": true,
342
+ "save_freq": 1000,
343
+ "use_policy_training_preset": true,
344
+ "optimizer": {
345
+ "type": "xvla-adamw",
346
+ "lr": 0.0001,
347
+ "weight_decay": 0.0001,
348
+ "grad_clip_norm": 10.0,
349
+ "betas": [
350
+ 0.9,
351
+ 0.95
352
+ ],
353
+ "eps": 1e-08,
354
+ "soft_prompt_lr_scale": 1.0,
355
+ "soft_prompt_warmup_lr_scale": null
356
+ },
357
+ "scheduler": {
358
+ "type": "cosine_decay_with_warmup",
359
+ "num_warmup_steps": 1000,
360
+ "num_decay_steps": 30000,
361
+ "peak_lr": 0.0001,
362
+ "decay_lr": 2.5e-06
363
+ },
364
+ "eval": {
365
+ "n_episodes": 50,
366
+ "batch_size": 50,
367
+ "use_async_envs": false
368
+ },
369
+ "wandb": {
370
+ "enable": true,
371
+ "disable_artifact": true,
372
+ "project": "lerobot",
373
+ "entity": null,
374
+ "notes": null,
375
+ "run_id": "rbajkh6s",
376
+ "mode": null,
377
+ "add_tags": true
378
+ },
379
+ "peft": null,
380
+ "use_rabc": false,
381
+ "rabc_progress_path": null,
382
+ "rabc_kappa": 0.01,
383
+ "rabc_epsilon": 1e-06,
384
+ "rabc_head_mode": "sparse",
385
+ "rename_map": {
386
+ "observation.images.above": "observation.images.image",
387
+ "observation.images.side": "observation.images.image2"
388
+ },
389
+ "checkpoint_path": null
390
+ }