m1b commited on
Commit
1320cdc
·
verified ·
1 Parent(s): d357c96

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. config.json +72 -0
  2. model.safetensors +3 -0
  3. train_config.json +184 -0
config.json ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ 6
14
+ ]
15
+ },
16
+ "observation.images.side": {
17
+ "type": "VISUAL",
18
+ "shape": [
19
+ 3,
20
+ 480,
21
+ 640
22
+ ]
23
+ },
24
+ "observation.images.phone": {
25
+ "type": "VISUAL",
26
+ "shape": [
27
+ 3,
28
+ 480,
29
+ 640
30
+ ]
31
+ }
32
+ },
33
+ "output_features": {
34
+ "action": {
35
+ "type": "ACTION",
36
+ "shape": [
37
+ 6
38
+ ]
39
+ }
40
+ },
41
+ "device": "cuda",
42
+ "use_amp": false,
43
+ "chunk_size": 50,
44
+ "n_action_steps": 50,
45
+ "max_state_dim": 32,
46
+ "max_action_dim": 32,
47
+ "resize_imgs_with_padding": [
48
+ 224,
49
+ 224
50
+ ],
51
+ "empty_cameras": 0,
52
+ "adapt_to_pi_aloha": false,
53
+ "use_delta_joint_actions_aloha": false,
54
+ "tokenizer_max_length": 48,
55
+ "proj_width": 1024,
56
+ "num_steps": 10,
57
+ "use_cache": true,
58
+ "attention_implementation": "eager",
59
+ "freeze_vision_encoder": true,
60
+ "train_expert_only": false,
61
+ "train_state_proj": true,
62
+ "optimizer_lr": 2.5e-05,
63
+ "optimizer_betas": [
64
+ 0.9,
65
+ 0.95
66
+ ],
67
+ "optimizer_eps": 1e-08,
68
+ "optimizer_weight_decay": 1e-10,
69
+ "scheduler_warmup_steps": 1000,
70
+ "scheduler_decay_steps": 30000,
71
+ "scheduler_decay_lr": 2.5e-06
72
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34ad6e507f900cb0f21960f5fc68645ffb6a9f0f32963e903af1c291836528b2
3
+ size 7536022544
train_config.json ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "m1b/so100_bluelego_updt",
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
+ }
62
+ },
63
+ "revision": null,
64
+ "use_imagenet_stats": true,
65
+ "video_backend": "torchcodec"
66
+ },
67
+ "env": null,
68
+ "policy": {
69
+ "type": "pi0",
70
+ "n_obs_steps": 1,
71
+ "normalization_mapping": {
72
+ "VISUAL": "IDENTITY",
73
+ "STATE": "MEAN_STD",
74
+ "ACTION": "MEAN_STD"
75
+ },
76
+ "input_features": {
77
+ "observation.state": {
78
+ "type": "STATE",
79
+ "shape": [
80
+ 6
81
+ ]
82
+ },
83
+ "observation.images.side": {
84
+ "type": "VISUAL",
85
+ "shape": [
86
+ 3,
87
+ 480,
88
+ 640
89
+ ]
90
+ },
91
+ "observation.images.phone": {
92
+ "type": "VISUAL",
93
+ "shape": [
94
+ 3,
95
+ 480,
96
+ 640
97
+ ]
98
+ }
99
+ },
100
+ "output_features": {
101
+ "action": {
102
+ "type": "ACTION",
103
+ "shape": [
104
+ 6
105
+ ]
106
+ }
107
+ },
108
+ "device": "cuda",
109
+ "use_amp": false,
110
+ "chunk_size": 50,
111
+ "n_action_steps": 50,
112
+ "max_state_dim": 32,
113
+ "max_action_dim": 32,
114
+ "resize_imgs_with_padding": [
115
+ 224,
116
+ 224
117
+ ],
118
+ "empty_cameras": 0,
119
+ "adapt_to_pi_aloha": false,
120
+ "use_delta_joint_actions_aloha": false,
121
+ "tokenizer_max_length": 48,
122
+ "proj_width": 1024,
123
+ "num_steps": 10,
124
+ "use_cache": true,
125
+ "attention_implementation": "eager",
126
+ "freeze_vision_encoder": true,
127
+ "train_expert_only": false,
128
+ "train_state_proj": true,
129
+ "optimizer_lr": 2.5e-05,
130
+ "optimizer_betas": [
131
+ 0.9,
132
+ 0.95
133
+ ],
134
+ "optimizer_eps": 1e-08,
135
+ "optimizer_weight_decay": 1e-10,
136
+ "scheduler_warmup_steps": 1000,
137
+ "scheduler_decay_steps": 30000,
138
+ "scheduler_decay_lr": 2.5e-06
139
+ },
140
+ "output_dir": "outputs/train/2025-04-12/19-03-56_pi0",
141
+ "job_name": "pi0",
142
+ "resume": true,
143
+ "seed": 1000,
144
+ "num_workers": 4,
145
+ "batch_size": 20,
146
+ "steps": 100000,
147
+ "eval_freq": 20000,
148
+ "log_freq": 200,
149
+ "save_checkpoint": true,
150
+ "save_freq": 5000,
151
+ "use_policy_training_preset": true,
152
+ "optimizer": {
153
+ "type": "adamw",
154
+ "lr": 2.5e-05,
155
+ "weight_decay": 1e-10,
156
+ "grad_clip_norm": 10.0,
157
+ "betas": [
158
+ 0.9,
159
+ 0.95
160
+ ],
161
+ "eps": 1e-08
162
+ },
163
+ "scheduler": {
164
+ "type": "cosine_decay_with_warmup",
165
+ "num_warmup_steps": 1000,
166
+ "num_decay_steps": 30000,
167
+ "peak_lr": 2.5e-05,
168
+ "decay_lr": 2.5e-06
169
+ },
170
+ "eval": {
171
+ "n_episodes": 50,
172
+ "batch_size": 50,
173
+ "use_async_envs": false
174
+ },
175
+ "wandb": {
176
+ "enable": false,
177
+ "disable_artifact": false,
178
+ "project": "lerobot",
179
+ "entity": null,
180
+ "notes": null,
181
+ "run_id": null,
182
+ "mode": null
183
+ }
184
+ }