Robotics
LeRobot
Safetensors
diffusion
leochien1110 commited on
Commit
cf15d7f
·
verified ·
1 Parent(s): 55f5597

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +62 -0
  2. config.json +91 -0
  3. model.safetensors +3 -0
  4. train_config.json +171 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets: leochien1110/picknplace_blue_pen
3
+ library_name: lerobot
4
+ license: apache-2.0
5
+ model_name: diffusion
6
+ pipeline_tag: robotics
7
+ tags:
8
+ - diffusion
9
+ - lerobot
10
+ - robotics
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,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "diffusion",
3
+ "n_obs_steps": 2,
4
+ "input_features": {
5
+ "observation.state": {
6
+ "type": "STATE",
7
+ "shape": [
8
+ 6
9
+ ]
10
+ },
11
+ "observation.images.cam1": {
12
+ "type": "VISUAL",
13
+ "shape": [
14
+ 3,
15
+ 480,
16
+ 640
17
+ ]
18
+ },
19
+ "observation.images.cam2": {
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": "leochien1110/diffusion-pen-baseline",
41
+ "private": null,
42
+ "tags": null,
43
+ "license": null,
44
+ "pretrained_path": null,
45
+ "horizon": 16,
46
+ "n_action_steps": 8,
47
+ "normalization_mapping": {
48
+ "VISUAL": "MEAN_STD",
49
+ "STATE": "MIN_MAX",
50
+ "ACTION": "MIN_MAX"
51
+ },
52
+ "drop_n_last_frames": 7,
53
+ "vision_backbone": "resnet18",
54
+ "crop_shape": [
55
+ 224,
56
+ 224
57
+ ],
58
+ "crop_is_random": true,
59
+ "pretrained_backbone_weights": null,
60
+ "use_group_norm": true,
61
+ "spatial_softmax_num_keypoints": 32,
62
+ "use_separate_rgb_encoder_per_camera": false,
63
+ "down_dims": [
64
+ 512,
65
+ 1024,
66
+ 2048
67
+ ],
68
+ "kernel_size": 5,
69
+ "n_groups": 8,
70
+ "diffusion_step_embed_dim": 128,
71
+ "use_film_scale_modulation": true,
72
+ "noise_scheduler_type": "DDPM",
73
+ "num_train_timesteps": 100,
74
+ "beta_schedule": "squaredcos_cap_v2",
75
+ "beta_start": 0.0001,
76
+ "beta_end": 0.02,
77
+ "prediction_type": "epsilon",
78
+ "clip_sample": true,
79
+ "clip_sample_range": 1.0,
80
+ "num_inference_steps": null,
81
+ "do_mask_loss_for_padding": false,
82
+ "optimizer_lr": 0.0001,
83
+ "optimizer_betas": [
84
+ 0.95,
85
+ 0.999
86
+ ],
87
+ "optimizer_eps": 1e-08,
88
+ "optimizer_weight_decay": 1e-06,
89
+ "scheduler_name": "cosine",
90
+ "scheduler_warmup_steps": 500
91
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df59005410cd4c755c75ff616697816cf78bd51446781f4f9f624f9e272e5d55
3
+ size 1066516704
train_config.json ADDED
@@ -0,0 +1,171 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "leochien1110/picknplace_blue_pen",
4
+ "root": null,
5
+ "episodes": null,
6
+ "image_transforms": {
7
+ "enable": true,
8
+ "max_num_transforms": 3,
9
+ "random_order": false,
10
+ "tfs": {
11
+ "resize": {
12
+ "weight": 1.0,
13
+ "type": "Resize",
14
+ "kwargs": {
15
+ "size": [
16
+ 240,
17
+ 320
18
+ ]
19
+ }
20
+ }
21
+ }
22
+ },
23
+ "revision": null,
24
+ "use_imagenet_stats": true,
25
+ "video_backend": "torchcodec",
26
+ "streaming": false
27
+ },
28
+ "env": null,
29
+ "policy": {
30
+ "type": "diffusion",
31
+ "n_obs_steps": 2,
32
+ "input_features": {
33
+ "observation.state": {
34
+ "type": "STATE",
35
+ "shape": [
36
+ 6
37
+ ]
38
+ },
39
+ "observation.images.cam1": {
40
+ "type": "VISUAL",
41
+ "shape": [
42
+ 3,
43
+ 480,
44
+ 640
45
+ ]
46
+ },
47
+ "observation.images.cam2": {
48
+ "type": "VISUAL",
49
+ "shape": [
50
+ 3,
51
+ 480,
52
+ 640
53
+ ]
54
+ }
55
+ },
56
+ "output_features": {
57
+ "action": {
58
+ "type": "ACTION",
59
+ "shape": [
60
+ 6
61
+ ]
62
+ }
63
+ },
64
+ "device": "cuda",
65
+ "use_amp": true,
66
+ "use_peft": false,
67
+ "push_to_hub": true,
68
+ "repo_id": "leochien1110/diffusion-pen-baseline",
69
+ "private": null,
70
+ "tags": null,
71
+ "license": null,
72
+ "pretrained_path": null,
73
+ "horizon": 16,
74
+ "n_action_steps": 8,
75
+ "normalization_mapping": {
76
+ "VISUAL": "MEAN_STD",
77
+ "STATE": "MIN_MAX",
78
+ "ACTION": "MIN_MAX"
79
+ },
80
+ "drop_n_last_frames": 7,
81
+ "vision_backbone": "resnet18",
82
+ "crop_shape": [
83
+ 224,
84
+ 224
85
+ ],
86
+ "crop_is_random": true,
87
+ "pretrained_backbone_weights": null,
88
+ "use_group_norm": true,
89
+ "spatial_softmax_num_keypoints": 32,
90
+ "use_separate_rgb_encoder_per_camera": false,
91
+ "down_dims": [
92
+ 512,
93
+ 1024,
94
+ 2048
95
+ ],
96
+ "kernel_size": 5,
97
+ "n_groups": 8,
98
+ "diffusion_step_embed_dim": 128,
99
+ "use_film_scale_modulation": true,
100
+ "noise_scheduler_type": "DDPM",
101
+ "num_train_timesteps": 100,
102
+ "beta_schedule": "squaredcos_cap_v2",
103
+ "beta_start": 0.0001,
104
+ "beta_end": 0.02,
105
+ "prediction_type": "epsilon",
106
+ "clip_sample": true,
107
+ "clip_sample_range": 1.0,
108
+ "num_inference_steps": null,
109
+ "do_mask_loss_for_padding": false,
110
+ "optimizer_lr": 0.0001,
111
+ "optimizer_betas": [
112
+ 0.95,
113
+ 0.999
114
+ ],
115
+ "optimizer_eps": 1e-08,
116
+ "optimizer_weight_decay": 1e-06,
117
+ "scheduler_name": "cosine",
118
+ "scheduler_warmup_steps": 500
119
+ },
120
+ "output_dir": "outputs/train/diffusion_pen",
121
+ "job_name": "diffusion_pen",
122
+ "resume": false,
123
+ "seed": 1000,
124
+ "num_workers": 16,
125
+ "batch_size": 64,
126
+ "steps": 100000,
127
+ "eval_freq": 20000,
128
+ "log_freq": 200,
129
+ "tolerance_s": 0.0001,
130
+ "save_checkpoint": true,
131
+ "save_freq": 20000,
132
+ "use_policy_training_preset": true,
133
+ "optimizer": {
134
+ "type": "adam",
135
+ "lr": 0.0001,
136
+ "weight_decay": 1e-06,
137
+ "grad_clip_norm": 10.0,
138
+ "betas": [
139
+ 0.95,
140
+ 0.999
141
+ ],
142
+ "eps": 1e-08
143
+ },
144
+ "scheduler": {
145
+ "type": "diffuser",
146
+ "num_warmup_steps": 500,
147
+ "name": "cosine"
148
+ },
149
+ "eval": {
150
+ "n_episodes": 50,
151
+ "batch_size": 50,
152
+ "use_async_envs": false
153
+ },
154
+ "wandb": {
155
+ "enable": true,
156
+ "disable_artifact": true,
157
+ "project": "picknplace_blue_pen",
158
+ "entity": null,
159
+ "notes": null,
160
+ "run_id": "diffusion_pen",
161
+ "mode": null
162
+ },
163
+ "peft": null,
164
+ "use_rabc": false,
165
+ "rabc_progress_path": null,
166
+ "rabc_kappa": 0.01,
167
+ "rabc_epsilon": 1e-06,
168
+ "rabc_head_mode": "sparse",
169
+ "rename_map": {},
170
+ "checkpoint_path": null
171
+ }