AriRyo commited on
Commit
2f57494
·
verified ·
1 Parent(s): 39762f0

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