serialexperimentsleon commited on
Commit
64a2bee
·
verified ·
1 Parent(s): 705ec0e

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. README.md +12 -0
  2. config.json +43 -0
  3. config.yaml +224 -0
  4. model.safetensors +3 -0
README.md ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: lerobot
3
+ tags:
4
+ - act
5
+ - model_hub_mixin
6
+ - pytorch_model_hub_mixin
7
+ - robotics
8
+ ---
9
+
10
+ This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
11
+ - Library: https://github.com/huggingface/lerobot
12
+ - Docs: [More Information Needed]
config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "chunk_size": 100,
3
+ "dim_feedforward": 3200,
4
+ "dim_model": 512,
5
+ "dropout": 0.1,
6
+ "feedforward_activation": "relu",
7
+ "input_normalization_modes": {
8
+ "observation.images.top": "mean_std",
9
+ "observation.state": "mean_std"
10
+ },
11
+ "input_shapes": {
12
+ "observation.images.top": [
13
+ 3,
14
+ 480,
15
+ 640
16
+ ],
17
+ "observation.state": [
18
+ 14
19
+ ]
20
+ },
21
+ "kl_weight": 10.0,
22
+ "latent_dim": 32,
23
+ "n_action_steps": 100,
24
+ "n_decoder_layers": 1,
25
+ "n_encoder_layers": 4,
26
+ "n_heads": 8,
27
+ "n_obs_steps": 1,
28
+ "n_vae_encoder_layers": 4,
29
+ "output_normalization_modes": {
30
+ "action": "mean_std"
31
+ },
32
+ "output_shapes": {
33
+ "action": [
34
+ 14
35
+ ]
36
+ },
37
+ "pre_norm": false,
38
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
39
+ "replace_final_stride_with_dilation": false,
40
+ "temporal_ensemble_coeff": null,
41
+ "use_vae": true,
42
+ "vision_backbone": "resnet18"
43
+ }
config.yaml ADDED
@@ -0,0 +1,224 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ resume: false
2
+ device: cuda
3
+ use_amp: false
4
+ seed: 1000
5
+ dataset_repo_id: lerobot/aloha_sim_transfer_cube_human
6
+ video_backend: pyav
7
+ training:
8
+ offline_steps: 200000
9
+ num_workers: 4
10
+ batch_size: 8
11
+ eval_freq: 20000
12
+ log_freq: 250
13
+ save_checkpoint: true
14
+ save_freq: 20000
15
+ online_steps: 0
16
+ online_rollout_n_episodes: 1
17
+ online_rollout_batch_size: 1
18
+ online_steps_between_rollouts: 1
19
+ online_sampling_ratio: 0.5
20
+ online_env_seed: null
21
+ online_buffer_capacity: null
22
+ online_buffer_seed_size: 0
23
+ do_online_rollout_async: false
24
+ image_transforms:
25
+ enable: false
26
+ max_num_transforms: 3
27
+ random_order: false
28
+ brightness:
29
+ weight: 1
30
+ min_max:
31
+ - 0.8
32
+ - 1.2
33
+ contrast:
34
+ weight: 1
35
+ min_max:
36
+ - 0.8
37
+ - 1.2
38
+ saturation:
39
+ weight: 1
40
+ min_max:
41
+ - 0.5
42
+ - 1.5
43
+ hue:
44
+ weight: 1
45
+ min_max:
46
+ - -0.05
47
+ - 0.05
48
+ sharpness:
49
+ weight: 1
50
+ min_max:
51
+ - 0.8
52
+ - 1.2
53
+ lr: 1.0e-05
54
+ lr_backbone: 1.0e-05
55
+ weight_decay: 0.0001
56
+ grad_clip_norm: 10
57
+ delta_timestamps:
58
+ action:
59
+ - 0.0
60
+ - 0.02
61
+ - 0.04
62
+ - 0.06
63
+ - 0.08
64
+ - 0.1
65
+ - 0.12
66
+ - 0.14
67
+ - 0.16
68
+ - 0.18
69
+ - 0.2
70
+ - 0.22
71
+ - 0.24
72
+ - 0.26
73
+ - 0.28
74
+ - 0.3
75
+ - 0.32
76
+ - 0.34
77
+ - 0.36
78
+ - 0.38
79
+ - 0.4
80
+ - 0.42
81
+ - 0.44
82
+ - 0.46
83
+ - 0.48
84
+ - 0.5
85
+ - 0.52
86
+ - 0.54
87
+ - 0.56
88
+ - 0.58
89
+ - 0.6
90
+ - 0.62
91
+ - 0.64
92
+ - 0.66
93
+ - 0.68
94
+ - 0.7
95
+ - 0.72
96
+ - 0.74
97
+ - 0.76
98
+ - 0.78
99
+ - 0.8
100
+ - 0.82
101
+ - 0.84
102
+ - 0.86
103
+ - 0.88
104
+ - 0.9
105
+ - 0.92
106
+ - 0.94
107
+ - 0.96
108
+ - 0.98
109
+ - 1.0
110
+ - 1.02
111
+ - 1.04
112
+ - 1.06
113
+ - 1.08
114
+ - 1.1
115
+ - 1.12
116
+ - 1.14
117
+ - 1.16
118
+ - 1.18
119
+ - 1.2
120
+ - 1.22
121
+ - 1.24
122
+ - 1.26
123
+ - 1.28
124
+ - 1.3
125
+ - 1.32
126
+ - 1.34
127
+ - 1.36
128
+ - 1.38
129
+ - 1.4
130
+ - 1.42
131
+ - 1.44
132
+ - 1.46
133
+ - 1.48
134
+ - 1.5
135
+ - 1.52
136
+ - 1.54
137
+ - 1.56
138
+ - 1.58
139
+ - 1.6
140
+ - 1.62
141
+ - 1.64
142
+ - 1.66
143
+ - 1.68
144
+ - 1.7
145
+ - 1.72
146
+ - 1.74
147
+ - 1.76
148
+ - 1.78
149
+ - 1.8
150
+ - 1.82
151
+ - 1.84
152
+ - 1.86
153
+ - 1.88
154
+ - 1.9
155
+ - 1.92
156
+ - 1.94
157
+ - 1.96
158
+ - 1.98
159
+ eval:
160
+ n_episodes: 50
161
+ batch_size: 50
162
+ use_async_envs: false
163
+ wandb:
164
+ enable: true
165
+ disable_artifact: false
166
+ project: lerobot
167
+ notes: ''
168
+ fps: 50
169
+ env:
170
+ name: aloha
171
+ task: AlohaTransferCube-v0
172
+ state_dim: 14
173
+ action_dim: 14
174
+ fps: ${fps}
175
+ episode_length: 400
176
+ gym:
177
+ obs_type: pixels_agent_pos
178
+ render_mode: rgb_array
179
+ override_dataset_stats:
180
+ observation.images.top:
181
+ mean:
182
+ - - - 0.485
183
+ - - - 0.456
184
+ - - - 0.406
185
+ std:
186
+ - - - 0.229
187
+ - - - 0.224
188
+ - - - 0.225
189
+ policy:
190
+ name: act
191
+ n_obs_steps: 1
192
+ chunk_size: 100
193
+ n_action_steps: 100
194
+ input_shapes:
195
+ observation.images.top:
196
+ - 3
197
+ - 480
198
+ - 640
199
+ observation.state:
200
+ - ${env.state_dim}
201
+ output_shapes:
202
+ action:
203
+ - ${env.action_dim}
204
+ input_normalization_modes:
205
+ observation.images.top: mean_std
206
+ observation.state: mean_std
207
+ output_normalization_modes:
208
+ action: mean_std
209
+ vision_backbone: resnet18
210
+ pretrained_backbone_weights: ResNet18_Weights.IMAGENET1K_V1
211
+ replace_final_stride_with_dilation: false
212
+ pre_norm: false
213
+ dim_model: 512
214
+ n_heads: 8
215
+ dim_feedforward: 3200
216
+ feedforward_activation: relu
217
+ n_encoder_layers: 4
218
+ n_decoder_layers: 1
219
+ use_vae: true
220
+ latent_dim: 32
221
+ n_vae_encoder_layers: 4
222
+ temporal_ensemble_coeff: null
223
+ dropout: 0.1
224
+ kl_weight: 10.0
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfac1673b268c70193e1ae858adf7668fe35bdaf3996d2e156d373dfc87463c0
3
+ size 206766560