danielkorth commited on
Commit
7b64de0
·
verified ·
1 Parent(s): df209ed

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. config.json +83 -0
  2. model.safetensors +3 -0
  3. train_config.json +199 -0
config.json ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "smolvla",
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.gripper": {
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
+ 512,
49
+ 512
50
+ ],
51
+ "empty_cameras": 0,
52
+ "adapt_to_pi_aloha": false,
53
+ "use_delta_joint_actions_aloha": false,
54
+ "tokenizer_max_length": 48,
55
+ "num_steps": 10,
56
+ "use_cache": true,
57
+ "freeze_vision_encoder": true,
58
+ "train_expert_only": true,
59
+ "train_state_proj": true,
60
+ "optimizer_lr": 0.0001,
61
+ "optimizer_betas": [
62
+ 0.9,
63
+ 0.95
64
+ ],
65
+ "optimizer_eps": 1e-08,
66
+ "optimizer_weight_decay": 1e-10,
67
+ "optimizer_grad_clip_norm": 10.0,
68
+ "scheduler_warmup_steps": 1000,
69
+ "scheduler_decay_steps": 30000,
70
+ "scheduler_decay_lr": 2.5e-06,
71
+ "vlm_model_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct",
72
+ "load_vlm_weights": true,
73
+ "add_image_special_tokens": false,
74
+ "attention_mode": "cross_attn",
75
+ "prefix_length": 0,
76
+ "pad_language_to": "max_length",
77
+ "num_expert_layers": 0,
78
+ "num_vlm_layers": 16,
79
+ "self_attn_every_n_layers": 2,
80
+ "expert_width_multiplier": 0.75,
81
+ "min_period": 0.004,
82
+ "max_period": 4.0
83
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29a23326effdca318a2ec51dd537e6598dac132045bf8b7c396cc5772c33fd4a
3
+ size 906713296
train_config.json ADDED
@@ -0,0 +1,199 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": [
4
+ "danielkorth/whiteboard-marker",
5
+ "danielkorth/bike-light"
6
+ ],
7
+ "root": null,
8
+ "episodes": null,
9
+ "image_transforms": {
10
+ "enable": false,
11
+ "max_num_transforms": 3,
12
+ "random_order": false,
13
+ "tfs": {
14
+ "brightness": {
15
+ "weight": 1.0,
16
+ "type": "ColorJitter",
17
+ "kwargs": {
18
+ "brightness": [
19
+ 0.8,
20
+ 1.2
21
+ ]
22
+ }
23
+ },
24
+ "contrast": {
25
+ "weight": 1.0,
26
+ "type": "ColorJitter",
27
+ "kwargs": {
28
+ "contrast": [
29
+ 0.8,
30
+ 1.2
31
+ ]
32
+ }
33
+ },
34
+ "saturation": {
35
+ "weight": 1.0,
36
+ "type": "ColorJitter",
37
+ "kwargs": {
38
+ "saturation": [
39
+ 0.5,
40
+ 1.5
41
+ ]
42
+ }
43
+ },
44
+ "hue": {
45
+ "weight": 1.0,
46
+ "type": "ColorJitter",
47
+ "kwargs": {
48
+ "hue": [
49
+ -0.05,
50
+ 0.05
51
+ ]
52
+ }
53
+ },
54
+ "sharpness": {
55
+ "weight": 1.0,
56
+ "type": "SharpnessJitter",
57
+ "kwargs": {
58
+ "sharpness": [
59
+ 0.5,
60
+ 1.5
61
+ ]
62
+ }
63
+ }
64
+ }
65
+ },
66
+ "revision": null,
67
+ "use_imagenet_stats": true,
68
+ "video_backend": "pyav"
69
+ },
70
+ "env": null,
71
+ "policy": {
72
+ "type": "smolvla",
73
+ "n_obs_steps": 1,
74
+ "normalization_mapping": {
75
+ "VISUAL": "IDENTITY",
76
+ "STATE": "MEAN_STD",
77
+ "ACTION": "MEAN_STD"
78
+ },
79
+ "input_features": {
80
+ "observation.state": {
81
+ "type": "STATE",
82
+ "shape": [
83
+ 6
84
+ ]
85
+ },
86
+ "observation.images.side": {
87
+ "type": "VISUAL",
88
+ "shape": [
89
+ 3,
90
+ 480,
91
+ 640
92
+ ]
93
+ },
94
+ "observation.images.gripper": {
95
+ "type": "VISUAL",
96
+ "shape": [
97
+ 3,
98
+ 480,
99
+ 640
100
+ ]
101
+ }
102
+ },
103
+ "output_features": {
104
+ "action": {
105
+ "type": "ACTION",
106
+ "shape": [
107
+ 6
108
+ ]
109
+ }
110
+ },
111
+ "device": "cuda",
112
+ "use_amp": false,
113
+ "chunk_size": 50,
114
+ "n_action_steps": 50,
115
+ "max_state_dim": 32,
116
+ "max_action_dim": 32,
117
+ "resize_imgs_with_padding": [
118
+ 512,
119
+ 512
120
+ ],
121
+ "empty_cameras": 0,
122
+ "adapt_to_pi_aloha": false,
123
+ "use_delta_joint_actions_aloha": false,
124
+ "tokenizer_max_length": 48,
125
+ "num_steps": 10,
126
+ "use_cache": true,
127
+ "freeze_vision_encoder": true,
128
+ "train_expert_only": true,
129
+ "train_state_proj": 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-10,
137
+ "optimizer_grad_clip_norm": 10.0,
138
+ "scheduler_warmup_steps": 1000,
139
+ "scheduler_decay_steps": 30000,
140
+ "scheduler_decay_lr": 2.5e-06,
141
+ "vlm_model_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct",
142
+ "load_vlm_weights": true,
143
+ "add_image_special_tokens": false,
144
+ "attention_mode": "cross_attn",
145
+ "prefix_length": 0,
146
+ "pad_language_to": "max_length",
147
+ "num_expert_layers": 0,
148
+ "num_vlm_layers": 16,
149
+ "self_attn_every_n_layers": 2,
150
+ "expert_width_multiplier": 0.75,
151
+ "min_period": 0.004,
152
+ "max_period": 4.0
153
+ },
154
+ "output_dir": "outputs/whiteboard-and-bike-light-v4",
155
+ "job_name": "whiteboard-and-bike-light-v4",
156
+ "resume": false,
157
+ "seed": 1000,
158
+ "num_workers": 32,
159
+ "batch_size": 16,
160
+ "steps": 20000,
161
+ "eval_freq": 500,
162
+ "log_freq": 500,
163
+ "save_checkpoint": true,
164
+ "save_freq": 500,
165
+ "use_policy_training_preset": true,
166
+ "optimizer": {
167
+ "type": "adamw",
168
+ "lr": 0.0001,
169
+ "weight_decay": 1e-10,
170
+ "grad_clip_norm": 10.0,
171
+ "betas": [
172
+ 0.9,
173
+ 0.95
174
+ ],
175
+ "eps": 1e-08
176
+ },
177
+ "scheduler": {
178
+ "type": "cosine_decay_with_warmup",
179
+ "num_warmup_steps": 1000,
180
+ "num_decay_steps": 30000,
181
+ "peak_lr": 0.0001,
182
+ "decay_lr": 2.5e-06
183
+ },
184
+ "eval": {
185
+ "n_episodes": 50,
186
+ "batch_size": 50,
187
+ "use_async_envs": false
188
+ },
189
+ "wandb": {
190
+ "enable": true,
191
+ "disable_artifact": false,
192
+ "project": "lerobot-training",
193
+ "entity": null,
194
+ "notes": null,
195
+ "run_id": "ni6yba0m",
196
+ "mode": null
197
+ },
198
+ "hub_repo_id": "a6047425318/smolvla-whiteboard-and-bike-light-v4"
199
+ }