zhuoyang20 commited on
Commit
a11d02a
·
verified ·
1 Parent(s): 7a06bd6

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 +191 -0
config.json ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "pi0",
3
+ "use_delta_action": false,
4
+ "n_obs_steps": 1,
5
+ "normalization_mapping": {
6
+ "VISUAL": "IDENTITY",
7
+ "STATE": "MEAN_STD",
8
+ "ACTION": "MEAN_STD"
9
+ },
10
+ "input_features": {
11
+ "observation.state": {
12
+ "type": "STATE",
13
+ "shape": [
14
+ 6
15
+ ]
16
+ },
17
+ "observation.images.top": {
18
+ "type": "VISUAL",
19
+ "shape": [
20
+ 3,
21
+ 480,
22
+ 640
23
+ ]
24
+ },
25
+ "observation.images.wrist": {
26
+ "type": "VISUAL",
27
+ "shape": [
28
+ 3,
29
+ 480,
30
+ 640
31
+ ]
32
+ }
33
+ },
34
+ "output_features": {
35
+ "action": {
36
+ "type": "ACTION",
37
+ "shape": [
38
+ 6
39
+ ]
40
+ }
41
+ },
42
+ "device": "cuda:0",
43
+ "use_amp": false,
44
+ "push_to_hub": false,
45
+ "repo_id": null,
46
+ "private": null,
47
+ "tags": null,
48
+ "license": null,
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:32389b7abbc8165b70909e3fd522ac611d6990d3e9397546f1266471780b3976
3
+ size 7536025152
train_config.json ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "split",
4
+ "root": "/lustre/fsw/portfolios/nvr/projects/nvr_elm_llm/vla",
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
+ "norm_stats_path": null,
64
+ "revision": null,
65
+ "use_imagenet_stats": true,
66
+ "video_backend": "torchcodec"
67
+ },
68
+ "env": null,
69
+ "policy": {
70
+ "type": "pi0",
71
+ "use_delta_action": false,
72
+ "n_obs_steps": 1,
73
+ "normalization_mapping": {
74
+ "VISUAL": "IDENTITY",
75
+ "STATE": "MEAN_STD",
76
+ "ACTION": "MEAN_STD"
77
+ },
78
+ "input_features": {
79
+ "observation.state": {
80
+ "type": "STATE",
81
+ "shape": [
82
+ 6
83
+ ]
84
+ },
85
+ "observation.images.top": {
86
+ "type": "VISUAL",
87
+ "shape": [
88
+ 3,
89
+ 480,
90
+ 640
91
+ ]
92
+ },
93
+ "observation.images.wrist": {
94
+ "type": "VISUAL",
95
+ "shape": [
96
+ 3,
97
+ 480,
98
+ 640
99
+ ]
100
+ }
101
+ },
102
+ "output_features": {
103
+ "action": {
104
+ "type": "ACTION",
105
+ "shape": [
106
+ 6
107
+ ]
108
+ }
109
+ },
110
+ "device": "cuda:0",
111
+ "use_amp": false,
112
+ "push_to_hub": false,
113
+ "repo_id": null,
114
+ "private": null,
115
+ "tags": null,
116
+ "license": null,
117
+ "chunk_size": 50,
118
+ "n_action_steps": 50,
119
+ "max_state_dim": 32,
120
+ "max_action_dim": 32,
121
+ "resize_imgs_with_padding": [
122
+ 224,
123
+ 224
124
+ ],
125
+ "empty_cameras": 0,
126
+ "adapt_to_pi_aloha": false,
127
+ "use_delta_joint_actions_aloha": false,
128
+ "tokenizer_max_length": 48,
129
+ "proj_width": 1024,
130
+ "num_steps": 10,
131
+ "use_cache": true,
132
+ "attention_implementation": "eager",
133
+ "freeze_vision_encoder": true,
134
+ "train_expert_only": false,
135
+ "train_state_proj": true,
136
+ "optimizer_lr": 2.5e-05,
137
+ "optimizer_betas": [
138
+ 0.9,
139
+ 0.95
140
+ ],
141
+ "optimizer_eps": 1e-08,
142
+ "optimizer_weight_decay": 1e-10,
143
+ "scheduler_warmup_steps": 1000,
144
+ "scheduler_decay_steps": 30000,
145
+ "scheduler_decay_lr": 2.5e-06
146
+ },
147
+ "output_dir": "/lustre/fsw/portfolios/nvr/users/zhuoyangz/workspace/VLA/lerobot/outputs/run_split",
148
+ "job_name": "run_split",
149
+ "resume": false,
150
+ "seed": 42,
151
+ "num_workers": 4,
152
+ "batch_size": 32,
153
+ "steps": 30000,
154
+ "eval_freq": 20000,
155
+ "log_freq": 100,
156
+ "save_checkpoint": true,
157
+ "save_freq": 5000,
158
+ "use_policy_training_preset": false,
159
+ "optimizer": {
160
+ "type": "adamw",
161
+ "lr": 5e-05,
162
+ "weight_decay": 0.0,
163
+ "grad_clip_norm": 1.0,
164
+ "betas": [
165
+ 0.9,
166
+ 0.95
167
+ ],
168
+ "eps": 1e-08
169
+ },
170
+ "scheduler": {
171
+ "type": "cosine_decay_with_warmup",
172
+ "num_warmup_steps": 1000,
173
+ "num_decay_steps": 30000,
174
+ "peak_lr": 5e-05,
175
+ "decay_lr": 5e-06
176
+ },
177
+ "eval": {
178
+ "n_episodes": 50,
179
+ "batch_size": 50,
180
+ "use_async_envs": false
181
+ },
182
+ "wandb": {
183
+ "enable": true,
184
+ "disable_artifact": true,
185
+ "project": "lerobot",
186
+ "entity": null,
187
+ "notes": null,
188
+ "run_id": "c4hmzm8n",
189
+ "mode": null
190
+ }
191
+ }