Xiaoyan97 commited on
Commit
2564f20
·
verified ·
1 Parent(s): 03b478e

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 +190 -0
config.json ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "pi0fast",
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.main": {
17
+ "type": "VISUAL",
18
+ "shape": [
19
+ 3,
20
+ 240,
21
+ 320
22
+ ]
23
+ },
24
+ "observation.images.secondary_0": {
25
+ "type": "VISUAL",
26
+ "shape": [
27
+ 3,
28
+ 240,
29
+ 320
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": 10,
44
+ "n_action_steps": 5,
45
+ "max_state_dim": 32,
46
+ "max_action_dim": 32,
47
+ "resize_imgs_with_padding": [
48
+ 224,
49
+ 224
50
+ ],
51
+ "interpolate_like_pi": false,
52
+ "empty_cameras": 0,
53
+ "adapt_to_pi_aloha": false,
54
+ "use_delta_joint_actions_aloha": false,
55
+ "tokenizer_max_length": 48,
56
+ "proj_width": 1024,
57
+ "max_decoding_steps": 256,
58
+ "fast_skip_tokens": 128,
59
+ "max_input_seq_len": 256,
60
+ "use_cache": true,
61
+ "freeze_vision_encoder": true,
62
+ "freeze_lm_head": true,
63
+ "optimizer_lr": 0.0001,
64
+ "optimizer_betas": [
65
+ 0.9,
66
+ 0.95
67
+ ],
68
+ "optimizer_eps": 1e-08,
69
+ "optimizer_weight_decay": 1e-05,
70
+ "scheduler_warmup_steps": 1000,
71
+ "scheduler_decay_steps": 30000,
72
+ "scheduler_decay_lr": 2.5e-06,
73
+ "checkpoint_path": null,
74
+ "padding_side": "right",
75
+ "precision": "bfloat16",
76
+ "grad_clip_norm": 1,
77
+ "relaxed_action_decoding": true
78
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f3601dd996c04e709740fa95afcbdea1ea916d039b124e1e06ee32a7eb8e3c1
3
+ size 5846765760
train_config.json ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "anthonyav/so100-lego-v3",
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": "pi0fast",
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.main": {
84
+ "type": "VISUAL",
85
+ "shape": [
86
+ 3,
87
+ 240,
88
+ 320
89
+ ]
90
+ },
91
+ "observation.images.secondary_0": {
92
+ "type": "VISUAL",
93
+ "shape": [
94
+ 3,
95
+ 240,
96
+ 320
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": 10,
111
+ "n_action_steps": 5,
112
+ "max_state_dim": 32,
113
+ "max_action_dim": 32,
114
+ "resize_imgs_with_padding": [
115
+ 224,
116
+ 224
117
+ ],
118
+ "interpolate_like_pi": false,
119
+ "empty_cameras": 0,
120
+ "adapt_to_pi_aloha": false,
121
+ "use_delta_joint_actions_aloha": false,
122
+ "tokenizer_max_length": 48,
123
+ "proj_width": 1024,
124
+ "max_decoding_steps": 256,
125
+ "fast_skip_tokens": 128,
126
+ "max_input_seq_len": 256,
127
+ "use_cache": true,
128
+ "freeze_vision_encoder": true,
129
+ "freeze_lm_head": true,
130
+ "optimizer_lr": 0.0001,
131
+ "optimizer_betas": [
132
+ 0.9,
133
+ 0.95
134
+ ],
135
+ "optimizer_eps": 1e-08,
136
+ "optimizer_weight_decay": 1e-05,
137
+ "scheduler_warmup_steps": 1000,
138
+ "scheduler_decay_steps": 30000,
139
+ "scheduler_decay_lr": 2.5e-06,
140
+ "checkpoint_path": null,
141
+ "padding_side": "right",
142
+ "precision": "bfloat16",
143
+ "grad_clip_norm": 1,
144
+ "relaxed_action_decoding": true
145
+ },
146
+ "output_dir": "outputs/train/2025-05-30/15-47-09_pi0fast",
147
+ "job_name": "pi0fast",
148
+ "resume": false,
149
+ "seed": 1000,
150
+ "num_workers": 4,
151
+ "batch_size": 8,
152
+ "steps": 100000,
153
+ "eval_freq": 20000,
154
+ "log_freq": 200,
155
+ "save_checkpoint": true,
156
+ "save_freq": 20000,
157
+ "use_policy_training_preset": true,
158
+ "optimizer": {
159
+ "type": "adamw",
160
+ "lr": 0.0001,
161
+ "weight_decay": 1e-05,
162
+ "grad_clip_norm": 1,
163
+ "betas": [
164
+ 0.9,
165
+ 0.95
166
+ ],
167
+ "eps": 1e-08
168
+ },
169
+ "scheduler": {
170
+ "type": "cosine_decay_with_warmup",
171
+ "num_warmup_steps": 1000,
172
+ "num_decay_steps": 30000,
173
+ "peak_lr": 0.0001,
174
+ "decay_lr": 2.5e-06
175
+ },
176
+ "eval": {
177
+ "n_episodes": 50,
178
+ "batch_size": 50,
179
+ "use_async_envs": false
180
+ },
181
+ "wandb": {
182
+ "enable": true,
183
+ "disable_artifact": false,
184
+ "project": "lerobot",
185
+ "entity": null,
186
+ "notes": null,
187
+ "run_id": null,
188
+ "mode": null
189
+ }
190
+ }