vvrs commited on
Commit
e982c02
·
verified ·
1 Parent(s): 1206407

Upload model from pretrained_model

Browse files
config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "act",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.image": {
6
+ "type": "VISUAL",
7
+ "shape": [
8
+ 3,
9
+ 96,
10
+ 96
11
+ ]
12
+ },
13
+ "observation.state": {
14
+ "type": "STATE",
15
+ "shape": [
16
+ 2
17
+ ]
18
+ }
19
+ },
20
+ "output_features": {
21
+ "action": {
22
+ "type": "ACTION",
23
+ "shape": [
24
+ 2
25
+ ]
26
+ }
27
+ },
28
+ "device": "cuda",
29
+ "use_amp": false,
30
+ "use_peft": false,
31
+ "push_to_hub": false,
32
+ "repo_id": "vvrs/act-pusht",
33
+ "private": null,
34
+ "tags": null,
35
+ "license": null,
36
+ "pretrained_path": null,
37
+ "chunk_size": 50,
38
+ "n_action_steps": 10,
39
+ "normalization_mapping": {
40
+ "VISUAL": "MEAN_STD",
41
+ "STATE": "MEAN_STD",
42
+ "ACTION": "MEAN_STD"
43
+ },
44
+ "vision_backbone": "resnet18",
45
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
46
+ "replace_final_stride_with_dilation": 0,
47
+ "pre_norm": false,
48
+ "dim_model": 512,
49
+ "n_heads": 8,
50
+ "dim_feedforward": 3200,
51
+ "feedforward_activation": "relu",
52
+ "n_encoder_layers": 4,
53
+ "n_decoder_layers": 1,
54
+ "use_vae": true,
55
+ "latent_dim": 16,
56
+ "n_vae_encoder_layers": 4,
57
+ "temporal_ensemble_coeff": null,
58
+ "dropout": 0.1,
59
+ "kl_weight": 0.26090695687163257,
60
+ "optimizer_lr": 7.765556097859912e-05,
61
+ "optimizer_weight_decay": 0.0001,
62
+ "optimizer_lr_backbone": 1e-05
63
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:718bff88c6df133b1677a60f13517012503ebcb2f33d2007e3b1849312bd6b3e
3
+ size 206363704
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
+ 2
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:bc174a7436ff5075efebe7be7cece5e5d8430658cc9b5314fb8a652eab912d96
3
+ size 4204
policy_preprocessor.json ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.image": {
27
+ "type": "VISUAL",
28
+ "shape": [
29
+ 3,
30
+ 96,
31
+ 96
32
+ ]
33
+ },
34
+ "observation.state": {
35
+ "type": "STATE",
36
+ "shape": [
37
+ 2
38
+ ]
39
+ },
40
+ "action": {
41
+ "type": "ACTION",
42
+ "shape": [
43
+ 2
44
+ ]
45
+ }
46
+ },
47
+ "norm_map": {
48
+ "VISUAL": "MEAN_STD",
49
+ "STATE": "MEAN_STD",
50
+ "ACTION": "MEAN_STD"
51
+ }
52
+ },
53
+ "state_file": "policy_preprocessor_step_3_normalizer_processor.safetensors"
54
+ }
55
+ ]
56
+ }
policy_preprocessor_step_3_normalizer_processor.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc174a7436ff5075efebe7be7cece5e5d8430658cc9b5314fb8a652eab912d96
3
+ size 4204
train_config.json ADDED
@@ -0,0 +1,234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "lerobot/pusht",
4
+ "root": null,
5
+ "episodes": null,
6
+ "image_transforms": {
7
+ "enable": true,
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
+ "streaming": false
81
+ },
82
+ "env": {
83
+ "type": "pusht",
84
+ "task": "PushT-v0",
85
+ "fps": 10,
86
+ "features": {
87
+ "action": {
88
+ "type": "ACTION",
89
+ "shape": [
90
+ 2
91
+ ]
92
+ },
93
+ "agent_pos": {
94
+ "type": "STATE",
95
+ "shape": [
96
+ 2
97
+ ]
98
+ },
99
+ "pixels": {
100
+ "type": "VISUAL",
101
+ "shape": [
102
+ 384,
103
+ 384,
104
+ 3
105
+ ]
106
+ }
107
+ },
108
+ "features_map": {
109
+ "action": "action",
110
+ "agent_pos": "observation.state",
111
+ "environment_state": "observation.environment_state",
112
+ "pixels": "observation.image"
113
+ },
114
+ "max_parallel_tasks": 1,
115
+ "disable_env_checker": true,
116
+ "episode_length": 300,
117
+ "obs_type": "pixels_agent_pos",
118
+ "render_mode": "rgb_array",
119
+ "visualization_width": 384,
120
+ "visualization_height": 384,
121
+ "observation_height": 384,
122
+ "observation_width": 384
123
+ },
124
+ "policy": {
125
+ "type": "act",
126
+ "n_obs_steps": 1,
127
+ "input_features": {
128
+ "observation.image": {
129
+ "type": "VISUAL",
130
+ "shape": [
131
+ 3,
132
+ 96,
133
+ 96
134
+ ]
135
+ },
136
+ "observation.state": {
137
+ "type": "STATE",
138
+ "shape": [
139
+ 2
140
+ ]
141
+ }
142
+ },
143
+ "output_features": {
144
+ "action": {
145
+ "type": "ACTION",
146
+ "shape": [
147
+ 2
148
+ ]
149
+ }
150
+ },
151
+ "device": "cuda",
152
+ "use_amp": false,
153
+ "use_peft": false,
154
+ "push_to_hub": false,
155
+ "repo_id": null,
156
+ "private": null,
157
+ "tags": null,
158
+ "license": null,
159
+ "pretrained_path": null,
160
+ "chunk_size": 50,
161
+ "n_action_steps": 10,
162
+ "normalization_mapping": {
163
+ "VISUAL": "MEAN_STD",
164
+ "STATE": "MEAN_STD",
165
+ "ACTION": "MEAN_STD"
166
+ },
167
+ "vision_backbone": "resnet18",
168
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
169
+ "replace_final_stride_with_dilation": 0,
170
+ "pre_norm": false,
171
+ "dim_model": 512,
172
+ "n_heads": 8,
173
+ "dim_feedforward": 3200,
174
+ "feedforward_activation": "relu",
175
+ "n_encoder_layers": 4,
176
+ "n_decoder_layers": 1,
177
+ "use_vae": true,
178
+ "latent_dim": 16,
179
+ "n_vae_encoder_layers": 4,
180
+ "temporal_ensemble_coeff": null,
181
+ "dropout": 0.1,
182
+ "kl_weight": 0.26090695687163257,
183
+ "optimizer_lr": 7.765556097859912e-05,
184
+ "optimizer_weight_decay": 0.0001,
185
+ "optimizer_lr_backbone": 1e-05
186
+ },
187
+ "output_dir": "sweeps/wox4vdbo",
188
+ "job_name": "fast-sweep-3",
189
+ "resume": false,
190
+ "seed": 1000,
191
+ "num_workers": 4,
192
+ "batch_size": 16,
193
+ "steps": 300000,
194
+ "eval_freq": 10000,
195
+ "log_freq": 100,
196
+ "tolerance_s": 0.0001,
197
+ "save_checkpoint": true,
198
+ "save_freq": 25000,
199
+ "use_policy_training_preset": true,
200
+ "optimizer": {
201
+ "type": "adamw",
202
+ "lr": 7.765556097859912e-05,
203
+ "weight_decay": 0.0001,
204
+ "grad_clip_norm": 10.0,
205
+ "betas": [
206
+ 0.9,
207
+ 0.999
208
+ ],
209
+ "eps": 1e-08
210
+ },
211
+ "scheduler": null,
212
+ "eval": {
213
+ "n_episodes": 50,
214
+ "batch_size": 50,
215
+ "use_async_envs": false
216
+ },
217
+ "wandb": {
218
+ "enable": true,
219
+ "disable_artifact": false,
220
+ "project": "act-pusht",
221
+ "entity": null,
222
+ "notes": "v4: chunk_size=50, n_action_steps=5, lr=1e-4, kl_weight=1.0",
223
+ "run_id": "wox4vdbo",
224
+ "mode": null
225
+ },
226
+ "peft": null,
227
+ "use_rabc": false,
228
+ "rabc_progress_path": null,
229
+ "rabc_kappa": 0.01,
230
+ "rabc_epsilon": 1e-06,
231
+ "rabc_head_mode": "sparse",
232
+ "rename_map": {},
233
+ "checkpoint_path": null
234
+ }