Sendera commited on
Commit
d262139
·
verified ·
1 Parent(s): e777e76

Upload folder using huggingface_hub

Browse files
config.json ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "diffusion",
3
+ "n_obs_steps": 2,
4
+ "input_features": {
5
+ "observation.state": {
6
+ "type": "STATE",
7
+ "shape": [
8
+ 7
9
+ ]
10
+ },
11
+ "observation.images.Cam1_global": {
12
+ "type": "VISUAL",
13
+ "shape": [
14
+ 3,
15
+ 256,
16
+ 256
17
+ ]
18
+ },
19
+ "observation.images.Cam1_local": {
20
+ "type": "VISUAL",
21
+ "shape": [
22
+ 3,
23
+ 256,
24
+ 256
25
+ ]
26
+ },
27
+ "observation.images.Cam2_global": {
28
+ "type": "VISUAL",
29
+ "shape": [
30
+ 3,
31
+ 256,
32
+ 256
33
+ ]
34
+ },
35
+ "observation.images.Cam2_local": {
36
+ "type": "VISUAL",
37
+ "shape": [
38
+ 3,
39
+ 256,
40
+ 256
41
+ ]
42
+ }
43
+ },
44
+ "output_features": {
45
+ "action": {
46
+ "type": "ACTION",
47
+ "shape": [
48
+ 14
49
+ ]
50
+ }
51
+ },
52
+ "device": "cuda",
53
+ "use_amp": false,
54
+ "use_peft": false,
55
+ "push_to_hub": false,
56
+ "repo_id": null,
57
+ "private": null,
58
+ "tags": null,
59
+ "license": null,
60
+ "pretrained_path": null,
61
+ "horizon": 16,
62
+ "n_action_steps": 8,
63
+ "normalization_mapping": {
64
+ "VISUAL": "MEAN_STD",
65
+ "STATE": "MIN_MAX",
66
+ "ACTION": "MIN_MAX"
67
+ },
68
+ "drop_n_last_frames": 7,
69
+ "vision_backbone": "resnet18",
70
+ "crop_shape": [
71
+ 224,
72
+ 224
73
+ ],
74
+ "crop_is_random": true,
75
+ "pretrained_backbone_weights": null,
76
+ "use_group_norm": true,
77
+ "spatial_softmax_num_keypoints": 32,
78
+ "use_separate_rgb_encoder_per_camera": false,
79
+ "down_dims": [
80
+ 512,
81
+ 1024,
82
+ 2048
83
+ ],
84
+ "kernel_size": 5,
85
+ "n_groups": 8,
86
+ "diffusion_step_embed_dim": 128,
87
+ "use_film_scale_modulation": true,
88
+ "noise_scheduler_type": "DDPM",
89
+ "num_train_timesteps": 100,
90
+ "beta_schedule": "squaredcos_cap_v2",
91
+ "beta_start": 0.0001,
92
+ "beta_end": 0.02,
93
+ "prediction_type": "epsilon",
94
+ "clip_sample": true,
95
+ "clip_sample_range": 1.0,
96
+ "num_inference_steps": null,
97
+ "do_mask_loss_for_padding": false,
98
+ "optimizer_lr": 0.0001,
99
+ "optimizer_betas": [
100
+ 0.95,
101
+ 0.999
102
+ ],
103
+ "optimizer_eps": 1e-08,
104
+ "optimizer_weight_decay": 1e-06,
105
+ "scheduler_name": "cosine",
106
+ "scheduler_warmup_steps": 500
107
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba5612dc5fe5b68bcf74ac36b3c09ca994df5c5e4ba1c4445c017dfc95bd20c9
3
+ size 1096220944
policy_postprocessor.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "policy_postprocessor",
3
+ "steps": [
4
+ {
5
+ "registry_name": "unnormalizer_processor",
6
+ "config": {
7
+ "eps": 1e-08,
8
+ "features": {
9
+ "action": {
10
+ "type": "ACTION",
11
+ "shape": [
12
+ 14
13
+ ]
14
+ }
15
+ },
16
+ "norm_map": {
17
+ "VISUAL": "MEAN_STD",
18
+ "STATE": "MIN_MAX",
19
+ "ACTION": "MIN_MAX"
20
+ }
21
+ },
22
+ "state_file": "policy_postprocessor_step_0_unnormalizer_processor.safetensors"
23
+ },
24
+ {
25
+ "registry_name": "device_processor",
26
+ "config": {
27
+ "device": "cpu",
28
+ "float_dtype": null
29
+ }
30
+ }
31
+ ]
32
+ }
policy_postprocessor_step_0_unnormalizer_processor.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4aa139a5c3524af4ccb19186e7e4663cbe027ac8d66dd5ea40a3e14d84cc84e1
3
+ size 10164
policy_preprocessor.json ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "policy_preprocessor",
3
+ "steps": [
4
+ {
5
+ "registry_name": "rename_observations_processor",
6
+ "config": {
7
+ "rename_map": {}
8
+ }
9
+ },
10
+ {
11
+ "registry_name": "to_batch_processor",
12
+ "config": {}
13
+ },
14
+ {
15
+ "registry_name": "device_processor",
16
+ "config": {
17
+ "device": "cuda",
18
+ "float_dtype": null
19
+ }
20
+ },
21
+ {
22
+ "registry_name": "normalizer_processor",
23
+ "config": {
24
+ "eps": 1e-08,
25
+ "features": {
26
+ "observation.state": {
27
+ "type": "STATE",
28
+ "shape": [
29
+ 7
30
+ ]
31
+ },
32
+ "observation.images.Cam1_global": {
33
+ "type": "VISUAL",
34
+ "shape": [
35
+ 3,
36
+ 256,
37
+ 256
38
+ ]
39
+ },
40
+ "observation.images.Cam1_local": {
41
+ "type": "VISUAL",
42
+ "shape": [
43
+ 3,
44
+ 256,
45
+ 256
46
+ ]
47
+ },
48
+ "observation.images.Cam2_global": {
49
+ "type": "VISUAL",
50
+ "shape": [
51
+ 3,
52
+ 256,
53
+ 256
54
+ ]
55
+ },
56
+ "observation.images.Cam2_local": {
57
+ "type": "VISUAL",
58
+ "shape": [
59
+ 3,
60
+ 256,
61
+ 256
62
+ ]
63
+ },
64
+ "action": {
65
+ "type": "ACTION",
66
+ "shape": [
67
+ 14
68
+ ]
69
+ }
70
+ },
71
+ "norm_map": {
72
+ "VISUAL": "MEAN_STD",
73
+ "STATE": "MIN_MAX",
74
+ "ACTION": "MIN_MAX"
75
+ }
76
+ },
77
+ "state_file": "policy_preprocessor_step_3_normalizer_processor.safetensors"
78
+ }
79
+ ]
80
+ }
policy_preprocessor_step_3_normalizer_processor.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4aa139a5c3524af4ccb19186e7e4663cbe027ac8d66dd5ea40a3e14d84cc84e1
3
+ size 10164
train_config.json ADDED
@@ -0,0 +1,257 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "Sendera/pick2",
4
+ "root": "/srv/scratch/z5649701/datasets/Sendera/pick2",
5
+ "episodes": null,
6
+ "image_transforms": {
7
+ "enable": false,
8
+ "max_num_transforms": 3,
9
+ "random_order": false,
10
+ "tfs": {
11
+ "brightness": {
12
+ "weight": 1.0,
13
+ "type": "ColorJitter",
14
+ "kwargs": {
15
+ "brightness": [
16
+ 0.8,
17
+ 1.2
18
+ ]
19
+ }
20
+ },
21
+ "contrast": {
22
+ "weight": 1.0,
23
+ "type": "ColorJitter",
24
+ "kwargs": {
25
+ "contrast": [
26
+ 0.8,
27
+ 1.2
28
+ ]
29
+ }
30
+ },
31
+ "saturation": {
32
+ "weight": 1.0,
33
+ "type": "ColorJitter",
34
+ "kwargs": {
35
+ "saturation": [
36
+ 0.5,
37
+ 1.5
38
+ ]
39
+ }
40
+ },
41
+ "hue": {
42
+ "weight": 1.0,
43
+ "type": "ColorJitter",
44
+ "kwargs": {
45
+ "hue": [
46
+ -0.05,
47
+ 0.05
48
+ ]
49
+ }
50
+ },
51
+ "sharpness": {
52
+ "weight": 1.0,
53
+ "type": "SharpnessJitter",
54
+ "kwargs": {
55
+ "sharpness": [
56
+ 0.5,
57
+ 1.5
58
+ ]
59
+ }
60
+ },
61
+ "affine": {
62
+ "weight": 1.0,
63
+ "type": "RandomAffine",
64
+ "kwargs": {
65
+ "degrees": [
66
+ -5.0,
67
+ 5.0
68
+ ],
69
+ "translate": [
70
+ 0.05,
71
+ 0.05
72
+ ]
73
+ }
74
+ },
75
+ "resize": {
76
+ "weight": 0.0,
77
+ "type": "Resize",
78
+ "kwargs": {
79
+ "size": 512,
80
+ "interpolation": 2,
81
+ "antialias": true
82
+ }
83
+ },
84
+ "center_crop": {
85
+ "weight": 0.0,
86
+ "type": "CenterCrop",
87
+ "kwargs": {
88
+ "size": 512
89
+ }
90
+ }
91
+ }
92
+ },
93
+ "revision": null,
94
+ "use_imagenet_stats": true,
95
+ "video_backend": "pyav",
96
+ "streaming": false
97
+ },
98
+ "env": null,
99
+ "policy": {
100
+ "type": "diffusion",
101
+ "n_obs_steps": 2,
102
+ "input_features": {
103
+ "observation.state": {
104
+ "type": "STATE",
105
+ "shape": [
106
+ 7
107
+ ]
108
+ },
109
+ "observation.images.Cam1_global": {
110
+ "type": "VISUAL",
111
+ "shape": [
112
+ 3,
113
+ 256,
114
+ 256
115
+ ]
116
+ },
117
+ "observation.images.Cam1_local": {
118
+ "type": "VISUAL",
119
+ "shape": [
120
+ 3,
121
+ 256,
122
+ 256
123
+ ]
124
+ },
125
+ "observation.images.Cam2_global": {
126
+ "type": "VISUAL",
127
+ "shape": [
128
+ 3,
129
+ 256,
130
+ 256
131
+ ]
132
+ },
133
+ "observation.images.Cam2_local": {
134
+ "type": "VISUAL",
135
+ "shape": [
136
+ 3,
137
+ 256,
138
+ 256
139
+ ]
140
+ }
141
+ },
142
+ "output_features": {
143
+ "action": {
144
+ "type": "ACTION",
145
+ "shape": [
146
+ 14
147
+ ]
148
+ }
149
+ },
150
+ "device": "cuda",
151
+ "use_amp": false,
152
+ "use_peft": false,
153
+ "push_to_hub": false,
154
+ "repo_id": null,
155
+ "private": null,
156
+ "tags": null,
157
+ "license": null,
158
+ "pretrained_path": null,
159
+ "horizon": 16,
160
+ "n_action_steps": 8,
161
+ "normalization_mapping": {
162
+ "VISUAL": "MEAN_STD",
163
+ "STATE": "MIN_MAX",
164
+ "ACTION": "MIN_MAX"
165
+ },
166
+ "drop_n_last_frames": 7,
167
+ "vision_backbone": "resnet18",
168
+ "crop_shape": [
169
+ 224,
170
+ 224
171
+ ],
172
+ "crop_is_random": true,
173
+ "pretrained_backbone_weights": null,
174
+ "use_group_norm": true,
175
+ "spatial_softmax_num_keypoints": 32,
176
+ "use_separate_rgb_encoder_per_camera": false,
177
+ "down_dims": [
178
+ 512,
179
+ 1024,
180
+ 2048
181
+ ],
182
+ "kernel_size": 5,
183
+ "n_groups": 8,
184
+ "diffusion_step_embed_dim": 128,
185
+ "use_film_scale_modulation": true,
186
+ "noise_scheduler_type": "DDPM",
187
+ "num_train_timesteps": 100,
188
+ "beta_schedule": "squaredcos_cap_v2",
189
+ "beta_start": 0.0001,
190
+ "beta_end": 0.02,
191
+ "prediction_type": "epsilon",
192
+ "clip_sample": true,
193
+ "clip_sample_range": 1.0,
194
+ "num_inference_steps": null,
195
+ "do_mask_loss_for_padding": false,
196
+ "optimizer_lr": 0.0001,
197
+ "optimizer_betas": [
198
+ 0.95,
199
+ 0.999
200
+ ],
201
+ "optimizer_eps": 1e-08,
202
+ "optimizer_weight_decay": 1e-06,
203
+ "scheduler_name": "cosine",
204
+ "scheduler_warmup_steps": 500
205
+ },
206
+ "output_dir": "outputs/train/2026-02-06/21-20-41_dp_pick2_h200",
207
+ "job_name": "dp_pick2_h200",
208
+ "resume": false,
209
+ "seed": 1000,
210
+ "num_workers": 8,
211
+ "batch_size": 32,
212
+ "steps": 500000,
213
+ "eval_freq": 20000,
214
+ "log_freq": 500,
215
+ "tolerance_s": 0.0001,
216
+ "save_checkpoint": true,
217
+ "save_freq": 20000,
218
+ "use_policy_training_preset": true,
219
+ "optimizer": {
220
+ "type": "adam",
221
+ "lr": 0.0001,
222
+ "weight_decay": 1e-06,
223
+ "grad_clip_norm": 10.0,
224
+ "betas": [
225
+ 0.95,
226
+ 0.999
227
+ ],
228
+ "eps": 1e-08
229
+ },
230
+ "scheduler": {
231
+ "type": "diffuser",
232
+ "num_warmup_steps": 500,
233
+ "name": "cosine"
234
+ },
235
+ "eval": {
236
+ "n_episodes": 50,
237
+ "batch_size": 50,
238
+ "use_async_envs": false
239
+ },
240
+ "wandb": {
241
+ "enable": true,
242
+ "disable_artifact": false,
243
+ "project": "lerobot_leo",
244
+ "entity": null,
245
+ "notes": null,
246
+ "run_id": "po4ks57r",
247
+ "mode": null
248
+ },
249
+ "peft": null,
250
+ "use_rabc": false,
251
+ "rabc_progress_path": null,
252
+ "rabc_kappa": 0.01,
253
+ "rabc_epsilon": 1e-06,
254
+ "rabc_head_mode": "sparse",
255
+ "rename_map": {},
256
+ "checkpoint_path": null
257
+ }