rkothari3 commited on
Commit
5e9b6ff
·
verified ·
1 Parent(s): 4d1ae73

Upload folder using huggingface_hub

Browse files
config.json ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "bc",
3
+ "n_obs_steps": 2,
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": true,
30
+ "push_to_hub": false,
31
+ "repo_id": null,
32
+ "private": null,
33
+ "tags": null,
34
+ "license": null,
35
+ "pretrained_path": null,
36
+ "horizon": 16,
37
+ "n_action_steps": 8,
38
+ "hidden_dim": 512,
39
+ "normalization_mapping": {
40
+ "VISUAL": "MEAN_STD",
41
+ "ACTION": "MIN_MAX"
42
+ },
43
+ "optimizer_lr": 0.0001,
44
+ "optimizer_betas": [
45
+ 0.95,
46
+ 0.999
47
+ ],
48
+ "optimizer_eps": 1e-08,
49
+ "optimizer_weight_decay": 1e-06,
50
+ "scheduler_name": "cosine",
51
+ "scheduler_warmup_steps": 500
52
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bca7215d2f5c794d32c96d04e46f98f79422d7e3e6890174470714c1184b192e
3
+ size 76997976
policy_postprocessor.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "ACTION": "MIN_MAX"
19
+ }
20
+ },
21
+ "state_file": "policy_postprocessor_step_0_unnormalizer_processor.safetensors"
22
+ },
23
+ {
24
+ "registry_name": "device_processor",
25
+ "config": {
26
+ "device": "cpu",
27
+ "float_dtype": null
28
+ }
29
+ }
30
+ ]
31
+ }
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,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "normalizer_processor",
12
+ "config": {
13
+ "eps": 1e-08,
14
+ "features": {
15
+ "observation.image": {
16
+ "type": "VISUAL",
17
+ "shape": [
18
+ 3,
19
+ 96,
20
+ 96
21
+ ]
22
+ },
23
+ "observation.state": {
24
+ "type": "STATE",
25
+ "shape": [
26
+ 2
27
+ ]
28
+ },
29
+ "action": {
30
+ "type": "ACTION",
31
+ "shape": [
32
+ 2
33
+ ]
34
+ }
35
+ },
36
+ "norm_map": {
37
+ "VISUAL": "MEAN_STD",
38
+ "ACTION": "MIN_MAX"
39
+ }
40
+ },
41
+ "state_file": "policy_preprocessor_step_1_normalizer_processor.safetensors"
42
+ },
43
+ {
44
+ "registry_name": "to_batch_processor",
45
+ "config": {}
46
+ },
47
+ {
48
+ "registry_name": "device_processor",
49
+ "config": {
50
+ "device": "cuda",
51
+ "float_dtype": null
52
+ }
53
+ }
54
+ ]
55
+ }
policy_preprocessor_step_1_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,185 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "lerobot/pusht",
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
+ "streaming": false
81
+ },
82
+ "env": null,
83
+ "policy": {
84
+ "type": "bc",
85
+ "n_obs_steps": 2,
86
+ "input_features": {
87
+ "observation.image": {
88
+ "type": "VISUAL",
89
+ "shape": [
90
+ 3,
91
+ 96,
92
+ 96
93
+ ]
94
+ },
95
+ "observation.state": {
96
+ "type": "STATE",
97
+ "shape": [
98
+ 2
99
+ ]
100
+ }
101
+ },
102
+ "output_features": {
103
+ "action": {
104
+ "type": "ACTION",
105
+ "shape": [
106
+ 2
107
+ ]
108
+ }
109
+ },
110
+ "device": "cuda",
111
+ "use_amp": true,
112
+ "push_to_hub": false,
113
+ "repo_id": null,
114
+ "private": null,
115
+ "tags": null,
116
+ "license": null,
117
+ "pretrained_path": null,
118
+ "horizon": 16,
119
+ "n_action_steps": 8,
120
+ "hidden_dim": 512,
121
+ "normalization_mapping": {
122
+ "VISUAL": "MEAN_STD",
123
+ "ACTION": "MIN_MAX"
124
+ },
125
+ "optimizer_lr": 0.0001,
126
+ "optimizer_betas": [
127
+ 0.95,
128
+ 0.999
129
+ ],
130
+ "optimizer_eps": 1e-08,
131
+ "optimizer_weight_decay": 1e-06,
132
+ "scheduler_name": "cosine",
133
+ "scheduler_warmup_steps": 500
134
+ },
135
+ "output_dir": "outputs/train/pushT_BC",
136
+ "job_name": "pushT_BC",
137
+ "resume": false,
138
+ "seed": 1000,
139
+ "num_workers": 2,
140
+ "batch_size": 64,
141
+ "steps": 50000,
142
+ "eval_freq": 5000,
143
+ "log_freq": 200,
144
+ "tolerance_s": 0.0001,
145
+ "save_checkpoint": true,
146
+ "save_freq": 10000,
147
+ "use_policy_training_preset": true,
148
+ "optimizer": {
149
+ "type": "adam",
150
+ "lr": 0.0001,
151
+ "weight_decay": 1e-06,
152
+ "grad_clip_norm": 10.0,
153
+ "betas": [
154
+ 0.95,
155
+ 0.999
156
+ ],
157
+ "eps": 1e-08
158
+ },
159
+ "scheduler": {
160
+ "type": "diffuser",
161
+ "num_warmup_steps": 500,
162
+ "name": "cosine"
163
+ },
164
+ "eval": {
165
+ "n_episodes": 50,
166
+ "batch_size": 50,
167
+ "use_async_envs": false
168
+ },
169
+ "wandb": {
170
+ "enable": false,
171
+ "disable_artifact": false,
172
+ "project": "lerobot",
173
+ "entity": null,
174
+ "notes": null,
175
+ "run_id": null,
176
+ "mode": null
177
+ },
178
+ "use_rabc": false,
179
+ "rabc_progress_path": null,
180
+ "rabc_kappa": 0.01,
181
+ "rabc_epsilon": 1e-06,
182
+ "rabc_head_mode": "sparse",
183
+ "rename_map": {},
184
+ "checkpoint_path": null
185
+ }