yamilama commited on
Commit
a11be02
·
verified ·
1 Parent(s): 2b31a63

Upload folder using huggingface_hub

Browse files
config.json ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "act",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.state": {
6
+ "type": "STATE",
7
+ "shape": [
8
+ 6
9
+ ]
10
+ },
11
+ "observation.images.top": {
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
+ "push_to_hub": true,
39
+ "repo_id": "yamilama/back_forcep",
40
+ "private": null,
41
+ "tags": null,
42
+ "license": null,
43
+ "pretrained_path": null,
44
+ "chunk_size": 100,
45
+ "n_action_steps": 100,
46
+ "normalization_mapping": {
47
+ "VISUAL": "MEAN_STD",
48
+ "STATE": "MEAN_STD",
49
+ "ACTION": "MEAN_STD"
50
+ },
51
+ "vision_backbone": "resnet18",
52
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
53
+ "replace_final_stride_with_dilation": false,
54
+ "pre_norm": false,
55
+ "dim_model": 512,
56
+ "n_heads": 8,
57
+ "dim_feedforward": 3200,
58
+ "feedforward_activation": "relu",
59
+ "n_encoder_layers": 4,
60
+ "n_decoder_layers": 1,
61
+ "use_vae": true,
62
+ "latent_dim": 32,
63
+ "n_vae_encoder_layers": 4,
64
+ "temporal_ensemble_coeff": null,
65
+ "dropout": 0.1,
66
+ "kl_weight": 10.0,
67
+ "optimizer_lr": 1e-05,
68
+ "optimizer_weight_decay": 0.0001,
69
+ "optimizer_lr_backbone": 1e-05
70
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78c15e7fac89cec92061898312038e68d91aab5e572f291fea6b3e814b637984
3
+ size 206699736
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
+ 6
13
+ ]
14
+ }
15
+ },
16
+ "norm_map": {
17
+ "VISUAL": "MEAN_STD",
18
+ "STATE": "MEAN_STD",
19
+ "ACTION": "MEAN_STD"
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:7cb0e4bea555bae87a34151cffc8a9d34896a844ccd4f5b2af1d2c4d79f9fa97
3
+ size 7536
policy_preprocessor.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.top": {
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": "MEAN_STD",
58
+ "ACTION": "MEAN_STD"
59
+ }
60
+ },
61
+ "state_file": "policy_preprocessor_step_3_normalizer_processor.safetensors"
62
+ }
63
+ ]
64
+ }
policy_preprocessor_step_3_normalizer_processor.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7cb0e4bea555bae87a34151cffc8a9d34896a844ccd4f5b2af1d2c4d79f9fa97
3
+ size 7536
train_config.json ADDED
@@ -0,0 +1,213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "yamilama/record-test21",
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
+ 18,
24
+ 19
25
+ ],
26
+ "image_transforms": {
27
+ "enable": false,
28
+ "max_num_transforms": 3,
29
+ "random_order": false,
30
+ "tfs": {
31
+ "brightness": {
32
+ "weight": 1.0,
33
+ "type": "ColorJitter",
34
+ "kwargs": {
35
+ "brightness": [
36
+ 0.8,
37
+ 1.2
38
+ ]
39
+ }
40
+ },
41
+ "contrast": {
42
+ "weight": 1.0,
43
+ "type": "ColorJitter",
44
+ "kwargs": {
45
+ "contrast": [
46
+ 0.8,
47
+ 1.2
48
+ ]
49
+ }
50
+ },
51
+ "saturation": {
52
+ "weight": 1.0,
53
+ "type": "ColorJitter",
54
+ "kwargs": {
55
+ "saturation": [
56
+ 0.5,
57
+ 1.5
58
+ ]
59
+ }
60
+ },
61
+ "hue": {
62
+ "weight": 1.0,
63
+ "type": "ColorJitter",
64
+ "kwargs": {
65
+ "hue": [
66
+ -0.05,
67
+ 0.05
68
+ ]
69
+ }
70
+ },
71
+ "sharpness": {
72
+ "weight": 1.0,
73
+ "type": "SharpnessJitter",
74
+ "kwargs": {
75
+ "sharpness": [
76
+ 0.5,
77
+ 1.5
78
+ ]
79
+ }
80
+ },
81
+ "affine": {
82
+ "weight": 1.0,
83
+ "type": "RandomAffine",
84
+ "kwargs": {
85
+ "degrees": [
86
+ -5.0,
87
+ 5.0
88
+ ],
89
+ "translate": [
90
+ 0.05,
91
+ 0.05
92
+ ]
93
+ }
94
+ }
95
+ }
96
+ },
97
+ "revision": null,
98
+ "use_imagenet_stats": true,
99
+ "video_backend": "torchcodec",
100
+ "streaming": false
101
+ },
102
+ "env": null,
103
+ "policy": {
104
+ "type": "act",
105
+ "n_obs_steps": 1,
106
+ "input_features": {
107
+ "observation.state": {
108
+ "type": "STATE",
109
+ "shape": [
110
+ 6
111
+ ]
112
+ },
113
+ "observation.images.top": {
114
+ "type": "VISUAL",
115
+ "shape": [
116
+ 3,
117
+ 480,
118
+ 640
119
+ ]
120
+ },
121
+ "observation.images.wrist": {
122
+ "type": "VISUAL",
123
+ "shape": [
124
+ 3,
125
+ 480,
126
+ 640
127
+ ]
128
+ }
129
+ },
130
+ "output_features": {
131
+ "action": {
132
+ "type": "ACTION",
133
+ "shape": [
134
+ 6
135
+ ]
136
+ }
137
+ },
138
+ "device": "cuda",
139
+ "use_amp": false,
140
+ "push_to_hub": true,
141
+ "repo_id": "yamilama/back_forcep",
142
+ "private": null,
143
+ "tags": null,
144
+ "license": null,
145
+ "pretrained_path": null,
146
+ "chunk_size": 100,
147
+ "n_action_steps": 100,
148
+ "normalization_mapping": {
149
+ "VISUAL": "MEAN_STD",
150
+ "STATE": "MEAN_STD",
151
+ "ACTION": "MEAN_STD"
152
+ },
153
+ "vision_backbone": "resnet18",
154
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
155
+ "replace_final_stride_with_dilation": false,
156
+ "pre_norm": false,
157
+ "dim_model": 512,
158
+ "n_heads": 8,
159
+ "dim_feedforward": 3200,
160
+ "feedforward_activation": "relu",
161
+ "n_encoder_layers": 4,
162
+ "n_decoder_layers": 1,
163
+ "use_vae": true,
164
+ "latent_dim": 32,
165
+ "n_vae_encoder_layers": 4,
166
+ "temporal_ensemble_coeff": null,
167
+ "dropout": 0.1,
168
+ "kl_weight": 10.0,
169
+ "optimizer_lr": 1e-05,
170
+ "optimizer_weight_decay": 0.0001,
171
+ "optimizer_lr_backbone": 1e-05
172
+ },
173
+ "output_dir": "outputs/train/test21",
174
+ "job_name": "test",
175
+ "resume": false,
176
+ "seed": 1000,
177
+ "num_workers": 4,
178
+ "batch_size": 32,
179
+ "steps": 60000,
180
+ "eval_freq": 20000,
181
+ "log_freq": 200,
182
+ "save_checkpoint": true,
183
+ "save_freq": 20000,
184
+ "use_policy_training_preset": true,
185
+ "optimizer": {
186
+ "type": "adamw",
187
+ "lr": 1e-05,
188
+ "weight_decay": 0.0001,
189
+ "grad_clip_norm": 10.0,
190
+ "betas": [
191
+ 0.9,
192
+ 0.999
193
+ ],
194
+ "eps": 1e-08
195
+ },
196
+ "scheduler": null,
197
+ "eval": {
198
+ "n_episodes": 50,
199
+ "batch_size": 50,
200
+ "use_async_envs": false
201
+ },
202
+ "wandb": {
203
+ "enable": true,
204
+ "disable_artifact": false,
205
+ "project": "lerobot",
206
+ "entity": null,
207
+ "notes": null,
208
+ "run_id": "c01vfn29",
209
+ "mode": null
210
+ },
211
+ "checkpoint_path": null,
212
+ "rename_map": {}
213
+ }