Robotics
LeRobot
Safetensors
ditflow
danielsanjosepro commited on
Commit
abc0a8d
·
verified ·
1 Parent(s): 5cc2fa2

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +62 -0
  2. config.json +80 -0
  3. model.safetensors +3 -0
  4. train_config.json +191 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets: danielsanjosepro/organize_drawer_v1
3
+ library_name: lerobot
4
+ license: apache-2.0
5
+ model_name: ditflow
6
+ pipeline_tag: robotics
7
+ tags:
8
+ - lerobot
9
+ - ditflow
10
+ - robotics
11
+ ---
12
+
13
+ # Model Card for ditflow
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
+ python -m lerobot.scripts.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
+ python -m 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,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "ditflow",
3
+ "n_obs_steps": 2,
4
+ "normalization_mapping": {
5
+ "VISUAL": "MEAN_STD",
6
+ "STATE": "MIN_MAX",
7
+ "ACTION": "MIN_MAX"
8
+ },
9
+ "input_features": {
10
+ "observation.images.primary": {
11
+ "type": "VISUAL",
12
+ "shape": [
13
+ 3,
14
+ 256,
15
+ 256
16
+ ]
17
+ },
18
+ "observation.images.wrist": {
19
+ "type": "VISUAL",
20
+ "shape": [
21
+ 3,
22
+ 256,
23
+ 256
24
+ ]
25
+ },
26
+ "observation.state": {
27
+ "type": "STATE",
28
+ "shape": [
29
+ 7
30
+ ]
31
+ }
32
+ },
33
+ "output_features": {
34
+ "action": {
35
+ "type": "ACTION",
36
+ "shape": [
37
+ 7
38
+ ]
39
+ }
40
+ },
41
+ "device": "cuda",
42
+ "use_amp": false,
43
+ "push_to_hub": true,
44
+ "repo_id": "danielsanjosepro/ditflow_organize_drawer_v4",
45
+ "private": null,
46
+ "tags": null,
47
+ "license": null,
48
+ "horizon": 16,
49
+ "n_action_steps": 8,
50
+ "use_proprioceptive": false,
51
+ "drop_n_last_frames": 7,
52
+ "vision_backbone": "resnet18",
53
+ "crop_shape": null,
54
+ "crop_is_random": false,
55
+ "pretrained_backbone_weights": null,
56
+ "use_group_norm": true,
57
+ "spatial_softmax_num_keypoints": 32,
58
+ "use_separate_rgb_encoder_per_camera": true,
59
+ "frequency_embedding_dim": 256,
60
+ "hidden_dim": 512,
61
+ "num_blocks": 6,
62
+ "num_heads": 16,
63
+ "dropout": 0.1,
64
+ "dim_feedforward": 4096,
65
+ "activation": "gelu",
66
+ "training_noise_sampling": "uniform",
67
+ "clip_sample": true,
68
+ "clip_sample_range": 1.0,
69
+ "num_inference_steps": 100,
70
+ "do_mask_loss_for_padding": false,
71
+ "optimizer_lr": 0.0001,
72
+ "optimizer_betas": [
73
+ 0.95,
74
+ 0.999
75
+ ],
76
+ "optimizer_eps": 1e-08,
77
+ "optimizer_weight_decay": 1e-06,
78
+ "scheduler_name": "cosine",
79
+ "scheduler_warmup_steps": 500
80
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fcc29a66123629ccbc1aecd432519cffce88f2e388894124c8ba4c137a8fa426
3
+ size 257746492
train_config.json ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "danielsanjosepro/organize_drawer_v1",
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
+ }
62
+ },
63
+ "revision": null,
64
+ "use_imagenet_stats": true,
65
+ "video_backend": "torchcodec"
66
+ },
67
+ "env": null,
68
+ "policy": {
69
+ "type": "ditflow",
70
+ "n_obs_steps": 2,
71
+ "normalization_mapping": {
72
+ "VISUAL": "MEAN_STD",
73
+ "STATE": "MIN_MAX",
74
+ "ACTION": "MIN_MAX"
75
+ },
76
+ "input_features": {
77
+ "observation.images.primary": {
78
+ "type": "VISUAL",
79
+ "shape": [
80
+ 3,
81
+ 256,
82
+ 256
83
+ ]
84
+ },
85
+ "observation.images.wrist": {
86
+ "type": "VISUAL",
87
+ "shape": [
88
+ 3,
89
+ 256,
90
+ 256
91
+ ]
92
+ },
93
+ "observation.state": {
94
+ "type": "STATE",
95
+ "shape": [
96
+ 7
97
+ ]
98
+ }
99
+ },
100
+ "output_features": {
101
+ "action": {
102
+ "type": "ACTION",
103
+ "shape": [
104
+ 7
105
+ ]
106
+ }
107
+ },
108
+ "device": "cuda",
109
+ "use_amp": false,
110
+ "push_to_hub": true,
111
+ "repo_id": "danielsanjosepro/ditflow_organize_drawer_v4",
112
+ "private": null,
113
+ "tags": null,
114
+ "license": null,
115
+ "horizon": 16,
116
+ "n_action_steps": 8,
117
+ "use_proprioceptive": false,
118
+ "drop_n_last_frames": 7,
119
+ "vision_backbone": "resnet18",
120
+ "crop_shape": null,
121
+ "crop_is_random": false,
122
+ "pretrained_backbone_weights": null,
123
+ "use_group_norm": true,
124
+ "spatial_softmax_num_keypoints": 32,
125
+ "use_separate_rgb_encoder_per_camera": true,
126
+ "frequency_embedding_dim": 256,
127
+ "hidden_dim": 512,
128
+ "num_blocks": 6,
129
+ "num_heads": 16,
130
+ "dropout": 0.1,
131
+ "dim_feedforward": 4096,
132
+ "activation": "gelu",
133
+ "training_noise_sampling": "uniform",
134
+ "clip_sample": true,
135
+ "clip_sample_range": 1.0,
136
+ "num_inference_steps": 100,
137
+ "do_mask_loss_for_padding": false,
138
+ "optimizer_lr": 0.0001,
139
+ "optimizer_betas": [
140
+ 0.95,
141
+ 0.999
142
+ ],
143
+ "optimizer_eps": 1e-08,
144
+ "optimizer_weight_decay": 1e-06,
145
+ "scheduler_name": "cosine",
146
+ "scheduler_warmup_steps": 500
147
+ },
148
+ "output_dir": "outputs/train/2025-09-26/17-51-35_ditflow",
149
+ "job_name": "ditflow",
150
+ "resume": false,
151
+ "seed": 1000,
152
+ "num_workers": 4,
153
+ "batch_size": 32,
154
+ "steps": 50000,
155
+ "eval_freq": 20000,
156
+ "log_freq": 500,
157
+ "save_checkpoint": true,
158
+ "save_freq": 5000,
159
+ "use_policy_training_preset": true,
160
+ "optimizer": {
161
+ "type": "adam",
162
+ "lr": 0.0001,
163
+ "weight_decay": 1e-06,
164
+ "grad_clip_norm": 10.0,
165
+ "betas": [
166
+ 0.95,
167
+ 0.999
168
+ ],
169
+ "eps": 1e-08
170
+ },
171
+ "scheduler": {
172
+ "type": "diffuser",
173
+ "num_warmup_steps": 500,
174
+ "name": "cosine"
175
+ },
176
+ "eval": {
177
+ "n_episodes": 50,
178
+ "batch_size": 50,
179
+ "use_async_envs": false,
180
+ "max_episodes_rendered": 4
181
+ },
182
+ "wandb": {
183
+ "enable": true,
184
+ "disable_artifact": false,
185
+ "project": "master_thesis",
186
+ "entity": null,
187
+ "notes": null,
188
+ "run_id": "1edsdewr",
189
+ "mode": null
190
+ }
191
+ }