JiabinQ commited on
Commit
93e0169
·
verified ·
1 Parent(s): 3082323

Upload folder using huggingface_hub

Browse files
checkpoint-140000/config.json ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.wrist": {
17
+ "type": "VISUAL",
18
+ "shape": [
19
+ 3,
20
+ 480,
21
+ 640
22
+ ]
23
+ },
24
+ "observation.images.front": {
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
+ "load_in_8bit": false,
73
+ "load_in_4bit": false,
74
+ "bnb_4bit_compute_dtype": "bfloat16",
75
+ "bnb_4bit_quant_type": "nf4",
76
+ "bnb_4bit_use_double_quant": true,
77
+ "llm_int8_threshold": 6.0,
78
+ "llm_int8_skip_modules": null,
79
+ "llm_int8_enable_fp32_cpu_offload": false,
80
+ "llm_int8_has_fp16_weight": false
81
+ }
checkpoint-140000/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93242435846fdc001e1d1065dfbfccf72ffcf1be167785d6b31b870339a572c8
3
+ size 7536025152
checkpoint-140000/train_config.json ADDED
@@ -0,0 +1,193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "JiabinQ/jul_pick_cube",
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.wrist": {
84
+ "type": "VISUAL",
85
+ "shape": [
86
+ 3,
87
+ 480,
88
+ 640
89
+ ]
90
+ },
91
+ "observation.images.front": {
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
+ "load_in_8bit": false,
140
+ "load_in_4bit": false,
141
+ "bnb_4bit_compute_dtype": "bfloat16",
142
+ "bnb_4bit_quant_type": "nf4",
143
+ "bnb_4bit_use_double_quant": true,
144
+ "llm_int8_threshold": 6.0,
145
+ "llm_int8_skip_modules": null,
146
+ "llm_int8_enable_fp32_cpu_offload": false,
147
+ "llm_int8_has_fp16_weight": false
148
+ },
149
+ "output_dir": "/root/autodl-tmp/outputs_jul/jul_pick_301",
150
+ "job_name": "pi0",
151
+ "resume": true,
152
+ "seed": 1000,
153
+ "num_workers": 4,
154
+ "batch_size": 10,
155
+ "steps": 140000,
156
+ "eval_freq": 20000,
157
+ "log_freq": 200,
158
+ "save_checkpoint": true,
159
+ "save_freq": 2000,
160
+ "use_policy_training_preset": true,
161
+ "optimizer": {
162
+ "type": "adamw",
163
+ "lr": 2.5e-05,
164
+ "weight_decay": 1e-10,
165
+ "grad_clip_norm": 10.0,
166
+ "betas": [
167
+ 0.9,
168
+ 0.95
169
+ ],
170
+ "eps": 1e-08
171
+ },
172
+ "scheduler": {
173
+ "type": "cosine_decay_with_warmup",
174
+ "num_warmup_steps": 1000,
175
+ "num_decay_steps": 30000,
176
+ "peak_lr": 2.5e-05,
177
+ "decay_lr": 2.5e-06
178
+ },
179
+ "eval": {
180
+ "n_episodes": 50,
181
+ "batch_size": 50,
182
+ "use_async_envs": false
183
+ },
184
+ "wandb": {
185
+ "enable": false,
186
+ "disable_artifact": false,
187
+ "project": "lerobot",
188
+ "entity": null,
189
+ "notes": null,
190
+ "run_id": null,
191
+ "mode": null
192
+ }
193
+ }