inaas commited on
Commit
a3b78e8
·
verified ·
1 Parent(s): 4c263eb

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +62 -0
  2. config.json +104 -0
  3. model.safetensors +3 -0
  4. train_config.json +239 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets: inaas/mesh_cut
3
+ library_name: lerobot
4
+ license: apache-2.0
5
+ model_name: diffusion
6
+ pipeline_tag: robotics
7
+ tags:
8
+ - robotics
9
+ - lerobot
10
+ - diffusion
11
+ ---
12
+
13
+ # Model Card for diffusion
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+ [Diffusion Policy](https://huggingface.co/papers/2303.04137) treats visuomotor control as a generative diffusion process, producing smooth, multi-step action trajectories that excel at contact-rich manipulation.
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,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "diffusion",
3
+ "n_obs_steps": 2,
4
+ "input_features": {
5
+ "observation.image.cam0": {
6
+ "type": "VISUAL",
7
+ "shape": [
8
+ 3,
9
+ 180,
10
+ 320
11
+ ]
12
+ },
13
+ "observation.image.cam1": {
14
+ "type": "VISUAL",
15
+ "shape": [
16
+ 3,
17
+ 180,
18
+ 320
19
+ ]
20
+ },
21
+ "observation.image.cam2": {
22
+ "type": "VISUAL",
23
+ "shape": [
24
+ 3,
25
+ 180,
26
+ 320
27
+ ]
28
+ },
29
+ "observation.state": {
30
+ "type": "STATE",
31
+ "shape": [
32
+ 3
33
+ ]
34
+ }
35
+ },
36
+ "output_features": {
37
+ "action": {
38
+ "type": "ACTION",
39
+ "shape": [
40
+ 10
41
+ ]
42
+ }
43
+ },
44
+ "device": "cuda",
45
+ "use_amp": false,
46
+ "use_peft": false,
47
+ "push_to_hub": true,
48
+ "repo_id": "inaas/mesh_cut",
49
+ "private": null,
50
+ "tags": null,
51
+ "license": null,
52
+ "pretrained_path": null,
53
+ "horizon": 16,
54
+ "n_action_steps": 8,
55
+ "normalization_mapping": {
56
+ "VISUAL": "MEAN_STD",
57
+ "STATE": "MIN_MAX",
58
+ "ACTION": "MIN_MAX"
59
+ },
60
+ "drop_n_last_frames": 7,
61
+ "vision_backbone": "resnet18",
62
+ "crop_shape": [
63
+ 162,
64
+ 288
65
+ ],
66
+ "crop_is_random": true,
67
+ "pretrained_backbone_weights": null,
68
+ "use_group_norm": true,
69
+ "spatial_softmax_num_keypoints": 32,
70
+ "use_separate_rgb_encoder_per_camera": true,
71
+ "use_vit_encoder": false,
72
+ "vit_embed_dim": 512,
73
+ "vit_depth": 6,
74
+ "vit_num_heads": 8,
75
+ "vit_dropout": 0.1,
76
+ "down_dims": [
77
+ 256,
78
+ 512,
79
+ 1024
80
+ ],
81
+ "kernel_size": 5,
82
+ "n_groups": 8,
83
+ "diffusion_step_embed_dim": 128,
84
+ "use_film_scale_modulation": true,
85
+ "noise_scheduler_type": "DDPM",
86
+ "num_train_timesteps": 100,
87
+ "beta_schedule": "squaredcos_cap_v2",
88
+ "beta_start": 0.0001,
89
+ "beta_end": 0.02,
90
+ "prediction_type": "epsilon",
91
+ "clip_sample": true,
92
+ "clip_sample_range": 1.0,
93
+ "num_inference_steps": 10,
94
+ "do_mask_loss_for_padding": false,
95
+ "optimizer_lr": 0.0001,
96
+ "optimizer_betas": [
97
+ 0.95,
98
+ 0.999
99
+ ],
100
+ "optimizer_eps": 1e-08,
101
+ "optimizer_weight_decay": 1e-06,
102
+ "scheduler_name": "cosine",
103
+ "scheduler_warmup_steps": 500
104
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c13b02d95c26fc969d361efcb881148ad7b425d69a0746c8ae0b2883d02c357f
3
+ size 408752520
train_config.json ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "inaas/mesh_cut",
4
+ "root": null,
5
+ "episodes": null,
6
+ "image_transforms": {
7
+ "enable": true,
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": "diffusion",
85
+ "n_obs_steps": 2,
86
+ "input_features": {
87
+ "observation.image.cam0": {
88
+ "type": "VISUAL",
89
+ "shape": [
90
+ 3,
91
+ 180,
92
+ 320
93
+ ]
94
+ },
95
+ "observation.image.cam1": {
96
+ "type": "VISUAL",
97
+ "shape": [
98
+ 3,
99
+ 180,
100
+ 320
101
+ ]
102
+ },
103
+ "observation.image.cam2": {
104
+ "type": "VISUAL",
105
+ "shape": [
106
+ 3,
107
+ 180,
108
+ 320
109
+ ]
110
+ },
111
+ "observation.state": {
112
+ "type": "STATE",
113
+ "shape": [
114
+ 3
115
+ ]
116
+ }
117
+ },
118
+ "output_features": {
119
+ "action": {
120
+ "type": "ACTION",
121
+ "shape": [
122
+ 10
123
+ ]
124
+ }
125
+ },
126
+ "device": "cuda",
127
+ "use_amp": false,
128
+ "use_peft": false,
129
+ "push_to_hub": true,
130
+ "repo_id": "inaas/mesh_cut",
131
+ "private": null,
132
+ "tags": null,
133
+ "license": null,
134
+ "pretrained_path": null,
135
+ "horizon": 16,
136
+ "n_action_steps": 8,
137
+ "normalization_mapping": {
138
+ "VISUAL": "MEAN_STD",
139
+ "STATE": "MIN_MAX",
140
+ "ACTION": "MIN_MAX"
141
+ },
142
+ "drop_n_last_frames": 7,
143
+ "vision_backbone": "resnet18",
144
+ "crop_shape": [
145
+ 162,
146
+ 288
147
+ ],
148
+ "crop_is_random": true,
149
+ "pretrained_backbone_weights": null,
150
+ "use_group_norm": true,
151
+ "spatial_softmax_num_keypoints": 32,
152
+ "use_separate_rgb_encoder_per_camera": true,
153
+ "use_vit_encoder": false,
154
+ "vit_embed_dim": 512,
155
+ "vit_depth": 6,
156
+ "vit_num_heads": 8,
157
+ "vit_dropout": 0.1,
158
+ "down_dims": [
159
+ 256,
160
+ 512,
161
+ 1024
162
+ ],
163
+ "kernel_size": 5,
164
+ "n_groups": 8,
165
+ "diffusion_step_embed_dim": 128,
166
+ "use_film_scale_modulation": true,
167
+ "noise_scheduler_type": "DDPM",
168
+ "num_train_timesteps": 100,
169
+ "beta_schedule": "squaredcos_cap_v2",
170
+ "beta_start": 0.0001,
171
+ "beta_end": 0.02,
172
+ "prediction_type": "epsilon",
173
+ "clip_sample": true,
174
+ "clip_sample_range": 1.0,
175
+ "num_inference_steps": 10,
176
+ "do_mask_loss_for_padding": false,
177
+ "optimizer_lr": 0.0001,
178
+ "optimizer_betas": [
179
+ 0.95,
180
+ 0.999
181
+ ],
182
+ "optimizer_eps": 1e-08,
183
+ "optimizer_weight_decay": 1e-06,
184
+ "scheduler_name": "cosine",
185
+ "scheduler_warmup_steps": 500
186
+ },
187
+ "output_dir": "/scratch/ameypore/runs/lerobot/2572122/checkpoints",
188
+ "job_name": "diffusion",
189
+ "resume": false,
190
+ "seed": 1000,
191
+ "num_workers": 4,
192
+ "batch_size": 8,
193
+ "steps": 100000,
194
+ "eval_freq": 20000,
195
+ "log_freq": 200,
196
+ "tolerance_s": 0.0001,
197
+ "save_checkpoint": true,
198
+ "save_freq": 20000,
199
+ "use_policy_training_preset": true,
200
+ "optimizer": {
201
+ "type": "adam",
202
+ "lr": 0.0001,
203
+ "weight_decay": 1e-06,
204
+ "grad_clip_norm": 10.0,
205
+ "betas": [
206
+ 0.95,
207
+ 0.999
208
+ ],
209
+ "eps": 1e-08
210
+ },
211
+ "scheduler": {
212
+ "type": "diffuser",
213
+ "num_warmup_steps": 500,
214
+ "name": "cosine"
215
+ },
216
+ "eval": {
217
+ "n_episodes": 50,
218
+ "batch_size": 50,
219
+ "use_async_envs": false
220
+ },
221
+ "wandb": {
222
+ "enable": false,
223
+ "disable_artifact": false,
224
+ "project": "lerobot",
225
+ "entity": null,
226
+ "notes": null,
227
+ "run_id": null,
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
+ "use_umi_relative_actions": false,
237
+ "rename_map": {},
238
+ "checkpoint_path": null
239
+ }