iantc104 commited on
Commit
317aa6c
1 Parent(s): 2fee2ed

Upload YAML configuration

Browse files
Files changed (1) hide show
  1. config.yaml +213 -0
config.yaml ADDED
@@ -0,0 +1,213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ resume: false
2
+ device: cuda
3
+ use_amp: false
4
+ seed: 1000
5
+ dataset_repo_id: iantc104/gv_sim_insert_peg_2arms
6
+ video_backend: pyav
7
+ training:
8
+ offline_steps: 15625
9
+ num_workers: 4
10
+ batch_size: 16
11
+ eval_freq: 1000
12
+ log_freq: 100
13
+ save_checkpoint: true
14
+ save_freq: 1000
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: 2.5e-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.04
61
+ - 0.08
62
+ - 0.12
63
+ - 0.16
64
+ - 0.2
65
+ - 0.24
66
+ - 0.28
67
+ - 0.32
68
+ - 0.36
69
+ - 0.4
70
+ - 0.44
71
+ - 0.48
72
+ - 0.52
73
+ - 0.56
74
+ - 0.6
75
+ - 0.64
76
+ - 0.68
77
+ - 0.72
78
+ - 0.76
79
+ - 0.8
80
+ - 0.84
81
+ - 0.88
82
+ - 0.92
83
+ - 0.96
84
+ - 1.0
85
+ - 1.04
86
+ - 1.08
87
+ - 1.12
88
+ - 1.16
89
+ - 1.2
90
+ - 1.24
91
+ - 1.28
92
+ - 1.32
93
+ - 1.36
94
+ - 1.4
95
+ - 1.44
96
+ - 1.48
97
+ - 1.52
98
+ - 1.56
99
+ - 1.6
100
+ - 1.64
101
+ - 1.68
102
+ - 1.72
103
+ - 1.76
104
+ - 1.8
105
+ - 1.84
106
+ - 1.88
107
+ - 1.92
108
+ - 1.96
109
+ eval:
110
+ n_episodes: 1
111
+ batch_size: 1
112
+ use_async_envs: false
113
+ wandb:
114
+ enable: true
115
+ disable_artifact: false
116
+ project: lerobot
117
+ notes: ''
118
+ fps: 25
119
+ env:
120
+ name: guided_vision
121
+ task: InsertPeg-2Arms-v0
122
+ state_dim: 14
123
+ action_dim: 14
124
+ fps: ${fps}
125
+ episode_length: 400
126
+ override_dataset_stats:
127
+ observation.images.overhead_cam:
128
+ mean:
129
+ - - - 0.485
130
+ - - - 0.456
131
+ - - - 0.406
132
+ std:
133
+ - - - 0.229
134
+ - - - 0.224
135
+ - - - 0.225
136
+ observation.images.worms_eye_cam:
137
+ mean:
138
+ - - - 0.485
139
+ - - - 0.456
140
+ - - - 0.406
141
+ std:
142
+ - - - 0.229
143
+ - - - 0.224
144
+ - - - 0.225
145
+ observation.images.wrist_cam_left:
146
+ mean:
147
+ - - - 0.485
148
+ - - - 0.456
149
+ - - - 0.406
150
+ std:
151
+ - - - 0.229
152
+ - - - 0.224
153
+ - - - 0.225
154
+ observation.images.wrist_cam_right:
155
+ mean:
156
+ - - - 0.485
157
+ - - - 0.456
158
+ - - - 0.406
159
+ std:
160
+ - - - 0.229
161
+ - - - 0.224
162
+ - - - 0.225
163
+ policy:
164
+ name: act
165
+ n_obs_steps: 1
166
+ chunk_size: 50
167
+ n_action_steps: 50
168
+ input_shapes:
169
+ observation.images.overhead_cam:
170
+ - 3
171
+ - 480
172
+ - 640
173
+ observation.images.worms_eye_cam:
174
+ - 3
175
+ - 480
176
+ - 640
177
+ observation.images.wrist_cam_left:
178
+ - 3
179
+ - 480
180
+ - 640
181
+ observation.images.wrist_cam_right:
182
+ - 3
183
+ - 480
184
+ - 640
185
+ observation.state:
186
+ - ${env.state_dim}
187
+ output_shapes:
188
+ action:
189
+ - ${env.action_dim}
190
+ input_normalization_modes:
191
+ observation.images.overhead_cam: mean_std
192
+ observation.images.worms_eye_cam: mean_std
193
+ observation.images.wrist_cam_left: mean_std
194
+ observation.images.wrist_cam_right: mean_std
195
+ observation.state: mean_std
196
+ output_normalization_modes:
197
+ action: mean_std
198
+ vision_backbone: resnet18
199
+ pretrained_backbone_weights: ResNet18_Weights.IMAGENET1K_V1
200
+ replace_final_stride_with_dilation: false
201
+ pre_norm: false
202
+ dim_model: 512
203
+ n_heads: 8
204
+ dim_feedforward: 3200
205
+ feedforward_activation: relu
206
+ n_encoder_layers: 4
207
+ n_decoder_layers: 1
208
+ use_vae: true
209
+ latent_dim: 32
210
+ n_vae_encoder_layers: 4
211
+ temporal_ensemble_coeff: null
212
+ dropout: 0.1
213
+ kl_weight: 10.0