Robotics
LeRobot
Safetensors
smolvla
c27e commited on
Commit
951bb33
·
verified ·
1 Parent(s): 8e9f6da

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +63 -0
  2. config.json +82 -0
  3. model.safetensors +3 -0
  4. train_config.json +217 -0
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: lerobot/smolvla_base
3
+ datasets: lerobot/aloha_sim_insertion_human
4
+ library_name: lerobot
5
+ license: apache-2.0
6
+ model_name: smolvla
7
+ pipeline_tag: robotics
8
+ tags:
9
+ - lerobot
10
+ - robotics
11
+ - smolvla
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,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "smolvla",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.images.top": {
6
+ "type": "VISUAL",
7
+ "shape": [
8
+ 3,
9
+ 480,
10
+ 640
11
+ ]
12
+ },
13
+ "observation.state": {
14
+ "type": "STATE",
15
+ "shape": [
16
+ 14
17
+ ]
18
+ }
19
+ },
20
+ "output_features": {
21
+ "action": {
22
+ "type": "ACTION",
23
+ "shape": [
24
+ 14
25
+ ]
26
+ }
27
+ },
28
+ "device": "cuda",
29
+ "use_amp": false,
30
+ "push_to_hub": true,
31
+ "repo_id": "c27e/smolvla_aloha_sim_insertion_human",
32
+ "private": null,
33
+ "tags": null,
34
+ "license": null,
35
+ "pretrained_path": "lerobot/smolvla_base",
36
+ "chunk_size": 50,
37
+ "n_action_steps": 50,
38
+ "normalization_mapping": {
39
+ "VISUAL": "IDENTITY",
40
+ "STATE": "MEAN_STD",
41
+ "ACTION": "MEAN_STD"
42
+ },
43
+ "max_state_dim": 32,
44
+ "max_action_dim": 32,
45
+ "resize_imgs_with_padding": [
46
+ 512,
47
+ 512
48
+ ],
49
+ "empty_cameras": 0,
50
+ "adapt_to_pi_aloha": false,
51
+ "use_delta_joint_actions_aloha": false,
52
+ "tokenizer_max_length": 48,
53
+ "num_steps": 10,
54
+ "use_cache": true,
55
+ "freeze_vision_encoder": true,
56
+ "train_expert_only": true,
57
+ "train_state_proj": true,
58
+ "optimizer_lr": 0.0001,
59
+ "optimizer_betas": [
60
+ 0.9,
61
+ 0.95
62
+ ],
63
+ "optimizer_eps": 1e-08,
64
+ "optimizer_weight_decay": 1e-10,
65
+ "optimizer_grad_clip_norm": 10,
66
+ "scheduler_warmup_steps": 1000,
67
+ "scheduler_decay_steps": 30000,
68
+ "scheduler_decay_lr": 2.5e-06,
69
+ "vlm_model_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct",
70
+ "load_vlm_weights": false,
71
+ "add_image_special_tokens": false,
72
+ "attention_mode": "cross_attn",
73
+ "prefix_length": -1,
74
+ "pad_language_to": "longest",
75
+ "num_expert_layers": -1,
76
+ "num_vlm_layers": 16,
77
+ "self_attn_every_n_layers": 2,
78
+ "expert_width_multiplier": 0.75,
79
+ "min_period": 0.004,
80
+ "max_period": 4.0,
81
+ "rtc_config": null
82
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca33adc3f81a627ec8e1db1cf84328362865f4e301a8a110687083faa1e6f18c
3
+ size 1197789224
train_config.json ADDED
@@ -0,0 +1,217 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "lerobot/aloha_sim_insertion_human",
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
+ "affine": {
62
+ "weight": 1.0,
63
+ "type": "RandomAffine",
64
+ "kwargs": {
65
+ "degrees": [
66
+ -5.0,
67
+ 5.0
68
+ ],
69
+ "translate": [
70
+ 0.05,
71
+ 0.05
72
+ ]
73
+ }
74
+ }
75
+ }
76
+ },
77
+ "revision": null,
78
+ "use_imagenet_stats": true,
79
+ "video_backend": "torchcodec",
80
+ "streaming": false
81
+ },
82
+ "env": null,
83
+ "policy": {
84
+ "type": "smolvla",
85
+ "n_obs_steps": 1,
86
+ "input_features": {
87
+ "observation.images.top": {
88
+ "type": "VISUAL",
89
+ "shape": [
90
+ 3,
91
+ 480,
92
+ 640
93
+ ]
94
+ },
95
+ "observation.state": {
96
+ "type": "STATE",
97
+ "shape": [
98
+ 14
99
+ ]
100
+ }
101
+ },
102
+ "output_features": {
103
+ "action": {
104
+ "type": "ACTION",
105
+ "shape": [
106
+ 14
107
+ ]
108
+ }
109
+ },
110
+ "device": "cuda",
111
+ "use_amp": false,
112
+ "push_to_hub": true,
113
+ "repo_id": "c27e/smolvla_aloha_sim_insertion_human",
114
+ "private": null,
115
+ "tags": null,
116
+ "license": null,
117
+ "pretrained_path": "lerobot/smolvla_base",
118
+ "chunk_size": 50,
119
+ "n_action_steps": 50,
120
+ "normalization_mapping": {
121
+ "VISUAL": "IDENTITY",
122
+ "STATE": "MEAN_STD",
123
+ "ACTION": "MEAN_STD"
124
+ },
125
+ "max_state_dim": 32,
126
+ "max_action_dim": 32,
127
+ "resize_imgs_with_padding": [
128
+ 512,
129
+ 512
130
+ ],
131
+ "empty_cameras": 0,
132
+ "adapt_to_pi_aloha": false,
133
+ "use_delta_joint_actions_aloha": false,
134
+ "tokenizer_max_length": 48,
135
+ "num_steps": 10,
136
+ "use_cache": true,
137
+ "freeze_vision_encoder": true,
138
+ "train_expert_only": true,
139
+ "train_state_proj": true,
140
+ "optimizer_lr": 0.0001,
141
+ "optimizer_betas": [
142
+ 0.9,
143
+ 0.95
144
+ ],
145
+ "optimizer_eps": 1e-08,
146
+ "optimizer_weight_decay": 1e-10,
147
+ "optimizer_grad_clip_norm": 10,
148
+ "scheduler_warmup_steps": 1000,
149
+ "scheduler_decay_steps": 30000,
150
+ "scheduler_decay_lr": 2.5e-06,
151
+ "vlm_model_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct",
152
+ "load_vlm_weights": false,
153
+ "add_image_special_tokens": false,
154
+ "attention_mode": "cross_attn",
155
+ "prefix_length": -1,
156
+ "pad_language_to": "longest",
157
+ "num_expert_layers": -1,
158
+ "num_vlm_layers": 16,
159
+ "self_attn_every_n_layers": 2,
160
+ "expert_width_multiplier": 0.75,
161
+ "min_period": 0.004,
162
+ "max_period": 4.0,
163
+ "rtc_config": null
164
+ },
165
+ "output_dir": "outputs/train/2025-12-26/14-22-35_smolvla",
166
+ "job_name": "smolvla",
167
+ "resume": false,
168
+ "seed": 1000,
169
+ "num_workers": 4,
170
+ "batch_size": 32,
171
+ "steps": 20000,
172
+ "eval_freq": 20000,
173
+ "log_freq": 200,
174
+ "tolerance_s": 0.0001,
175
+ "save_checkpoint": true,
176
+ "save_freq": 20000,
177
+ "use_policy_training_preset": true,
178
+ "optimizer": {
179
+ "type": "adamw",
180
+ "lr": 0.0001,
181
+ "weight_decay": 1e-10,
182
+ "grad_clip_norm": 10,
183
+ "betas": [
184
+ 0.9,
185
+ 0.95
186
+ ],
187
+ "eps": 1e-08
188
+ },
189
+ "scheduler": {
190
+ "type": "cosine_decay_with_warmup",
191
+ "num_warmup_steps": 1000,
192
+ "num_decay_steps": 30000,
193
+ "peak_lr": 0.0001,
194
+ "decay_lr": 2.5e-06
195
+ },
196
+ "eval": {
197
+ "n_episodes": 50,
198
+ "batch_size": 50,
199
+ "use_async_envs": false
200
+ },
201
+ "wandb": {
202
+ "enable": true,
203
+ "disable_artifact": true,
204
+ "project": "lerobot",
205
+ "entity": null,
206
+ "notes": null,
207
+ "run_id": "dwk93103",
208
+ "mode": null
209
+ },
210
+ "use_rabc": false,
211
+ "rabc_progress_path": null,
212
+ "rabc_kappa": 0.01,
213
+ "rabc_epsilon": 1e-06,
214
+ "rabc_head_mode": "sparse",
215
+ "rename_map": {},
216
+ "checkpoint_path": null
217
+ }