sebry4n commited on
Commit
16d5b29
·
verified ·
1 Parent(s): 2b0afc0

Upload folder using huggingface_hub

Browse files
config.json ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "dot",
3
+ "n_obs_steps": 3,
4
+ "input_features": {
5
+ "observation.state": {
6
+ "type": "STATE",
7
+ "shape": [
8
+ 6
9
+ ]
10
+ },
11
+ "observation.images.front": {
12
+ "type": "VISUAL",
13
+ "shape": [
14
+ 3,
15
+ 480,
16
+ 640
17
+ ]
18
+ },
19
+ "observation.images.wrist": {
20
+ "type": "VISUAL",
21
+ "shape": [
22
+ 3,
23
+ 480,
24
+ 640
25
+ ]
26
+ }
27
+ },
28
+ "output_features": {
29
+ "action": {
30
+ "type": "ACTION",
31
+ "shape": [
32
+ 6
33
+ ]
34
+ }
35
+ },
36
+ "device": "cuda",
37
+ "use_amp": false,
38
+ "use_peft": false,
39
+ "push_to_hub": true,
40
+ "repo_id": "sebry4n/my_policy_dot",
41
+ "private": null,
42
+ "tags": null,
43
+ "license": null,
44
+ "pretrained_path": "outputs\\train\\dot_so101_test\\checkpoints\\020000\\pretrained_model",
45
+ "pretrained_revision": null,
46
+ "train_horizon": 20,
47
+ "inference_horizon": 20,
48
+ "lookback_obs_steps": 10,
49
+ "lookback_aug": 5,
50
+ "normalization_mapping": {
51
+ "VISUAL": "MEAN_STD",
52
+ "STATE": "MIN_MAX",
53
+ "ENV": "MIN_MAX",
54
+ "ACTION": "MIN_MAX"
55
+ },
56
+ "override_dataset_stats": false,
57
+ "new_dataset_stats": {
58
+ "action": {
59
+ "max": [
60
+ 512.0,
61
+ 512.0
62
+ ],
63
+ "min": [
64
+ 0.0,
65
+ 0.0
66
+ ]
67
+ },
68
+ "observation.environment_state": {
69
+ "max": [
70
+ 512.0,
71
+ 512.0,
72
+ 512.0,
73
+ 512.0,
74
+ 512.0,
75
+ 512.0,
76
+ 512.0,
77
+ 512.0,
78
+ 512.0,
79
+ 512.0,
80
+ 512.0,
81
+ 512.0,
82
+ 512.0,
83
+ 512.0,
84
+ 512.0,
85
+ 512.0
86
+ ],
87
+ "min": [
88
+ 0.0,
89
+ 0.0,
90
+ 0.0,
91
+ 0.0,
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 0.0,
96
+ 0.0,
97
+ 0.0,
98
+ 0.0,
99
+ 0.0,
100
+ 0.0,
101
+ 0.0,
102
+ 0.0,
103
+ 0.0
104
+ ]
105
+ },
106
+ "observation.state": {
107
+ "max": [
108
+ 512.0,
109
+ 512.0
110
+ ],
111
+ "min": [
112
+ 0.0,
113
+ 0.0
114
+ ]
115
+ }
116
+ },
117
+ "vision_backbone": "resnet18",
118
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
119
+ "pre_norm": true,
120
+ "lora_rank": 20,
121
+ "merge_lora": false,
122
+ "dim_model": 128,
123
+ "n_heads": 8,
124
+ "dim_feedforward": 512,
125
+ "n_decoder_layers": 8,
126
+ "rescale_shape": [
127
+ 96,
128
+ 96
129
+ ],
130
+ "crop_scale": 0.8,
131
+ "state_noise": 0.01,
132
+ "noise_decay": 0.999995,
133
+ "dropout": 0.1,
134
+ "alpha": 0.75,
135
+ "train_alpha": 0.9,
136
+ "predict_every_n": 1,
137
+ "return_every_n": 1,
138
+ "optimizer_lr": 0.0001,
139
+ "optimizer_weight_decay": 1e-05
140
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a814c641b02da52c6a8b179d71bc2c8e37a7fb40f300b431c3e8e0966582edc
3
+ size 56416732
policy_postprocessor.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ 6
13
+ ]
14
+ }
15
+ },
16
+ "norm_map": {
17
+ "VISUAL": "MEAN_STD",
18
+ "STATE": "MIN_MAX",
19
+ "ENV": "MIN_MAX",
20
+ "ACTION": "MIN_MAX"
21
+ }
22
+ },
23
+ "state_file": "policy_postprocessor_step_0_unnormalizer_processor.safetensors"
24
+ },
25
+ {
26
+ "registry_name": "device_processor",
27
+ "config": {
28
+ "device": "cpu",
29
+ "float_dtype": null
30
+ }
31
+ }
32
+ ]
33
+ }
policy_postprocessor_step_0_unnormalizer_processor.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34d5b1ef49aa41ed3ee054865384a1432a43bbdabff106ceacddce934e06a751
3
+ size 7552
policy_preprocessor.json ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ 6
30
+ ]
31
+ },
32
+ "observation.images.front": {
33
+ "type": "VISUAL",
34
+ "shape": [
35
+ 3,
36
+ 480,
37
+ 640
38
+ ]
39
+ },
40
+ "observation.images.wrist": {
41
+ "type": "VISUAL",
42
+ "shape": [
43
+ 3,
44
+ 480,
45
+ 640
46
+ ]
47
+ },
48
+ "action": {
49
+ "type": "ACTION",
50
+ "shape": [
51
+ 6
52
+ ]
53
+ }
54
+ },
55
+ "norm_map": {
56
+ "VISUAL": "MEAN_STD",
57
+ "STATE": "MIN_MAX",
58
+ "ENV": "MIN_MAX",
59
+ "ACTION": "MIN_MAX"
60
+ }
61
+ },
62
+ "state_file": "policy_preprocessor_step_3_normalizer_processor.safetensors"
63
+ }
64
+ ]
65
+ }
policy_preprocessor_step_3_normalizer_processor.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c45c78da5c97f1ea19457ea4e08eeefe12d0c1499a2fd05b2877d43430cdd5a
3
+ size 7560
train_config.json ADDED
@@ -0,0 +1,275 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "sebry4n/lerobot_rian_dataset_1_20260624_165116",
4
+ "root": null,
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
+ }
76
+ },
77
+ "revision": null,
78
+ "use_imagenet_stats": true,
79
+ "video_backend": "torchcodec",
80
+ "return_uint8": false,
81
+ "streaming": false
82
+ },
83
+ "env": null,
84
+ "policy": {
85
+ "type": "dot",
86
+ "n_obs_steps": 3,
87
+ "input_features": {
88
+ "observation.state": {
89
+ "type": "STATE",
90
+ "shape": [
91
+ 6
92
+ ]
93
+ },
94
+ "observation.images.front": {
95
+ "type": "VISUAL",
96
+ "shape": [
97
+ 3,
98
+ 480,
99
+ 640
100
+ ]
101
+ },
102
+ "observation.images.wrist": {
103
+ "type": "VISUAL",
104
+ "shape": [
105
+ 3,
106
+ 480,
107
+ 640
108
+ ]
109
+ }
110
+ },
111
+ "output_features": {
112
+ "action": {
113
+ "type": "ACTION",
114
+ "shape": [
115
+ 6
116
+ ]
117
+ }
118
+ },
119
+ "device": "cuda",
120
+ "use_amp": false,
121
+ "use_peft": false,
122
+ "push_to_hub": true,
123
+ "repo_id": "sebry4n/my_policy_dot",
124
+ "private": null,
125
+ "tags": null,
126
+ "license": null,
127
+ "pretrained_path": "outputs\\train\\dot_so101_test\\checkpoints\\020000\\pretrained_model",
128
+ "pretrained_revision": null,
129
+ "train_horizon": 20,
130
+ "inference_horizon": 20,
131
+ "lookback_obs_steps": 10,
132
+ "lookback_aug": 5,
133
+ "normalization_mapping": {
134
+ "VISUAL": "MEAN_STD",
135
+ "STATE": "MIN_MAX",
136
+ "ENV": "MIN_MAX",
137
+ "ACTION": "MIN_MAX"
138
+ },
139
+ "override_dataset_stats": false,
140
+ "new_dataset_stats": {
141
+ "action": {
142
+ "max": [
143
+ 512.0,
144
+ 512.0
145
+ ],
146
+ "min": [
147
+ 0.0,
148
+ 0.0
149
+ ]
150
+ },
151
+ "observation.environment_state": {
152
+ "max": [
153
+ 512.0,
154
+ 512.0,
155
+ 512.0,
156
+ 512.0,
157
+ 512.0,
158
+ 512.0,
159
+ 512.0,
160
+ 512.0,
161
+ 512.0,
162
+ 512.0,
163
+ 512.0,
164
+ 512.0,
165
+ 512.0,
166
+ 512.0,
167
+ 512.0,
168
+ 512.0
169
+ ],
170
+ "min": [
171
+ 0.0,
172
+ 0.0,
173
+ 0.0,
174
+ 0.0,
175
+ 0.0,
176
+ 0.0,
177
+ 0.0,
178
+ 0.0,
179
+ 0.0,
180
+ 0.0,
181
+ 0.0,
182
+ 0.0,
183
+ 0.0,
184
+ 0.0,
185
+ 0.0,
186
+ 0.0
187
+ ]
188
+ },
189
+ "observation.state": {
190
+ "max": [
191
+ 512.0,
192
+ 512.0
193
+ ],
194
+ "min": [
195
+ 0.0,
196
+ 0.0
197
+ ]
198
+ }
199
+ },
200
+ "vision_backbone": "resnet18",
201
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
202
+ "pre_norm": true,
203
+ "lora_rank": 20,
204
+ "merge_lora": false,
205
+ "dim_model": 128,
206
+ "n_heads": 8,
207
+ "dim_feedforward": 512,
208
+ "n_decoder_layers": 8,
209
+ "rescale_shape": [
210
+ 96,
211
+ 96
212
+ ],
213
+ "crop_scale": 0.8,
214
+ "state_noise": 0.01,
215
+ "noise_decay": 0.999995,
216
+ "dropout": 0.1,
217
+ "alpha": 0.75,
218
+ "train_alpha": 0.9,
219
+ "predict_every_n": 1,
220
+ "return_every_n": 1,
221
+ "optimizer_lr": 0.0001,
222
+ "optimizer_weight_decay": 1e-05
223
+ },
224
+ "reward_model": null,
225
+ "output_dir": "outputs\\train\\dot_so101_test",
226
+ "job_name": "act_so101_test",
227
+ "resume": true,
228
+ "seed": 1000,
229
+ "cudnn_deterministic": false,
230
+ "num_workers": 4,
231
+ "batch_size": 8,
232
+ "prefetch_factor": 4,
233
+ "persistent_workers": true,
234
+ "steps": 100000,
235
+ "eval_freq": 20000,
236
+ "log_freq": 200,
237
+ "tolerance_s": 0.0001,
238
+ "save_checkpoint": true,
239
+ "save_freq": 20000,
240
+ "use_policy_training_preset": true,
241
+ "optimizer": {
242
+ "type": "adamw",
243
+ "lr": 0.0001,
244
+ "weight_decay": 1e-05,
245
+ "grad_clip_norm": 10.0,
246
+ "betas": [
247
+ 0.9,
248
+ 0.999
249
+ ],
250
+ "eps": 1e-08
251
+ },
252
+ "scheduler": null,
253
+ "eval": {
254
+ "n_episodes": 50,
255
+ "batch_size": 11,
256
+ "use_async_envs": true,
257
+ "recording": false,
258
+ "recording_repo_id": null,
259
+ "recording_private": false
260
+ },
261
+ "wandb": {
262
+ "enable": false,
263
+ "disable_artifact": false,
264
+ "project": "lerobot",
265
+ "entity": null,
266
+ "notes": null,
267
+ "run_id": null,
268
+ "mode": null,
269
+ "add_tags": true
270
+ },
271
+ "peft": null,
272
+ "sample_weighting": null,
273
+ "rename_map": {},
274
+ "checkpoint_path": "outputs\\train\\dot_so101_test\\checkpoints\\020000"
275
+ }