Robotics
LeRobot
Safetensors
act
AriRyo commited on
Commit
882c86a
·
verified ·
1 Parent(s): a442e55

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +62 -0
  2. config.json +71 -0
  3. model.safetensors +3 -0
  4. train_config.json +238 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets: AriRyo/blockpick_gray_03
3
+ library_name: lerobot
4
+ license: apache-2.0
5
+ model_name: act
6
+ pipeline_tag: robotics
7
+ tags:
8
+ - act
9
+ - robotics
10
+ - lerobot
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,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "act",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.state": {
6
+ "type": "STATE",
7
+ "shape": [
8
+ 6
9
+ ]
10
+ },
11
+ "observation.images.above": {
12
+ "type": "VISUAL",
13
+ "shape": [
14
+ 3,
15
+ 480,
16
+ 640
17
+ ]
18
+ },
19
+ "observation.images.side": {
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": false,
38
+ "use_peft": false,
39
+ "push_to_hub": true,
40
+ "repo_id": "AriRyo/blockpick_gray_act_36",
41
+ "private": null,
42
+ "tags": null,
43
+ "license": null,
44
+ "pretrained_path": null,
45
+ "chunk_size": 100,
46
+ "n_action_steps": 100,
47
+ "normalization_mapping": {
48
+ "VISUAL": "MEAN_STD",
49
+ "STATE": "MEAN_STD",
50
+ "ACTION": "MEAN_STD"
51
+ },
52
+ "vision_backbone": "resnet18",
53
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
54
+ "replace_final_stride_with_dilation": false,
55
+ "pre_norm": false,
56
+ "dim_model": 512,
57
+ "n_heads": 8,
58
+ "dim_feedforward": 3200,
59
+ "feedforward_activation": "relu",
60
+ "n_encoder_layers": 4,
61
+ "n_decoder_layers": 1,
62
+ "use_vae": true,
63
+ "latent_dim": 32,
64
+ "n_vae_encoder_layers": 4,
65
+ "temporal_ensemble_coeff": null,
66
+ "dropout": 0.1,
67
+ "kl_weight": 10.0,
68
+ "optimizer_lr": 1e-05,
69
+ "optimizer_weight_decay": 0.0001,
70
+ "optimizer_lr_backbone": 1e-05
71
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22f105be63db42b9345c5dc2b592b3458fae1240fb8393f7bd1519a8c1c3fe02
3
+ size 206699736
train_config.json ADDED
@@ -0,0 +1,238 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "AriRyo/blockpick_gray_03",
4
+ "root": null,
5
+ "episodes": [
6
+ 0,
7
+ 1,
8
+ 2,
9
+ 3,
10
+ 4,
11
+ 5,
12
+ 6,
13
+ 7,
14
+ 8,
15
+ 9,
16
+ 10,
17
+ 11,
18
+ 12,
19
+ 13,
20
+ 14,
21
+ 15,
22
+ 16,
23
+ 17,
24
+ 18,
25
+ 19,
26
+ 20,
27
+ 21,
28
+ 22,
29
+ 23,
30
+ 24,
31
+ 25,
32
+ 26,
33
+ 27,
34
+ 28,
35
+ 29,
36
+ 30,
37
+ 31,
38
+ 32,
39
+ 33,
40
+ 34,
41
+ 35
42
+ ],
43
+ "image_transforms": {
44
+ "enable": false,
45
+ "max_num_transforms": 3,
46
+ "random_order": false,
47
+ "tfs": {
48
+ "brightness": {
49
+ "weight": 1.0,
50
+ "type": "ColorJitter",
51
+ "kwargs": {
52
+ "brightness": [
53
+ 0.8,
54
+ 1.2
55
+ ]
56
+ }
57
+ },
58
+ "contrast": {
59
+ "weight": 1.0,
60
+ "type": "ColorJitter",
61
+ "kwargs": {
62
+ "contrast": [
63
+ 0.8,
64
+ 1.2
65
+ ]
66
+ }
67
+ },
68
+ "saturation": {
69
+ "weight": 1.0,
70
+ "type": "ColorJitter",
71
+ "kwargs": {
72
+ "saturation": [
73
+ 0.5,
74
+ 1.5
75
+ ]
76
+ }
77
+ },
78
+ "hue": {
79
+ "weight": 1.0,
80
+ "type": "ColorJitter",
81
+ "kwargs": {
82
+ "hue": [
83
+ -0.05,
84
+ 0.05
85
+ ]
86
+ }
87
+ },
88
+ "sharpness": {
89
+ "weight": 1.0,
90
+ "type": "SharpnessJitter",
91
+ "kwargs": {
92
+ "sharpness": [
93
+ 0.5,
94
+ 1.5
95
+ ]
96
+ }
97
+ },
98
+ "affine": {
99
+ "weight": 1.0,
100
+ "type": "RandomAffine",
101
+ "kwargs": {
102
+ "degrees": [
103
+ -5.0,
104
+ 5.0
105
+ ],
106
+ "translate": [
107
+ 0.05,
108
+ 0.05
109
+ ]
110
+ }
111
+ }
112
+ }
113
+ },
114
+ "revision": null,
115
+ "use_imagenet_stats": true,
116
+ "video_backend": "torchcodec",
117
+ "streaming": false
118
+ },
119
+ "env": null,
120
+ "policy": {
121
+ "type": "act",
122
+ "n_obs_steps": 1,
123
+ "input_features": {
124
+ "observation.state": {
125
+ "type": "STATE",
126
+ "shape": [
127
+ 6
128
+ ]
129
+ },
130
+ "observation.images.above": {
131
+ "type": "VISUAL",
132
+ "shape": [
133
+ 3,
134
+ 480,
135
+ 640
136
+ ]
137
+ },
138
+ "observation.images.side": {
139
+ "type": "VISUAL",
140
+ "shape": [
141
+ 3,
142
+ 480,
143
+ 640
144
+ ]
145
+ }
146
+ },
147
+ "output_features": {
148
+ "action": {
149
+ "type": "ACTION",
150
+ "shape": [
151
+ 6
152
+ ]
153
+ }
154
+ },
155
+ "device": "cuda",
156
+ "use_amp": false,
157
+ "use_peft": false,
158
+ "push_to_hub": true,
159
+ "repo_id": "AriRyo/blockpick_gray_act_36",
160
+ "private": null,
161
+ "tags": null,
162
+ "license": null,
163
+ "pretrained_path": null,
164
+ "chunk_size": 100,
165
+ "n_action_steps": 100,
166
+ "normalization_mapping": {
167
+ "VISUAL": "MEAN_STD",
168
+ "STATE": "MEAN_STD",
169
+ "ACTION": "MEAN_STD"
170
+ },
171
+ "vision_backbone": "resnet18",
172
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
173
+ "replace_final_stride_with_dilation": false,
174
+ "pre_norm": false,
175
+ "dim_model": 512,
176
+ "n_heads": 8,
177
+ "dim_feedforward": 3200,
178
+ "feedforward_activation": "relu",
179
+ "n_encoder_layers": 4,
180
+ "n_decoder_layers": 1,
181
+ "use_vae": true,
182
+ "latent_dim": 32,
183
+ "n_vae_encoder_layers": 4,
184
+ "temporal_ensemble_coeff": null,
185
+ "dropout": 0.1,
186
+ "kl_weight": 10.0,
187
+ "optimizer_lr": 1e-05,
188
+ "optimizer_weight_decay": 0.0001,
189
+ "optimizer_lr_backbone": 1e-05
190
+ },
191
+ "output_dir": "outputs/train/blockpick_gray_act_36",
192
+ "job_name": "blockpick_gray_act_36",
193
+ "resume": false,
194
+ "seed": 1000,
195
+ "num_workers": 4,
196
+ "batch_size": 8,
197
+ "steps": 100000,
198
+ "eval_freq": 20000,
199
+ "log_freq": 200,
200
+ "tolerance_s": 0.0001,
201
+ "save_checkpoint": true,
202
+ "save_freq": 20000,
203
+ "use_policy_training_preset": true,
204
+ "optimizer": {
205
+ "type": "adamw",
206
+ "lr": 1e-05,
207
+ "weight_decay": 0.0001,
208
+ "grad_clip_norm": 10.0,
209
+ "betas": [
210
+ 0.9,
211
+ 0.999
212
+ ],
213
+ "eps": 1e-08
214
+ },
215
+ "scheduler": null,
216
+ "eval": {
217
+ "n_episodes": 50,
218
+ "batch_size": 50,
219
+ "use_async_envs": false
220
+ },
221
+ "wandb": {
222
+ "enable": true,
223
+ "disable_artifact": true,
224
+ "project": "lerobot",
225
+ "entity": null,
226
+ "notes": null,
227
+ "run_id": "heaqqvg3",
228
+ "mode": null
229
+ },
230
+ "peft": null,
231
+ "use_rabc": false,
232
+ "rabc_progress_path": null,
233
+ "rabc_kappa": 0.01,
234
+ "rabc_epsilon": 1e-06,
235
+ "rabc_head_mode": "sparse",
236
+ "rename_map": {},
237
+ "checkpoint_path": null
238
+ }