Robotics
LeRobot
Safetensors
smolvla
vpraise00 commited on
Commit
d7a7cd1
·
verified ·
1 Parent(s): a0380f7

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +63 -0
  2. config.json +117 -0
  3. model.safetensors +3 -0
  4. train_config.json +249 -0
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: lerobot/smolvla_base
3
+ datasets: CoRL2026-CSI/IsaacLab-SO101-Phase1PlusPhase2-extract_cube-100episode-10fps
4
+ library_name: lerobot
5
+ license: apache-2.0
6
+ model_name: smolvla
7
+ pipeline_tag: robotics
8
+ tags:
9
+ - smolvla
10
+ - lerobot
11
+ - robotics
12
+ ---
13
+
14
+ # Model Card for smolvla
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+ [SmolVLA](https://huggingface.co/papers/2506.01844) is a compact, efficient vision-language-action model that achieves competitive performance at reduced computational costs and can be deployed on consumer-grade hardware.
20
+
21
+
22
+ This policy has been trained and pushed to the Hub using [LeRobot](https://github.com/huggingface/lerobot).
23
+ See the full documentation at [LeRobot Docs](https://huggingface.co/docs/lerobot/index).
24
+
25
+ ---
26
+
27
+ ## How to Get Started with the Model
28
+
29
+ For a complete walkthrough, see the [training guide](https://huggingface.co/docs/lerobot/il_robots#train-a-policy).
30
+ Below is the short version on how to train and run inference/eval:
31
+
32
+ ### Train from scratch
33
+
34
+ ```bash
35
+ lerobot-train \
36
+ --dataset.repo_id=${HF_USER}/<dataset> \
37
+ --policy.type=act \
38
+ --output_dir=outputs/train/<desired_policy_repo_id> \
39
+ --job_name=lerobot_training \
40
+ --policy.device=cuda \
41
+ --policy.repo_id=${HF_USER}/<desired_policy_repo_id>
42
+ --wandb.enable=true
43
+ ```
44
+
45
+ _Writes checkpoints to `outputs/train/<desired_policy_repo_id>/checkpoints/`._
46
+
47
+ ### Evaluate the policy/run inference
48
+
49
+ ```bash
50
+ lerobot-record \
51
+ --robot.type=so100_follower \
52
+ --dataset.repo_id=<hf_user>/eval_<dataset> \
53
+ --policy.path=<hf_user>/<desired_policy_repo_id> \
54
+ --episodes=10
55
+ ```
56
+
57
+ Prefix the dataset repo with **eval\_** and supply `--policy.path` pointing to a local or hub checkpoint.
58
+
59
+ ---
60
+
61
+ ## Model Details
62
+
63
+ - **License:** apache-2.0
config.json ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "smolvla",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.state": {
6
+ "type": "STATE",
7
+ "shape": [
8
+ 6
9
+ ]
10
+ },
11
+ "observation.images.camera1": {
12
+ "type": "VISUAL",
13
+ "shape": [
14
+ 3,
15
+ 256,
16
+ 256
17
+ ]
18
+ },
19
+ "observation.images.camera2": {
20
+ "type": "VISUAL",
21
+ "shape": [
22
+ 3,
23
+ 256,
24
+ 256
25
+ ]
26
+ },
27
+ "observation.images.camera3": {
28
+ "type": "VISUAL",
29
+ "shape": [
30
+ 3,
31
+ 256,
32
+ 256
33
+ ]
34
+ },
35
+ "observation.images.top": {
36
+ "type": "VISUAL",
37
+ "shape": [
38
+ 3,
39
+ 480,
40
+ 640
41
+ ]
42
+ },
43
+ "observation.images.left_wrist": {
44
+ "type": "VISUAL",
45
+ "shape": [
46
+ 3,
47
+ 480,
48
+ 640
49
+ ]
50
+ }
51
+ },
52
+ "output_features": {
53
+ "action": {
54
+ "type": "ACTION",
55
+ "shape": [
56
+ 6
57
+ ]
58
+ }
59
+ },
60
+ "device": "cuda",
61
+ "use_amp": false,
62
+ "use_peft": false,
63
+ "push_to_hub": true,
64
+ "repo_id": "CoRL2026-CSI/smolvla_IsaacLab-SO101_extract_cube_Ours_100epi_50ep-appendix",
65
+ "private": true,
66
+ "tags": null,
67
+ "license": null,
68
+ "pretrained_path": "CoRL2026-CSI/smolVLA-IsaacLab-Multi-Task-8epoch-mod",
69
+ "chunk_size": 50,
70
+ "n_action_steps": 50,
71
+ "normalization_mapping": {
72
+ "VISUAL": "IDENTITY",
73
+ "STATE": "MEAN_STD",
74
+ "ACTION": "MEAN_STD"
75
+ },
76
+ "max_state_dim": 32,
77
+ "max_action_dim": 32,
78
+ "resize_imgs_with_padding": [
79
+ 512,
80
+ 512
81
+ ],
82
+ "empty_cameras": 0,
83
+ "adapt_to_pi_aloha": false,
84
+ "use_delta_joint_actions_aloha": false,
85
+ "tokenizer_max_length": 48,
86
+ "num_steps": 50,
87
+ "use_cache": true,
88
+ "freeze_vision_encoder": true,
89
+ "train_expert_only": true,
90
+ "train_state_proj": true,
91
+ "optimizer_lr": 0.0001,
92
+ "optimizer_betas": [
93
+ 0.9,
94
+ 0.95
95
+ ],
96
+ "optimizer_eps": 1e-08,
97
+ "optimizer_weight_decay": 1e-10,
98
+ "optimizer_grad_clip_norm": 10.0,
99
+ "scheduler_warmup_steps": 1000,
100
+ "scheduler_decay_steps": 30000,
101
+ "scheduler_decay_lr": 2.5e-06,
102
+ "vlm_model_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct",
103
+ "load_vlm_weights": true,
104
+ "add_image_special_tokens": false,
105
+ "attention_mode": "cross_attn",
106
+ "prefix_length": 0,
107
+ "pad_language_to": "max_length",
108
+ "num_expert_layers": 0,
109
+ "num_vlm_layers": 16,
110
+ "self_attn_every_n_layers": 2,
111
+ "expert_width_multiplier": 0.75,
112
+ "min_period": 0.004,
113
+ "max_period": 4.0,
114
+ "rtc_config": null,
115
+ "compile_model": false,
116
+ "compile_mode": "max-autotune"
117
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ca0fa6c6391ffbb0596a5cd397c538730e3a55c84b6f58412426a615966b36d
3
+ size 906712520
train_config.json ADDED
@@ -0,0 +1,249 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "CoRL2026-CSI/IsaacLab-SO101-Phase1PlusPhase2-extract_cube-100episode-10fps",
4
+ "root": null,
5
+ "episodes": null,
6
+ "image_transforms": {
7
+ "enable": true,
8
+ "max_num_transforms": 3,
9
+ "random_order": true,
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": "v3.0",
64
+ "use_imagenet_stats": true,
65
+ "video_backend": "torchcodec",
66
+ "streaming": false
67
+ },
68
+ "env": null,
69
+ "policy": {
70
+ "type": "smolvla",
71
+ "n_obs_steps": 1,
72
+ "input_features": {
73
+ "observation.state": {
74
+ "type": "STATE",
75
+ "shape": [
76
+ 6
77
+ ]
78
+ },
79
+ "observation.images.camera1": {
80
+ "type": "VISUAL",
81
+ "shape": [
82
+ 3,
83
+ 256,
84
+ 256
85
+ ]
86
+ },
87
+ "observation.images.camera2": {
88
+ "type": "VISUAL",
89
+ "shape": [
90
+ 3,
91
+ 256,
92
+ 256
93
+ ]
94
+ },
95
+ "observation.images.camera3": {
96
+ "type": "VISUAL",
97
+ "shape": [
98
+ 3,
99
+ 256,
100
+ 256
101
+ ]
102
+ },
103
+ "observation.images.top": {
104
+ "type": "VISUAL",
105
+ "shape": [
106
+ 3,
107
+ 480,
108
+ 640
109
+ ]
110
+ },
111
+ "observation.images.left_wrist": {
112
+ "type": "VISUAL",
113
+ "shape": [
114
+ 3,
115
+ 480,
116
+ 640
117
+ ]
118
+ }
119
+ },
120
+ "output_features": {
121
+ "action": {
122
+ "type": "ACTION",
123
+ "shape": [
124
+ 6
125
+ ]
126
+ }
127
+ },
128
+ "device": "cuda",
129
+ "use_amp": false,
130
+ "use_peft": false,
131
+ "push_to_hub": true,
132
+ "repo_id": "CoRL2026-CSI/smolvla_IsaacLab-SO101_extract_cube_Ours_100epi_50ep-appendix",
133
+ "private": true,
134
+ "tags": null,
135
+ "license": null,
136
+ "pretrained_path": "CoRL2026-CSI/smolVLA-IsaacLab-Multi-Task-8epoch-mod",
137
+ "chunk_size": 50,
138
+ "n_action_steps": 50,
139
+ "normalization_mapping": {
140
+ "VISUAL": "IDENTITY",
141
+ "STATE": "MEAN_STD",
142
+ "ACTION": "MEAN_STD"
143
+ },
144
+ "max_state_dim": 32,
145
+ "max_action_dim": 32,
146
+ "resize_imgs_with_padding": [
147
+ 512,
148
+ 512
149
+ ],
150
+ "empty_cameras": 0,
151
+ "adapt_to_pi_aloha": false,
152
+ "use_delta_joint_actions_aloha": false,
153
+ "tokenizer_max_length": 48,
154
+ "num_steps": 50,
155
+ "use_cache": true,
156
+ "freeze_vision_encoder": true,
157
+ "train_expert_only": true,
158
+ "train_state_proj": true,
159
+ "optimizer_lr": 0.0001,
160
+ "optimizer_betas": [
161
+ 0.9,
162
+ 0.95
163
+ ],
164
+ "optimizer_eps": 1e-08,
165
+ "optimizer_weight_decay": 1e-10,
166
+ "optimizer_grad_clip_norm": 10.0,
167
+ "scheduler_warmup_steps": 1000,
168
+ "scheduler_decay_steps": 30000,
169
+ "scheduler_decay_lr": 2.5e-06,
170
+ "vlm_model_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct",
171
+ "load_vlm_weights": true,
172
+ "add_image_special_tokens": false,
173
+ "attention_mode": "cross_attn",
174
+ "prefix_length": 0,
175
+ "pad_language_to": "max_length",
176
+ "num_expert_layers": 0,
177
+ "num_vlm_layers": 16,
178
+ "self_attn_every_n_layers": 2,
179
+ "expert_width_multiplier": 0.75,
180
+ "min_period": 0.004,
181
+ "max_period": 4.0,
182
+ "rtc_config": null,
183
+ "compile_model": false,
184
+ "compile_mode": "max-autotune"
185
+ },
186
+ "output_dir": "/workspace/train_with_lerobot/outputs/train/smolvla_IsaacLab-SO101_extract_cube_Ours_100epi_50ep-appendix_20260603_223114",
187
+ "job_name": "smolvla_IsaacLab-SO101_extract_cube_Ours_100epi_50ep-appendix_20260603_223114",
188
+ "resume": false,
189
+ "seed": 1000,
190
+ "cudnn_deterministic": false,
191
+ "num_workers": 16,
192
+ "persistent_workers": true,
193
+ "batch_size": 128,
194
+ "gradient_accumulation_steps": 1,
195
+ "steps": 6414,
196
+ "eval_freq": 0,
197
+ "log_freq": 100,
198
+ "tolerance_s": 0.0001,
199
+ "save_checkpoint": true,
200
+ "save_freq": 6414,
201
+ "checkpoint_push_to_hub": false,
202
+ "checkpoint_hub_repo_id": null,
203
+ "checkpoint_hub_private": true,
204
+ "use_policy_training_preset": true,
205
+ "optimizer": {
206
+ "type": "adamw",
207
+ "lr": 0.0001,
208
+ "weight_decay": 1e-10,
209
+ "grad_clip_norm": 10.0,
210
+ "betas": [
211
+ 0.9,
212
+ 0.95
213
+ ],
214
+ "eps": 1e-08
215
+ },
216
+ "scheduler": {
217
+ "type": "cosine_decay_with_warmup",
218
+ "num_warmup_steps": 1000,
219
+ "num_decay_steps": 30000,
220
+ "peak_lr": 0.0001,
221
+ "decay_lr": 2.5e-06
222
+ },
223
+ "eval": {
224
+ "n_episodes": 50,
225
+ "batch_size": 44,
226
+ "use_async_envs": true
227
+ },
228
+ "wandb": {
229
+ "enable": true,
230
+ "disable_artifact": false,
231
+ "project": "lerobot-smolvla",
232
+ "entity": null,
233
+ "notes": null,
234
+ "run_id": "iwr9cn41",
235
+ "mode": "online",
236
+ "add_tags": true
237
+ },
238
+ "peft": null,
239
+ "use_rabc": false,
240
+ "rabc_progress_path": null,
241
+ "rabc_kappa": 0.01,
242
+ "rabc_epsilon": 1e-06,
243
+ "rabc_head_mode": "sparse",
244
+ "rename_map": {
245
+ "observation.images.left_wrist": "observation.images.camera1",
246
+ "observation.images.top": "observation.images.camera2"
247
+ },
248
+ "checkpoint_path": null
249
+ }