k1000dai commited on
Commit
cf847a0
·
verified ·
1 Parent(s): 5e71eb7

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. config.json +79 -0
  2. model.safetensors +3 -0
  3. train_config.json +191 -0
config.json ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "vla_adapter",
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.images.image": {
11
+ "type": "VISUAL",
12
+ "shape": [
13
+ 3,
14
+ 256,
15
+ 256
16
+ ]
17
+ },
18
+ "observation.images.wrist_image": {
19
+ "type": "VISUAL",
20
+ "shape": [
21
+ 3,
22
+ 256,
23
+ 256
24
+ ]
25
+ },
26
+ "observation.state": {
27
+ "type": "STATE",
28
+ "shape": [
29
+ 8
30
+ ]
31
+ }
32
+ },
33
+ "output_features": {
34
+ "action": {
35
+ "type": "ACTION",
36
+ "shape": [
37
+ 7
38
+ ]
39
+ }
40
+ },
41
+ "device": "cuda",
42
+ "use_amp": false,
43
+ "push_to_hub": true,
44
+ "repo_id": "k1000dai/vla_adapter_libero_scratch",
45
+ "private": null,
46
+ "tags": null,
47
+ "license": null,
48
+ "chunk_size": 8,
49
+ "n_action_steps": 8,
50
+ "max_state_dim": 64,
51
+ "max_action_dim": 32,
52
+ "resize_imgs_with_padding": [
53
+ 224,
54
+ 224
55
+ ],
56
+ "tokenizer_name": null,
57
+ "tokenizer_max_length": 128,
58
+ "vlm_model_name": "Qwen/Qwen2.5-0.5B",
59
+ "freeze_vlm": false,
60
+ "patch_size": 14,
61
+ "num_action_queries": 64,
62
+ "policy_hidden_size": 384,
63
+ "policy_num_layers": null,
64
+ "policy_num_heads": 8,
65
+ "policy_mlp_ratio": 4.0,
66
+ "bridge_ratio_init": 0.0,
67
+ "optimizer_lr": 0.0001,
68
+ "optimizer_betas": [
69
+ 0.9,
70
+ 0.95
71
+ ],
72
+ "optimizer_eps": 1e-08,
73
+ "optimizer_weight_decay": 0.0001,
74
+ "optimizer_grad_clip_norm": 1.0,
75
+ "scheduler_warmup_steps": 2000,
76
+ "scheduler_decay_steps": 50000,
77
+ "scheduler_decay_lr": 1e-05,
78
+ "use_delta_joint_actions": false
79
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1414c345dd2e9444530273126ba0d3bfd51ef347666a2ee921877a2a53ae0fc6
3
+ size 2308902328
train_config.json ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "k1000dai/libero",
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": "vla_adapter",
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.images.image": {
78
+ "type": "VISUAL",
79
+ "shape": [
80
+ 3,
81
+ 256,
82
+ 256
83
+ ]
84
+ },
85
+ "observation.images.wrist_image": {
86
+ "type": "VISUAL",
87
+ "shape": [
88
+ 3,
89
+ 256,
90
+ 256
91
+ ]
92
+ },
93
+ "observation.state": {
94
+ "type": "STATE",
95
+ "shape": [
96
+ 8
97
+ ]
98
+ }
99
+ },
100
+ "output_features": {
101
+ "action": {
102
+ "type": "ACTION",
103
+ "shape": [
104
+ 7
105
+ ]
106
+ }
107
+ },
108
+ "device": "cuda",
109
+ "use_amp": false,
110
+ "push_to_hub": true,
111
+ "repo_id": "k1000dai/vla_adapter_libero_scratch",
112
+ "private": null,
113
+ "tags": null,
114
+ "license": null,
115
+ "chunk_size": 8,
116
+ "n_action_steps": 8,
117
+ "max_state_dim": 64,
118
+ "max_action_dim": 32,
119
+ "resize_imgs_with_padding": [
120
+ 224,
121
+ 224
122
+ ],
123
+ "tokenizer_name": null,
124
+ "tokenizer_max_length": 128,
125
+ "vlm_model_name": "Qwen/Qwen2.5-0.5B",
126
+ "freeze_vlm": false,
127
+ "patch_size": 14,
128
+ "num_action_queries": 64,
129
+ "policy_hidden_size": 384,
130
+ "policy_num_layers": null,
131
+ "policy_num_heads": 8,
132
+ "policy_mlp_ratio": 4.0,
133
+ "bridge_ratio_init": 0.0,
134
+ "optimizer_lr": 0.0001,
135
+ "optimizer_betas": [
136
+ 0.9,
137
+ 0.95
138
+ ],
139
+ "optimizer_eps": 1e-08,
140
+ "optimizer_weight_decay": 0.0001,
141
+ "optimizer_grad_clip_norm": 1.0,
142
+ "scheduler_warmup_steps": 2000,
143
+ "scheduler_decay_steps": 50000,
144
+ "scheduler_decay_lr": 1e-05,
145
+ "use_delta_joint_actions": false
146
+ },
147
+ "output_dir": "output_libero_vla_adapter",
148
+ "job_name": "libero_vla_adapter_scratch",
149
+ "resume": false,
150
+ "seed": 1000,
151
+ "num_workers": 8,
152
+ "batch_size": 8,
153
+ "steps": 150000,
154
+ "eval_freq": 20000,
155
+ "log_freq": 200,
156
+ "save_checkpoint": true,
157
+ "save_freq": 20000,
158
+ "use_policy_training_preset": true,
159
+ "optimizer": {
160
+ "type": "adamw",
161
+ "lr": 0.0001,
162
+ "weight_decay": 0.0001,
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": 2000,
173
+ "num_decay_steps": 50000,
174
+ "peak_lr": 0.0001,
175
+ "decay_lr": 1e-05
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": "zbbliimw",
189
+ "mode": null
190
+ }
191
+ }