Robotics
LeRobot
Safetensors
act
mpreda commited on
Commit
057f066
·
verified ·
1 Parent(s): 3124321

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +62 -0
  2. config.json +63 -0
  3. model.safetensors +3 -0
  4. train_config.json +234 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets: lerobot/aloha_sim_transfer_cube_human
3
+ library_name: lerobot
4
+ license: apache-2.0
5
+ model_name: act
6
+ pipeline_tag: robotics
7
+ tags:
8
+ - lerobot
9
+ - act
10
+ - robotics
11
+ ---
12
+
13
+ # Model Card for act
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+ [Action Chunking with Transformers (ACT)](https://huggingface.co/papers/2304.13705) is an imitation-learning method that predicts short action chunks instead of single steps. It learns from teleoperated data and often achieves high success rates.
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,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "act",
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
+ "use_peft": false,
31
+ "push_to_hub": true,
32
+ "repo_id": "mpreda/act_aloha_transfer_cube",
33
+ "private": false,
34
+ "tags": null,
35
+ "license": null,
36
+ "pretrained_path": "/content/drive/MyDrive/Colab Notebooks/matteo_notebook/act_aloha_transfer_cube/checkpoints/020000/pretrained_model",
37
+ "chunk_size": 100,
38
+ "n_action_steps": 100,
39
+ "normalization_mapping": {
40
+ "VISUAL": "MEAN_STD",
41
+ "STATE": "MEAN_STD",
42
+ "ACTION": "MEAN_STD"
43
+ },
44
+ "vision_backbone": "resnet18",
45
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
46
+ "replace_final_stride_with_dilation": 0,
47
+ "pre_norm": false,
48
+ "dim_model": 512,
49
+ "n_heads": 8,
50
+ "dim_feedforward": 3200,
51
+ "feedforward_activation": "relu",
52
+ "n_encoder_layers": 4,
53
+ "n_decoder_layers": 1,
54
+ "use_vae": true,
55
+ "latent_dim": 32,
56
+ "n_vae_encoder_layers": 4,
57
+ "temporal_ensemble_coeff": null,
58
+ "dropout": 0.1,
59
+ "kl_weight": 10.0,
60
+ "optimizer_lr": 1e-05,
61
+ "optimizer_weight_decay": 0.0001,
62
+ "optimizer_lr_backbone": 1e-05
63
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68e09ad8ebec12b6e983ef5ae6a41a46f4c0c8f1cbe0a5b08f055251bc7f3d41
3
+ size 206765304
train_config.json ADDED
@@ -0,0 +1,234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "lerobot/aloha_sim_transfer_cube_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
+ "return_uint8": false,
81
+ "streaming": false
82
+ },
83
+ "env": {
84
+ "type": "aloha",
85
+ "task": "AlohaInsertion-v0",
86
+ "fps": 50,
87
+ "features": {
88
+ "action": {
89
+ "type": "ACTION",
90
+ "shape": [
91
+ 14
92
+ ]
93
+ },
94
+ "agent_pos": {
95
+ "type": "STATE",
96
+ "shape": [
97
+ 14
98
+ ]
99
+ },
100
+ "pixels/top": {
101
+ "type": "VISUAL",
102
+ "shape": [
103
+ 480,
104
+ 640,
105
+ 3
106
+ ]
107
+ }
108
+ },
109
+ "features_map": {
110
+ "action": "action",
111
+ "agent_pos": "observation.state",
112
+ "top": "observation.image.top",
113
+ "pixels/top": "observation.images.top"
114
+ },
115
+ "max_parallel_tasks": 1,
116
+ "disable_env_checker": true,
117
+ "episode_length": 400,
118
+ "obs_type": "pixels_agent_pos",
119
+ "observation_height": 480,
120
+ "observation_width": 640,
121
+ "render_mode": "rgb_array"
122
+ },
123
+ "policy": {
124
+ "type": "act",
125
+ "n_obs_steps": 1,
126
+ "input_features": {
127
+ "observation.images.top": {
128
+ "type": "VISUAL",
129
+ "shape": [
130
+ 3,
131
+ 480,
132
+ 640
133
+ ]
134
+ },
135
+ "observation.state": {
136
+ "type": "STATE",
137
+ "shape": [
138
+ 14
139
+ ]
140
+ }
141
+ },
142
+ "output_features": {
143
+ "action": {
144
+ "type": "ACTION",
145
+ "shape": [
146
+ 14
147
+ ]
148
+ }
149
+ },
150
+ "device": "cuda",
151
+ "use_amp": false,
152
+ "use_peft": false,
153
+ "push_to_hub": true,
154
+ "repo_id": "mpreda/act_aloha_transfer_cube",
155
+ "private": false,
156
+ "tags": null,
157
+ "license": null,
158
+ "pretrained_path": "/content/drive/MyDrive/Colab Notebooks/matteo_notebook/act_aloha_transfer_cube/checkpoints/020000/pretrained_model",
159
+ "chunk_size": 100,
160
+ "n_action_steps": 100,
161
+ "normalization_mapping": {
162
+ "VISUAL": "MEAN_STD",
163
+ "STATE": "MEAN_STD",
164
+ "ACTION": "MEAN_STD"
165
+ },
166
+ "vision_backbone": "resnet18",
167
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
168
+ "replace_final_stride_with_dilation": 0,
169
+ "pre_norm": false,
170
+ "dim_model": 512,
171
+ "n_heads": 8,
172
+ "dim_feedforward": 3200,
173
+ "feedforward_activation": "relu",
174
+ "n_encoder_layers": 4,
175
+ "n_decoder_layers": 1,
176
+ "use_vae": true,
177
+ "latent_dim": 32,
178
+ "n_vae_encoder_layers": 4,
179
+ "temporal_ensemble_coeff": null,
180
+ "dropout": 0.1,
181
+ "kl_weight": 10.0,
182
+ "optimizer_lr": 1e-05,
183
+ "optimizer_weight_decay": 0.0001,
184
+ "optimizer_lr_backbone": 1e-05
185
+ },
186
+ "reward_model": null,
187
+ "output_dir": "/content/drive/MyDrive/Colab Notebooks/matteo_notebook/act_aloha_transfer_cube",
188
+ "job_name": "aloha_act",
189
+ "resume": true,
190
+ "seed": 1000,
191
+ "cudnn_deterministic": false,
192
+ "num_workers": 2,
193
+ "batch_size": 8,
194
+ "prefetch_factor": 4,
195
+ "persistent_workers": true,
196
+ "steps": 20000,
197
+ "eval_freq": 15000,
198
+ "log_freq": 200,
199
+ "tolerance_s": 0.0001,
200
+ "save_checkpoint": true,
201
+ "save_freq": 10000,
202
+ "use_policy_training_preset": true,
203
+ "optimizer": {
204
+ "type": "adamw",
205
+ "lr": 1e-05,
206
+ "weight_decay": 0.0001,
207
+ "grad_clip_norm": 10.0,
208
+ "betas": [
209
+ 0.9,
210
+ 0.999
211
+ ],
212
+ "eps": 1e-08
213
+ },
214
+ "scheduler": null,
215
+ "eval": {
216
+ "n_episodes": 5,
217
+ "batch_size": 1,
218
+ "use_async_envs": false
219
+ },
220
+ "wandb": {
221
+ "enable": false,
222
+ "disable_artifact": false,
223
+ "project": "lerobot",
224
+ "entity": null,
225
+ "notes": null,
226
+ "run_id": null,
227
+ "mode": null,
228
+ "add_tags": true
229
+ },
230
+ "peft": null,
231
+ "sample_weighting": null,
232
+ "rename_map": {},
233
+ "checkpoint_path": "/content/drive/MyDrive/Colab Notebooks/matteo_notebook/act_aloha_transfer_cube/checkpoints/020000"
234
+ }