Robotics
LeRobot
Safetensors
vla0_smol
olegbalakhnov commited on
Commit
b271209
·
verified ·
1 Parent(s): 7b2453c

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +62 -0
  2. config.json +83 -0
  3. model.safetensors +3 -0
  4. train_config.json +213 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets: HuggingFaceVLA/libero
3
+ library_name: lerobot
4
+ license: apache-2.0
5
+ model_name: vla0
6
+ pipeline_tag: robotics
7
+ tags:
8
+ - lerobot
9
+ - robotics
10
+ - vla0
11
+ ---
12
+
13
+ # Model Card for vla0
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+ _Model type not recognized — please update this template._
19
+
20
+
21
+ This policy has been trained and pushed to the Hub using [LeRobot](https://github.com/huggingface/lerobot).
22
+ See the full documentation at [LeRobot Docs](https://huggingface.co/docs/lerobot/index).
23
+
24
+ ---
25
+
26
+ ## How to Get Started with the Model
27
+
28
+ For a complete walkthrough, see the [training guide](https://huggingface.co/docs/lerobot/il_robots#train-a-policy).
29
+ Below is the short version on how to train and run inference/eval:
30
+
31
+ ### Train from scratch
32
+
33
+ ```bash
34
+ lerobot-train \
35
+ --dataset.repo_id=${HF_USER}/<dataset> \
36
+ --policy.type=act \
37
+ --output_dir=outputs/train/<desired_policy_repo_id> \
38
+ --job_name=lerobot_training \
39
+ --policy.device=cuda \
40
+ --policy.repo_id=${HF_USER}/<desired_policy_repo_id>
41
+ --wandb.enable=true
42
+ ```
43
+
44
+ _Writes checkpoints to `outputs/train/<desired_policy_repo_id>/checkpoints/`._
45
+
46
+ ### Evaluate the policy/run inference
47
+
48
+ ```bash
49
+ lerobot-record \
50
+ --robot.type=so100_follower \
51
+ --dataset.repo_id=<hf_user>/eval_<dataset> \
52
+ --policy.path=<hf_user>/<desired_policy_repo_id> \
53
+ --episodes=10
54
+ ```
55
+
56
+ Prefix the dataset repo with **eval\_** and supply `--policy.path` pointing to a local or hub checkpoint.
57
+
58
+ ---
59
+
60
+ ## Model Details
61
+
62
+ - **License:** apache-2.0
config.json ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "vla0",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.images.image": {
6
+ "type": "VISUAL",
7
+ "shape": [
8
+ 3,
9
+ 256,
10
+ 256
11
+ ]
12
+ },
13
+ "observation.images.image2": {
14
+ "type": "VISUAL",
15
+ "shape": [
16
+ 3,
17
+ 256,
18
+ 256
19
+ ]
20
+ },
21
+ "observation.state": {
22
+ "type": "STATE",
23
+ "shape": [
24
+ 8
25
+ ]
26
+ }
27
+ },
28
+ "output_features": {
29
+ "action": {
30
+ "type": "ACTION",
31
+ "shape": [
32
+ 7
33
+ ]
34
+ }
35
+ },
36
+ "device": "cuda",
37
+ "use_amp": true,
38
+ "amp_dtype": "bf16",
39
+ "push_to_hub": true,
40
+ "repo_id": "olegbalakhnov/libero_vla0_final",
41
+ "private": null,
42
+ "tags": null,
43
+ "license": null,
44
+ "pretrained_path": null,
45
+ "chunk_size": 8,
46
+ "n_action_steps": 8,
47
+ "ensemble_size": 0,
48
+ "normalization_mapping": {
49
+ "VISUAL": "IDENTITY",
50
+ "STATE": "MIN_MAX",
51
+ "ACTION": "MIN_MAX"
52
+ },
53
+ "n_action_bins": 512,
54
+ "n_state_bins": 512,
55
+ "max_decoding_steps": 512,
56
+ "use_cache": true,
57
+ "optimizer_lr": 5e-05,
58
+ "optimizer_betas": [
59
+ 0.9,
60
+ 0.95
61
+ ],
62
+ "optimizer_eps": 1e-08,
63
+ "optimizer_weight_decay": 0.01,
64
+ "scheduler_warmup_steps": 1000,
65
+ "scheduler_decay_steps": 100000,
66
+ "scheduler_decay_lr": 5e-06,
67
+ "checkpoint_path": null,
68
+ "vlm_checkpoint": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct",
69
+ "precision": "float32",
70
+ "freeze_vision_encoder": false,
71
+ "do_image_splitting": false,
72
+ "drop_n_last_frames": 1,
73
+ "relative_actions": false,
74
+ "use_state": true,
75
+ "start_actions_token": 49279,
76
+ "grad_clip_norm": 1.0,
77
+ "action_mask_aug_per": 0.15,
78
+ "action_mask_skip_per": 0.1,
79
+ "crop_shape": [
80
+ 230,
81
+ 230
82
+ ]
83
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c9b0a0db020cfbbccf06a761c864a860f90bbc0d43a2f5a19cdda2a1bb3ff4d
3
+ size 2030003168
train_config.json ADDED
@@ -0,0 +1,213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "HuggingFaceVLA/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
+ "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": "vla0",
85
+ "n_obs_steps": 1,
86
+ "input_features": {
87
+ "observation.images.image": {
88
+ "type": "VISUAL",
89
+ "shape": [
90
+ 3,
91
+ 256,
92
+ 256
93
+ ]
94
+ },
95
+ "observation.images.image2": {
96
+ "type": "VISUAL",
97
+ "shape": [
98
+ 3,
99
+ 256,
100
+ 256
101
+ ]
102
+ },
103
+ "observation.state": {
104
+ "type": "STATE",
105
+ "shape": [
106
+ 8
107
+ ]
108
+ }
109
+ },
110
+ "output_features": {
111
+ "action": {
112
+ "type": "ACTION",
113
+ "shape": [
114
+ 7
115
+ ]
116
+ }
117
+ },
118
+ "device": "cuda",
119
+ "use_amp": true,
120
+ "amp_dtype": "bf16",
121
+ "push_to_hub": true,
122
+ "repo_id": "olegbalakhnov/libero_vla0_final",
123
+ "private": null,
124
+ "tags": null,
125
+ "license": null,
126
+ "pretrained_path": null,
127
+ "chunk_size": 8,
128
+ "n_action_steps": 8,
129
+ "ensemble_size": 0,
130
+ "normalization_mapping": {
131
+ "VISUAL": "IDENTITY",
132
+ "STATE": "MIN_MAX",
133
+ "ACTION": "MIN_MAX"
134
+ },
135
+ "n_action_bins": 512,
136
+ "n_state_bins": 512,
137
+ "max_decoding_steps": 512,
138
+ "use_cache": true,
139
+ "optimizer_lr": 5e-05,
140
+ "optimizer_betas": [
141
+ 0.9,
142
+ 0.95
143
+ ],
144
+ "optimizer_eps": 1e-08,
145
+ "optimizer_weight_decay": 0.01,
146
+ "scheduler_warmup_steps": 1000,
147
+ "scheduler_decay_steps": 100000,
148
+ "scheduler_decay_lr": 5e-06,
149
+ "checkpoint_path": null,
150
+ "vlm_checkpoint": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct",
151
+ "precision": "float32",
152
+ "freeze_vision_encoder": false,
153
+ "do_image_splitting": false,
154
+ "drop_n_last_frames": 1,
155
+ "relative_actions": false,
156
+ "use_state": true,
157
+ "start_actions_token": 49279,
158
+ "grad_clip_norm": 1.0,
159
+ "action_mask_aug_per": 0.15,
160
+ "action_mask_skip_per": 0.1,
161
+ "crop_shape": [
162
+ 230,
163
+ 230
164
+ ]
165
+ },
166
+ "output_dir": "outputs/train/2025-12-09/23-23-58_vla0",
167
+ "job_name": "vla0",
168
+ "resume": false,
169
+ "seed": 1000,
170
+ "num_workers": 8,
171
+ "batch_size": 24,
172
+ "steps": 100000,
173
+ "eval_freq": 25000,
174
+ "log_freq": 200,
175
+ "save_checkpoint": true,
176
+ "save_freq": 25000,
177
+ "profile_step_num": -1,
178
+ "use_policy_training_preset": true,
179
+ "optimizer": {
180
+ "type": "adamw",
181
+ "lr": 5e-05,
182
+ "weight_decay": 0.01,
183
+ "grad_clip_norm": 1.0,
184
+ "betas": [
185
+ 0.9,
186
+ 0.95
187
+ ],
188
+ "eps": 1e-08
189
+ },
190
+ "scheduler": {
191
+ "type": "cosine_decay_with_warmup",
192
+ "num_warmup_steps": 1000,
193
+ "num_decay_steps": 100000,
194
+ "peak_lr": 5e-05,
195
+ "decay_lr": 5e-06
196
+ },
197
+ "eval": {
198
+ "n_episodes": 4,
199
+ "batch_size": 4,
200
+ "use_async_envs": false
201
+ },
202
+ "wandb": {
203
+ "enable": true,
204
+ "disable_artifact": false,
205
+ "project": "lerobot",
206
+ "entity": null,
207
+ "notes": null,
208
+ "run_id": "wix4h6e7",
209
+ "mode": null
210
+ },
211
+ "checkpoint_path": null,
212
+ "rename_map": {}
213
+ }