shantanu-tr commited on
Commit
72cdf1c
·
verified ·
1 Parent(s): 53eb11e

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. config.json +78 -0
  2. model.safetensors +3 -0
  3. train_config.json +202 -0
config.json ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "pi0",
3
+ "n_obs_steps": 1,
4
+ "normalization_mapping": {
5
+ "VISUAL": "IDENTITY",
6
+ "STATE": "MEAN_STD",
7
+ "ACTION": "MEAN_STD"
8
+ },
9
+ "input_features": {
10
+ "observation.state": {
11
+ "type": "STATE",
12
+ "shape": [
13
+ 18
14
+ ]
15
+ },
16
+ "observation.images.cam_low": {
17
+ "type": "VISUAL",
18
+ "shape": [
19
+ 3,
20
+ 480,
21
+ 640
22
+ ]
23
+ },
24
+ "observation.images.cam_left_wrist": {
25
+ "type": "VISUAL",
26
+ "shape": [
27
+ 3,
28
+ 480,
29
+ 640
30
+ ]
31
+ },
32
+ "observation.images.cam_right_wrist": {
33
+ "type": "VISUAL",
34
+ "shape": [
35
+ 3,
36
+ 480,
37
+ 640
38
+ ]
39
+ }
40
+ },
41
+ "output_features": {
42
+ "action": {
43
+ "type": "ACTION",
44
+ "shape": [
45
+ 18
46
+ ]
47
+ }
48
+ },
49
+ "chunk_size": 50,
50
+ "n_action_steps": 50,
51
+ "max_state_dim": 32,
52
+ "max_action_dim": 32,
53
+ "resize_imgs_with_padding": [
54
+ 224,
55
+ 224
56
+ ],
57
+ "empty_cameras": 0,
58
+ "adapt_to_pi_aloha": false,
59
+ "use_delta_joint_actions_aloha": false,
60
+ "tokenizer_max_length": 48,
61
+ "proj_width": 1024,
62
+ "num_steps": 10,
63
+ "use_cache": true,
64
+ "attention_implementation": "eager",
65
+ "freeze_vision_encoder": true,
66
+ "train_expert_only": false,
67
+ "train_state_proj": true,
68
+ "optimizer_lr": 2.5e-05,
69
+ "optimizer_betas": [
70
+ 0.9,
71
+ 0.95
72
+ ],
73
+ "optimizer_eps": 1e-08,
74
+ "optimizer_weight_decay": 1e-10,
75
+ "scheduler_warmup_steps": 1000,
76
+ "scheduler_decay_steps": 30000,
77
+ "scheduler_decay_lr": 2.5e-06
78
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35d5b834e359d83e98f6a269a98b0dd8f408fc9f1c1a4f1cd2933fa2009e1339
3
+ size 7536022840
train_config.json ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "TrossenRoboticsCommunity/aloha_fold_tshirt",
4
+ "episodes": null,
5
+ "image_transforms": {
6
+ "enable": false,
7
+ "max_num_transforms": 3,
8
+ "random_order": false,
9
+ "tfs": {
10
+ "brightness": {
11
+ "weight": 1.0,
12
+ "type": "ColorJitter",
13
+ "kwargs": {
14
+ "brightness": [
15
+ 0.8,
16
+ 1.2
17
+ ]
18
+ }
19
+ },
20
+ "contrast": {
21
+ "weight": 1.0,
22
+ "type": "ColorJitter",
23
+ "kwargs": {
24
+ "contrast": [
25
+ 0.8,
26
+ 1.2
27
+ ]
28
+ }
29
+ },
30
+ "saturation": {
31
+ "weight": 1.0,
32
+ "type": "ColorJitter",
33
+ "kwargs": {
34
+ "saturation": [
35
+ 0.5,
36
+ 1.5
37
+ ]
38
+ }
39
+ },
40
+ "hue": {
41
+ "weight": 1.0,
42
+ "type": "ColorJitter",
43
+ "kwargs": {
44
+ "hue": [
45
+ -0.05,
46
+ 0.05
47
+ ]
48
+ }
49
+ },
50
+ "sharpness": {
51
+ "weight": 1.0,
52
+ "type": "SharpnessJitter",
53
+ "kwargs": {
54
+ "sharpness": [
55
+ 0.5,
56
+ 1.5
57
+ ]
58
+ }
59
+ }
60
+ }
61
+ },
62
+ "local_files_only": false,
63
+ "use_imagenet_stats": true,
64
+ "video_backend": "pyav"
65
+ },
66
+ "env": null,
67
+ "policy": {
68
+ "type": "pi0",
69
+ "n_obs_steps": 1,
70
+ "normalization_mapping": {
71
+ "VISUAL": "IDENTITY",
72
+ "STATE": "MEAN_STD",
73
+ "ACTION": "MEAN_STD"
74
+ },
75
+ "input_features": {
76
+ "observation.state": {
77
+ "type": "STATE",
78
+ "shape": [
79
+ 18
80
+ ]
81
+ },
82
+ "observation.images.cam_low": {
83
+ "type": "VISUAL",
84
+ "shape": [
85
+ 3,
86
+ 480,
87
+ 640
88
+ ]
89
+ },
90
+ "observation.images.cam_left_wrist": {
91
+ "type": "VISUAL",
92
+ "shape": [
93
+ 3,
94
+ 480,
95
+ 640
96
+ ]
97
+ },
98
+ "observation.images.cam_right_wrist": {
99
+ "type": "VISUAL",
100
+ "shape": [
101
+ 3,
102
+ 480,
103
+ 640
104
+ ]
105
+ }
106
+ },
107
+ "output_features": {
108
+ "action": {
109
+ "type": "ACTION",
110
+ "shape": [
111
+ 18
112
+ ]
113
+ }
114
+ },
115
+ "chunk_size": 50,
116
+ "n_action_steps": 50,
117
+ "max_state_dim": 32,
118
+ "max_action_dim": 32,
119
+ "resize_imgs_with_padding": [
120
+ 224,
121
+ 224
122
+ ],
123
+ "empty_cameras": 0,
124
+ "adapt_to_pi_aloha": false,
125
+ "use_delta_joint_actions_aloha": false,
126
+ "tokenizer_max_length": 48,
127
+ "proj_width": 1024,
128
+ "num_steps": 10,
129
+ "use_cache": true,
130
+ "attention_implementation": "eager",
131
+ "freeze_vision_encoder": true,
132
+ "train_expert_only": false,
133
+ "train_state_proj": true,
134
+ "optimizer_lr": 2.5e-05,
135
+ "optimizer_betas": [
136
+ 0.9,
137
+ 0.95
138
+ ],
139
+ "optimizer_eps": 1e-08,
140
+ "optimizer_weight_decay": 1e-10,
141
+ "scheduler_warmup_steps": 1000,
142
+ "scheduler_decay_steps": 30000,
143
+ "scheduler_decay_lr": 2.5e-06
144
+ },
145
+ "output_dir": "outputs/train/2025-02-05/00-16-57_pi0",
146
+ "job_name": "pi0",
147
+ "resume": false,
148
+ "device": "cuda",
149
+ "use_amp": false,
150
+ "seed": 1000,
151
+ "num_workers": 4,
152
+ "batch_size": 4,
153
+ "eval_freq": 20000,
154
+ "log_freq": 200,
155
+ "save_checkpoint": true,
156
+ "save_freq": 20000,
157
+ "offline": {
158
+ "steps": 100000
159
+ },
160
+ "online": {
161
+ "steps": 0,
162
+ "rollout_n_episodes": 1,
163
+ "rollout_batch_size": 1,
164
+ "steps_between_rollouts": null,
165
+ "sampling_ratio": 0.5,
166
+ "env_seed": null,
167
+ "buffer_capacity": null,
168
+ "buffer_seed_size": 0,
169
+ "do_rollout_async": false
170
+ },
171
+ "use_policy_training_preset": true,
172
+ "optimizer": {
173
+ "type": "adamw",
174
+ "lr": 2.5e-05,
175
+ "weight_decay": 1e-10,
176
+ "grad_clip_norm": 10.0,
177
+ "betas": [
178
+ 0.9,
179
+ 0.95
180
+ ],
181
+ "eps": 1e-08
182
+ },
183
+ "scheduler": {
184
+ "type": "cosine_decay_with_warmup",
185
+ "num_warmup_steps": 1000,
186
+ "num_decay_steps": 30000,
187
+ "peak_lr": 2.5e-05,
188
+ "decay_lr": 2.5e-06
189
+ },
190
+ "eval": {
191
+ "n_episodes": 50,
192
+ "batch_size": 50,
193
+ "use_async_envs": false
194
+ },
195
+ "wandb": {
196
+ "enable": false,
197
+ "disable_artifact": false,
198
+ "project": "lerobot",
199
+ "entity": null,
200
+ "notes": null
201
+ }
202
+ }