Robotics
LeRobot
Safetensors
evo1
imstevenpmwork HF Staff commited on
Commit
039a209
·
verified ·
1 Parent(s): 81276f7

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +62 -0
  2. config.json +101 -0
  3. model.safetensors +3 -0
  4. train_config.json +236 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets: imstevenpmwork/super_chatton
3
+ library_name: lerobot
4
+ license: apache-2.0
5
+ model_name: evo1
6
+ pipeline_tag: robotics
7
+ tags:
8
+ - robotics
9
+ - evo1
10
+ - lerobot
11
+ ---
12
+
13
+ # Model Card for evo1
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,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "evo1",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.state": {
6
+ "type": "STATE",
7
+ "shape": [
8
+ 6
9
+ ]
10
+ },
11
+ "observation.images.front": {
12
+ "type": "VISUAL",
13
+ "shape": [
14
+ 3,
15
+ 480,
16
+ 640
17
+ ]
18
+ },
19
+ "observation.images.wrist": {
20
+ "type": "VISUAL",
21
+ "shape": [
22
+ 3,
23
+ 480,
24
+ 640
25
+ ]
26
+ }
27
+ },
28
+ "output_features": {
29
+ "action": {
30
+ "type": "ACTION",
31
+ "shape": [
32
+ 6
33
+ ]
34
+ }
35
+ },
36
+ "device": "cuda",
37
+ "use_amp": true,
38
+ "use_peft": false,
39
+ "push_to_hub": true,
40
+ "repo_id": "imstevenpmwork/super_chatton_evo2",
41
+ "private": null,
42
+ "tags": null,
43
+ "license": null,
44
+ "pretrained_path": null,
45
+ "training_stage": "stage2",
46
+ "chunk_size": 50,
47
+ "n_action_steps": 50,
48
+ "max_state_dim": 6,
49
+ "max_action_dim": 6,
50
+ "max_views": 3,
51
+ "image_resolution": [
52
+ 448,
53
+ 448
54
+ ],
55
+ "empty_cameras": 0,
56
+ "postprocess_action_dim": null,
57
+ "binarize_gripper": false,
58
+ "gripper_index": 6,
59
+ "gripper_threshold": 0.5,
60
+ "gripper_below_threshold_value": 1.0,
61
+ "gripper_above_threshold_value": -1.0,
62
+ "normalization_mapping": {
63
+ "VISUAL": "IDENTITY",
64
+ "STATE": "MIN_MAX",
65
+ "ACTION": "MIN_MAX"
66
+ },
67
+ "vlm_model_name": "OpenGVLab/InternVL3-1B-hf",
68
+ "vlm_num_layers": 14,
69
+ "vlm_dtype": "bfloat16",
70
+ "use_flash_attn": true,
71
+ "action_head": "flowmatching",
72
+ "embed_dim": 896,
73
+ "hidden_dim": 1024,
74
+ "state_hidden_dim": 1024,
75
+ "num_heads": 8,
76
+ "num_layers": 8,
77
+ "dropout": 0.0,
78
+ "num_inference_timesteps": 32,
79
+ "num_categories": 1,
80
+ "return_cls_only": false,
81
+ "enable_gradient_checkpointing": true,
82
+ "gradient_checkpointing_use_reentrant": false,
83
+ "finetune_vlm": true,
84
+ "finetune_language_model": true,
85
+ "finetune_vision_model": true,
86
+ "finetune_action_head": true,
87
+ "apply_training_stage_defaults": true,
88
+ "task_field": "task",
89
+ "embodiment_id_field": null,
90
+ "default_embodiment_id": 0,
91
+ "optimizer_lr": 0.0001,
92
+ "optimizer_betas": [
93
+ 0.9,
94
+ 0.999
95
+ ],
96
+ "optimizer_eps": 1e-08,
97
+ "optimizer_weight_decay": 1e-05,
98
+ "optimizer_grad_clip_norm": 1.0,
99
+ "scheduler_warmup_steps": 1000,
100
+ "drop_last": true
101
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f95c26cf6b776e9dbdacc42dfb2f8ed9257f94e6d811b99e44e060335a5d6b3
3
+ size 1794493536
train_config.json ADDED
@@ -0,0 +1,236 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "imstevenpmwork/super_chatton",
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": false,
79
+ "video_backend": "torchcodec",
80
+ "return_uint8": false,
81
+ "streaming": false
82
+ },
83
+ "env": null,
84
+ "policy": {
85
+ "type": "evo1",
86
+ "n_obs_steps": 1,
87
+ "input_features": {
88
+ "observation.state": {
89
+ "type": "STATE",
90
+ "shape": [
91
+ 6
92
+ ]
93
+ },
94
+ "observation.images.front": {
95
+ "type": "VISUAL",
96
+ "shape": [
97
+ 3,
98
+ 480,
99
+ 640
100
+ ]
101
+ },
102
+ "observation.images.wrist": {
103
+ "type": "VISUAL",
104
+ "shape": [
105
+ 3,
106
+ 480,
107
+ 640
108
+ ]
109
+ }
110
+ },
111
+ "output_features": {
112
+ "action": {
113
+ "type": "ACTION",
114
+ "shape": [
115
+ 6
116
+ ]
117
+ }
118
+ },
119
+ "device": "cuda",
120
+ "use_amp": true,
121
+ "use_peft": false,
122
+ "push_to_hub": true,
123
+ "repo_id": "imstevenpmwork/super_chatton_evo2",
124
+ "private": null,
125
+ "tags": null,
126
+ "license": null,
127
+ "pretrained_path": null,
128
+ "training_stage": "stage2",
129
+ "chunk_size": 50,
130
+ "n_action_steps": 50,
131
+ "max_state_dim": 6,
132
+ "max_action_dim": 6,
133
+ "max_views": 3,
134
+ "image_resolution": [
135
+ 448,
136
+ 448
137
+ ],
138
+ "empty_cameras": 0,
139
+ "postprocess_action_dim": null,
140
+ "binarize_gripper": false,
141
+ "gripper_index": 6,
142
+ "gripper_threshold": 0.5,
143
+ "gripper_below_threshold_value": 1.0,
144
+ "gripper_above_threshold_value": -1.0,
145
+ "normalization_mapping": {
146
+ "VISUAL": "IDENTITY",
147
+ "STATE": "MIN_MAX",
148
+ "ACTION": "MIN_MAX"
149
+ },
150
+ "vlm_model_name": "OpenGVLab/InternVL3-1B-hf",
151
+ "vlm_num_layers": 14,
152
+ "vlm_dtype": "bfloat16",
153
+ "use_flash_attn": true,
154
+ "action_head": "flowmatching",
155
+ "embed_dim": 896,
156
+ "hidden_dim": 1024,
157
+ "state_hidden_dim": 1024,
158
+ "num_heads": 8,
159
+ "num_layers": 8,
160
+ "dropout": 0.0,
161
+ "num_inference_timesteps": 32,
162
+ "num_categories": 1,
163
+ "return_cls_only": false,
164
+ "enable_gradient_checkpointing": true,
165
+ "gradient_checkpointing_use_reentrant": false,
166
+ "finetune_vlm": true,
167
+ "finetune_language_model": true,
168
+ "finetune_vision_model": true,
169
+ "finetune_action_head": true,
170
+ "apply_training_stage_defaults": true,
171
+ "task_field": "task",
172
+ "embodiment_id_field": null,
173
+ "default_embodiment_id": 0,
174
+ "optimizer_lr": 0.0001,
175
+ "optimizer_betas": [
176
+ 0.9,
177
+ 0.999
178
+ ],
179
+ "optimizer_eps": 1e-08,
180
+ "optimizer_weight_decay": 1e-05,
181
+ "optimizer_grad_clip_norm": 1.0,
182
+ "scheduler_warmup_steps": 1000,
183
+ "drop_last": true
184
+ },
185
+ "reward_model": null,
186
+ "output_dir": "outputs/train/2026-07-01/22-47-07_evo1",
187
+ "job_name": "evo1",
188
+ "resume": false,
189
+ "seed": 1000,
190
+ "cudnn_deterministic": false,
191
+ "num_workers": 4,
192
+ "batch_size": 32,
193
+ "prefetch_factor": 4,
194
+ "persistent_workers": true,
195
+ "steps": 8000,
196
+ "eval_freq": 20000,
197
+ "log_freq": 80,
198
+ "tolerance_s": 0.0001,
199
+ "save_checkpoint": true,
200
+ "save_freq": 4000,
201
+ "use_policy_training_preset": true,
202
+ "optimizer": {
203
+ "type": "adamw",
204
+ "lr": 0.0001,
205
+ "weight_decay": 1e-05,
206
+ "grad_clip_norm": 1.0,
207
+ "betas": [
208
+ 0.9,
209
+ 0.999
210
+ ],
211
+ "eps": 1e-08
212
+ },
213
+ "scheduler": {
214
+ "type": "evo1_exact",
215
+ "num_warmup_steps": 1000
216
+ },
217
+ "eval": {
218
+ "n_episodes": 50,
219
+ "batch_size": 50,
220
+ "use_async_envs": true
221
+ },
222
+ "wandb": {
223
+ "enable": true,
224
+ "disable_artifact": true,
225
+ "project": "lerobot",
226
+ "entity": null,
227
+ "notes": null,
228
+ "run_id": "nmquirjw",
229
+ "mode": null,
230
+ "add_tags": true
231
+ },
232
+ "peft": null,
233
+ "sample_weighting": null,
234
+ "rename_map": {},
235
+ "checkpoint_path": null
236
+ }