kabilanKB commited on
Commit
9dc2c15
·
verified ·
1 Parent(s): 0c5d23e

Upload folder using huggingface_hub

Browse files
Files changed (24) hide show
  1. .gitattributes +1 -0
  2. checkpoints/005000/pretrained_model/config.json +90 -0
  3. checkpoints/005000/pretrained_model/model.safetensors +3 -0
  4. checkpoints/005000/pretrained_model/policy_postprocessor.json +32 -0
  5. checkpoints/005000/pretrained_model/policy_postprocessor_step_0_unnormalizer_processor.safetensors +3 -0
  6. checkpoints/005000/pretrained_model/policy_preprocessor.json +64 -0
  7. checkpoints/005000/pretrained_model/policy_preprocessor_step_3_normalizer_processor.safetensors +3 -0
  8. checkpoints/005000/pretrained_model/train_config.json +258 -0
  9. checkpoints/005000/training_state/optimizer_param_groups.json +233 -0
  10. checkpoints/005000/training_state/optimizer_state.safetensors +3 -0
  11. checkpoints/005000/training_state/rng_state.safetensors +3 -0
  12. checkpoints/005000/training_state/scheduler_state.json +14 -0
  13. checkpoints/005000/training_state/training_step.json +3 -0
  14. wandb/debug-internal.log +11 -0
  15. wandb/debug.log +23 -0
  16. wandb/run-20260103_150123-d7g2zo0w/files/config.yaml +280 -0
  17. wandb/run-20260103_150123-d7g2zo0w/files/output.log +79 -0
  18. wandb/run-20260103_150123-d7g2zo0w/files/requirements.txt +303 -0
  19. wandb/run-20260103_150123-d7g2zo0w/files/wandb-metadata.json +50 -0
  20. wandb/run-20260103_150123-d7g2zo0w/files/wandb-summary.json +1 -0
  21. wandb/run-20260103_150123-d7g2zo0w/logs/debug-core.log +15 -0
  22. wandb/run-20260103_150123-d7g2zo0w/logs/debug-internal.log +11 -0
  23. wandb/run-20260103_150123-d7g2zo0w/logs/debug.log +23 -0
  24. wandb/run-20260103_150123-d7g2zo0w/run-d7g2zo0w.wandb +3 -0
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ wandb/run-20260103_150123-d7g2zo0w/run-d7g2zo0w.wandb filter=lfs diff=lfs merge=lfs -text
checkpoints/005000/pretrained_model/config.json ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.top": {
12
+ "type": "VISUAL",
13
+ "shape": [
14
+ 3,
15
+ 480,
16
+ 640
17
+ ]
18
+ },
19
+ "observation.images.wrist": {
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
+ "push_to_hub": true,
39
+ "repo_id": "kabilanKB/diffusion_pusht",
40
+ "private": null,
41
+ "tags": null,
42
+ "license": null,
43
+ "pretrained_path": null,
44
+ "horizon": 16,
45
+ "n_action_steps": 8,
46
+ "normalization_mapping": {
47
+ "VISUAL": "MEAN_STD",
48
+ "STATE": "MIN_MAX",
49
+ "ACTION": "MIN_MAX"
50
+ },
51
+ "drop_n_last_frames": 7,
52
+ "vision_backbone": "resnet18",
53
+ "crop_shape": [
54
+ 84,
55
+ 84
56
+ ],
57
+ "crop_is_random": true,
58
+ "pretrained_backbone_weights": null,
59
+ "use_group_norm": true,
60
+ "spatial_softmax_num_keypoints": 32,
61
+ "use_separate_rgb_encoder_per_camera": false,
62
+ "down_dims": [
63
+ 512,
64
+ 1024,
65
+ 2048
66
+ ],
67
+ "kernel_size": 5,
68
+ "n_groups": 8,
69
+ "diffusion_step_embed_dim": 128,
70
+ "use_film_scale_modulation": true,
71
+ "noise_scheduler_type": "DDPM",
72
+ "num_train_timesteps": 100,
73
+ "beta_schedule": "squaredcos_cap_v2",
74
+ "beta_start": 0.0001,
75
+ "beta_end": 0.02,
76
+ "prediction_type": "epsilon",
77
+ "clip_sample": true,
78
+ "clip_sample_range": 1.0,
79
+ "num_inference_steps": null,
80
+ "do_mask_loss_for_padding": false,
81
+ "optimizer_lr": 0.0001,
82
+ "optimizer_betas": [
83
+ 0.95,
84
+ 0.999
85
+ ],
86
+ "optimizer_eps": 1e-08,
87
+ "optimizer_weight_decay": 1e-06,
88
+ "scheduler_name": "cosine",
89
+ "scheduler_warmup_steps": 500
90
+ }
checkpoints/005000/pretrained_model/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81f6332724bb92b2b1733f7ef288ce4b41f42c2745276cc185f3b65504ca0dea
3
+ size 1066516384
checkpoints/005000/pretrained_model/policy_postprocessor.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "policy_postprocessor",
3
+ "steps": [
4
+ {
5
+ "registry_name": "unnormalizer_processor",
6
+ "config": {
7
+ "eps": 1e-08,
8
+ "features": {
9
+ "action": {
10
+ "type": "ACTION",
11
+ "shape": [
12
+ 6
13
+ ]
14
+ }
15
+ },
16
+ "norm_map": {
17
+ "VISUAL": "MEAN_STD",
18
+ "STATE": "MIN_MAX",
19
+ "ACTION": "MIN_MAX"
20
+ }
21
+ },
22
+ "state_file": "policy_postprocessor_step_0_unnormalizer_processor.safetensors"
23
+ },
24
+ {
25
+ "registry_name": "device_processor",
26
+ "config": {
27
+ "device": "cpu",
28
+ "float_dtype": null
29
+ }
30
+ }
31
+ ]
32
+ }
checkpoints/005000/pretrained_model/policy_postprocessor_step_0_unnormalizer_processor.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2204f8921fe6da9978d8f89dd11d1ad4ab1d903fcad1d73b07b9800b3bea28e
3
+ size 7536
checkpoints/005000/pretrained_model/policy_preprocessor.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "policy_preprocessor",
3
+ "steps": [
4
+ {
5
+ "registry_name": "rename_observations_processor",
6
+ "config": {
7
+ "rename_map": {}
8
+ }
9
+ },
10
+ {
11
+ "registry_name": "to_batch_processor",
12
+ "config": {}
13
+ },
14
+ {
15
+ "registry_name": "device_processor",
16
+ "config": {
17
+ "device": "cuda",
18
+ "float_dtype": null
19
+ }
20
+ },
21
+ {
22
+ "registry_name": "normalizer_processor",
23
+ "config": {
24
+ "eps": 1e-08,
25
+ "features": {
26
+ "observation.state": {
27
+ "type": "STATE",
28
+ "shape": [
29
+ 6
30
+ ]
31
+ },
32
+ "observation.images.top": {
33
+ "type": "VISUAL",
34
+ "shape": [
35
+ 3,
36
+ 480,
37
+ 640
38
+ ]
39
+ },
40
+ "observation.images.wrist": {
41
+ "type": "VISUAL",
42
+ "shape": [
43
+ 3,
44
+ 480,
45
+ 640
46
+ ]
47
+ },
48
+ "action": {
49
+ "type": "ACTION",
50
+ "shape": [
51
+ 6
52
+ ]
53
+ }
54
+ },
55
+ "norm_map": {
56
+ "VISUAL": "MEAN_STD",
57
+ "STATE": "MIN_MAX",
58
+ "ACTION": "MIN_MAX"
59
+ }
60
+ },
61
+ "state_file": "policy_preprocessor_step_3_normalizer_processor.safetensors"
62
+ }
63
+ ]
64
+ }
checkpoints/005000/pretrained_model/policy_preprocessor_step_3_normalizer_processor.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2204f8921fe6da9978d8f89dd11d1ad4ab1d903fcad1d73b07b9800b3bea28e
3
+ size 7536
checkpoints/005000/pretrained_model/train_config.json ADDED
@@ -0,0 +1,258 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "kabilanKB/groot_n1",
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
+ "streaming": false
81
+ },
82
+ "env": {
83
+ "type": "pusht",
84
+ "task": "PushT-v0",
85
+ "fps": 10,
86
+ "features": {
87
+ "action": {
88
+ "type": "ACTION",
89
+ "shape": [
90
+ 2
91
+ ]
92
+ },
93
+ "agent_pos": {
94
+ "type": "STATE",
95
+ "shape": [
96
+ 2
97
+ ]
98
+ },
99
+ "pixels": {
100
+ "type": "VISUAL",
101
+ "shape": [
102
+ 384,
103
+ 384,
104
+ 3
105
+ ]
106
+ }
107
+ },
108
+ "features_map": {
109
+ "action": "action",
110
+ "agent_pos": "observation.state",
111
+ "environment_state": "observation.environment_state",
112
+ "pixels": "observation.image"
113
+ },
114
+ "max_parallel_tasks": 1,
115
+ "disable_env_checker": true,
116
+ "episode_length": 300,
117
+ "obs_type": "pixels_agent_pos",
118
+ "render_mode": "rgb_array",
119
+ "visualization_width": 384,
120
+ "visualization_height": 384,
121
+ "observation_height": 384,
122
+ "observation_width": 384
123
+ },
124
+ "policy": {
125
+ "type": "diffusion",
126
+ "n_obs_steps": 2,
127
+ "input_features": {
128
+ "observation.state": {
129
+ "type": "STATE",
130
+ "shape": [
131
+ 6
132
+ ]
133
+ },
134
+ "observation.images.top": {
135
+ "type": "VISUAL",
136
+ "shape": [
137
+ 3,
138
+ 480,
139
+ 640
140
+ ]
141
+ },
142
+ "observation.images.wrist": {
143
+ "type": "VISUAL",
144
+ "shape": [
145
+ 3,
146
+ 480,
147
+ 640
148
+ ]
149
+ }
150
+ },
151
+ "output_features": {
152
+ "action": {
153
+ "type": "ACTION",
154
+ "shape": [
155
+ 6
156
+ ]
157
+ }
158
+ },
159
+ "device": "cuda",
160
+ "use_amp": false,
161
+ "push_to_hub": true,
162
+ "repo_id": "kabilanKB/diffusion_pusht",
163
+ "private": null,
164
+ "tags": null,
165
+ "license": null,
166
+ "pretrained_path": null,
167
+ "horizon": 16,
168
+ "n_action_steps": 8,
169
+ "normalization_mapping": {
170
+ "VISUAL": "MEAN_STD",
171
+ "STATE": "MIN_MAX",
172
+ "ACTION": "MIN_MAX"
173
+ },
174
+ "drop_n_last_frames": 7,
175
+ "vision_backbone": "resnet18",
176
+ "crop_shape": [
177
+ 84,
178
+ 84
179
+ ],
180
+ "crop_is_random": true,
181
+ "pretrained_backbone_weights": null,
182
+ "use_group_norm": true,
183
+ "spatial_softmax_num_keypoints": 32,
184
+ "use_separate_rgb_encoder_per_camera": false,
185
+ "down_dims": [
186
+ 512,
187
+ 1024,
188
+ 2048
189
+ ],
190
+ "kernel_size": 5,
191
+ "n_groups": 8,
192
+ "diffusion_step_embed_dim": 128,
193
+ "use_film_scale_modulation": true,
194
+ "noise_scheduler_type": "DDPM",
195
+ "num_train_timesteps": 100,
196
+ "beta_schedule": "squaredcos_cap_v2",
197
+ "beta_start": 0.0001,
198
+ "beta_end": 0.02,
199
+ "prediction_type": "epsilon",
200
+ "clip_sample": true,
201
+ "clip_sample_range": 1.0,
202
+ "num_inference_steps": null,
203
+ "do_mask_loss_for_padding": false,
204
+ "optimizer_lr": 0.0001,
205
+ "optimizer_betas": [
206
+ 0.95,
207
+ 0.999
208
+ ],
209
+ "optimizer_eps": 1e-08,
210
+ "optimizer_weight_decay": 1e-06,
211
+ "scheduler_name": "cosine",
212
+ "scheduler_warmup_steps": 500
213
+ },
214
+ "output_dir": "outputs/train/diffusion_pusht",
215
+ "job_name": "pusht_diffusion",
216
+ "resume": false,
217
+ "seed": 100000,
218
+ "num_workers": 4,
219
+ "batch_size": 64,
220
+ "steps": 5000,
221
+ "eval_freq": 25000,
222
+ "log_freq": 200,
223
+ "save_checkpoint": true,
224
+ "save_freq": 25000,
225
+ "use_policy_training_preset": true,
226
+ "optimizer": {
227
+ "type": "adam",
228
+ "lr": 0.0001,
229
+ "weight_decay": 1e-06,
230
+ "grad_clip_norm": 10.0,
231
+ "betas": [
232
+ 0.95,
233
+ 0.999
234
+ ],
235
+ "eps": 1e-08
236
+ },
237
+ "scheduler": {
238
+ "type": "diffuser",
239
+ "num_warmup_steps": 500,
240
+ "name": "cosine"
241
+ },
242
+ "eval": {
243
+ "n_episodes": 50,
244
+ "batch_size": 50,
245
+ "use_async_envs": false
246
+ },
247
+ "wandb": {
248
+ "enable": true,
249
+ "disable_artifact": false,
250
+ "project": "lerobot",
251
+ "entity": null,
252
+ "notes": null,
253
+ "run_id": "d7g2zo0w",
254
+ "mode": null
255
+ },
256
+ "checkpoint_path": null,
257
+ "rename_map": {}
258
+ }
checkpoints/005000/training_state/optimizer_param_groups.json ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "lr": 0.0,
4
+ "betas": [
5
+ 0.95,
6
+ 0.999
7
+ ],
8
+ "eps": 1e-08,
9
+ "weight_decay": 1e-06,
10
+ "amsgrad": false,
11
+ "maximize": false,
12
+ "foreach": null,
13
+ "capturable": false,
14
+ "differentiable": false,
15
+ "fused": null,
16
+ "decoupled_weight_decay": false,
17
+ "initial_lr": 0.0001,
18
+ "params": [
19
+ 0,
20
+ 1,
21
+ 2,
22
+ 3,
23
+ 4,
24
+ 5,
25
+ 6,
26
+ 7,
27
+ 8,
28
+ 9,
29
+ 10,
30
+ 11,
31
+ 12,
32
+ 13,
33
+ 14,
34
+ 15,
35
+ 16,
36
+ 17,
37
+ 18,
38
+ 19,
39
+ 20,
40
+ 21,
41
+ 22,
42
+ 23,
43
+ 24,
44
+ 25,
45
+ 26,
46
+ 27,
47
+ 28,
48
+ 29,
49
+ 30,
50
+ 31,
51
+ 32,
52
+ 33,
53
+ 34,
54
+ 35,
55
+ 36,
56
+ 37,
57
+ 38,
58
+ 39,
59
+ 40,
60
+ 41,
61
+ 42,
62
+ 43,
63
+ 44,
64
+ 45,
65
+ 46,
66
+ 47,
67
+ 48,
68
+ 49,
69
+ 50,
70
+ 51,
71
+ 52,
72
+ 53,
73
+ 54,
74
+ 55,
75
+ 56,
76
+ 57,
77
+ 58,
78
+ 59,
79
+ 60,
80
+ 61,
81
+ 62,
82
+ 63,
83
+ 64,
84
+ 65,
85
+ 66,
86
+ 67,
87
+ 68,
88
+ 69,
89
+ 70,
90
+ 71,
91
+ 72,
92
+ 73,
93
+ 74,
94
+ 75,
95
+ 76,
96
+ 77,
97
+ 78,
98
+ 79,
99
+ 80,
100
+ 81,
101
+ 82,
102
+ 83,
103
+ 84,
104
+ 85,
105
+ 86,
106
+ 87,
107
+ 88,
108
+ 89,
109
+ 90,
110
+ 91,
111
+ 92,
112
+ 93,
113
+ 94,
114
+ 95,
115
+ 96,
116
+ 97,
117
+ 98,
118
+ 99,
119
+ 100,
120
+ 101,
121
+ 102,
122
+ 103,
123
+ 104,
124
+ 105,
125
+ 106,
126
+ 107,
127
+ 108,
128
+ 109,
129
+ 110,
130
+ 111,
131
+ 112,
132
+ 113,
133
+ 114,
134
+ 115,
135
+ 116,
136
+ 117,
137
+ 118,
138
+ 119,
139
+ 120,
140
+ 121,
141
+ 122,
142
+ 123,
143
+ 124,
144
+ 125,
145
+ 126,
146
+ 127,
147
+ 128,
148
+ 129,
149
+ 130,
150
+ 131,
151
+ 132,
152
+ 133,
153
+ 134,
154
+ 135,
155
+ 136,
156
+ 137,
157
+ 138,
158
+ 139,
159
+ 140,
160
+ 141,
161
+ 142,
162
+ 143,
163
+ 144,
164
+ 145,
165
+ 146,
166
+ 147,
167
+ 148,
168
+ 149,
169
+ 150,
170
+ 151,
171
+ 152,
172
+ 153,
173
+ 154,
174
+ 155,
175
+ 156,
176
+ 157,
177
+ 158,
178
+ 159,
179
+ 160,
180
+ 161,
181
+ 162,
182
+ 163,
183
+ 164,
184
+ 165,
185
+ 166,
186
+ 167,
187
+ 168,
188
+ 169,
189
+ 170,
190
+ 171,
191
+ 172,
192
+ 173,
193
+ 174,
194
+ 175,
195
+ 176,
196
+ 177,
197
+ 178,
198
+ 179,
199
+ 180,
200
+ 181,
201
+ 182,
202
+ 183,
203
+ 184,
204
+ 185,
205
+ 186,
206
+ 187,
207
+ 188,
208
+ 189,
209
+ 190,
210
+ 191,
211
+ 192,
212
+ 193,
213
+ 194,
214
+ 195,
215
+ 196,
216
+ 197,
217
+ 198,
218
+ 199,
219
+ 200,
220
+ 201,
221
+ 202,
222
+ 203,
223
+ 204,
224
+ 205,
225
+ 206,
226
+ 207,
227
+ 208,
228
+ 209,
229
+ 210,
230
+ 211
231
+ ]
232
+ }
233
+ ]
checkpoints/005000/training_state/optimizer_state.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf53ffdcccc94982c64faacfa83871a0ef2268d496aec142ffad66e3c8ab06f1
3
+ size 2133039080
checkpoints/005000/training_state/rng_state.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5501da7a312ea6fe62ef3af66180e5487b11ef523076fa73954740dcdc0401fa
3
+ size 15708
checkpoints/005000/training_state/scheduler_state.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "base_lrs": [
3
+ 0.0001
4
+ ],
5
+ "last_epoch": 5000,
6
+ "_step_count": 5001,
7
+ "_get_lr_called_within_step": false,
8
+ "_last_lr": [
9
+ 0.0
10
+ ],
11
+ "lr_lambdas": [
12
+ null
13
+ ]
14
+ }
checkpoints/005000/training_state/training_step.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "step": 5000
3
+ }
wandb/debug-internal.log ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"time":"2026-01-03T15:01:23.863494578+05:30","level":"INFO","msg":"stream: starting","core version":"0.21.4"}
2
+ {"time":"2026-01-03T15:01:24.296258619+05:30","level":"INFO","msg":"stream: created new stream","id":"d7g2zo0w"}
3
+ {"time":"2026-01-03T15:01:24.296279445+05:30","level":"INFO","msg":"stream: started","id":"d7g2zo0w"}
4
+ {"time":"2026-01-03T15:01:24.296367153+05:30","level":"INFO","msg":"writer: started","stream_id":"d7g2zo0w"}
5
+ {"time":"2026-01-03T15:01:24.296394921+05:30","level":"INFO","msg":"sender: started","stream_id":"d7g2zo0w"}
6
+ {"time":"2026-01-03T15:01:24.296462591+05:30","level":"INFO","msg":"handler: started","stream_id":"d7g2zo0w"}
7
+ {"time":"2026-01-03T15:29:16.802794058+05:30","level":"INFO","msg":"stream: closing","id":"d7g2zo0w"}
8
+ {"time":"2026-01-03T15:30:47.982676777+05:30","level":"INFO","msg":"fileTransfer: Close: file transfer manager closed"}
9
+ {"time":"2026-01-03T15:30:48.331286918+05:30","level":"INFO","msg":"handler: closed","stream_id":"d7g2zo0w"}
10
+ {"time":"2026-01-03T15:30:48.331347882+05:30","level":"INFO","msg":"sender: closed","stream_id":"d7g2zo0w"}
11
+ {"time":"2026-01-03T15:30:48.331354034+05:30","level":"INFO","msg":"stream: closed","id":"d7g2zo0w"}
wandb/debug.log ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_setup.py:_flush():81] Current SDK version is 0.21.4
2
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_setup.py:_flush():81] Configure stats pid to 179460
3
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_setup.py:_flush():81] Loading settings from /home/zeux/.config/wandb/settings
4
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_setup.py:_flush():81] Loading settings from /home/zeux/lerobot/wandb/settings
5
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_setup.py:_flush():81] Loading settings from environment variables
6
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_init.py:setup_run_log_directory():686] Logging user logs to outputs/train/diffusion_pusht/wandb/run-20260103_150123-d7g2zo0w/logs/debug.log
7
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_init.py:setup_run_log_directory():687] Logging internal logs to outputs/train/diffusion_pusht/wandb/run-20260103_150123-d7g2zo0w/logs/debug-internal.log
8
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_init.py:init():813] calling init triggers
9
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_init.py:init():818] wandb.init called with sweep_config: {}
10
+ config: {'dataset': {'repo_id': 'kabilanKB/groot_n1', 'root': None, 'episodes': None, 'image_transforms': {'enable': False, 'max_num_transforms': 3, 'random_order': False, 'tfs': {'brightness': {'weight': 1.0, 'type': 'ColorJitter', 'kwargs': {'brightness': [0.8, 1.2]}}, 'contrast': {'weight': 1.0, 'type': 'ColorJitter', 'kwargs': {'contrast': [0.8, 1.2]}}, 'saturation': {'weight': 1.0, 'type': 'ColorJitter', 'kwargs': {'saturation': [0.5, 1.5]}}, 'hue': {'weight': 1.0, 'type': 'ColorJitter', 'kwargs': {'hue': [-0.05, 0.05]}}, 'sharpness': {'weight': 1.0, 'type': 'SharpnessJitter', 'kwargs': {'sharpness': [0.5, 1.5]}}, 'affine': {'weight': 1.0, 'type': 'RandomAffine', 'kwargs': {'degrees': [-5.0, 5.0], 'translate': [0.05, 0.05]}}}}, 'revision': None, 'use_imagenet_stats': True, 'video_backend': 'torchcodec', 'streaming': False}, 'env': {'type': 'pusht', 'task': 'PushT-v0', 'fps': 10, 'features': {'action': {'type': <FeatureType.ACTION: 'ACTION'>, 'shape': [2]}, 'agent_pos': {'type': <FeatureType.STATE: 'STATE'>, 'shape': [2]}, 'pixels': {'type': <FeatureType.VISUAL: 'VISUAL'>, 'shape': [384, 384, 3]}}, 'features_map': {'action': 'action', 'agent_pos': 'observation.state', 'environment_state': 'observation.environment_state', 'pixels': 'observation.image'}, 'max_parallel_tasks': 1, 'disable_env_checker': True, 'episode_length': 300, 'obs_type': 'pixels_agent_pos', 'render_mode': 'rgb_array', 'visualization_width': 384, 'visualization_height': 384, 'observation_height': 384, 'observation_width': 384}, 'policy': {'type': 'diffusion', 'n_obs_steps': 2, 'input_features': {}, 'output_features': {}, 'device': 'cuda', 'use_amp': False, 'push_to_hub': True, 'repo_id': 'kabilanKB/diffusion_pusht', 'private': None, 'tags': None, 'license': None, 'pretrained_path': None, 'horizon': 16, 'n_action_steps': 8, 'normalization_mapping': {'VISUAL': <NormalizationMode.MEAN_STD: 'MEAN_STD'>, 'STATE': <NormalizationMode.MIN_MAX: 'MIN_MAX'>, 'ACTION': <NormalizationMode.MIN_MAX: 'MIN_MAX'>}, 'drop_n_last_frames': 7, 'vision_backbone': 'resnet18', 'crop_shape': [84, 84], 'crop_is_random': True, 'pretrained_backbone_weights': None, 'use_group_norm': True, 'spatial_softmax_num_keypoints': 32, 'use_separate_rgb_encoder_per_camera': False, 'down_dims': [512, 1024, 2048], 'kernel_size': 5, 'n_groups': 8, 'diffusion_step_embed_dim': 128, 'use_film_scale_modulation': True, 'noise_scheduler_type': 'DDPM', 'num_train_timesteps': 100, 'beta_schedule': 'squaredcos_cap_v2', 'beta_start': 0.0001, 'beta_end': 0.02, 'prediction_type': 'epsilon', 'clip_sample': True, 'clip_sample_range': 1.0, 'num_inference_steps': None, 'do_mask_loss_for_padding': False, 'optimizer_lr': 0.0001, 'optimizer_betas': [0.95, 0.999], 'optimizer_eps': 1e-08, 'optimizer_weight_decay': 1e-06, 'scheduler_name': 'cosine', 'scheduler_warmup_steps': 500}, 'output_dir': 'outputs/train/diffusion_pusht', 'job_name': 'pusht_diffusion', 'resume': False, 'seed': 100000, 'num_workers': 4, 'batch_size': 64, 'steps': 5000, 'eval_freq': 25000, 'log_freq': 200, 'save_checkpoint': True, 'save_freq': 25000, 'use_policy_training_preset': True, 'optimizer': {'type': 'adam', 'lr': 0.0001, 'weight_decay': 1e-06, 'grad_clip_norm': 10.0, 'betas': [0.95, 0.999], 'eps': 1e-08}, 'scheduler': {'type': 'diffuser', 'num_warmup_steps': 500, 'name': 'cosine'}, 'eval': {'n_episodes': 50, 'batch_size': 50, 'use_async_envs': False}, 'wandb': {'enable': True, 'disable_artifact': False, 'project': 'lerobot', 'entity': None, 'notes': None, 'run_id': None, 'mode': None}, 'checkpoint_path': None, 'rename_map': {}, '_wandb': {}}
11
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_init.py:init():854] starting backend
12
+ 2026-01-03 15:01:23,858 INFO MainThread:179460 [wandb_init.py:init():857] sending inform_init request
13
+ 2026-01-03 15:01:23,860 INFO MainThread:179460 [wandb_init.py:init():865] backend started and connected
14
+ 2026-01-03 15:01:23,861 INFO MainThread:179460 [wandb_init.py:init():936] updated telemetry
15
+ 2026-01-03 15:01:23,864 INFO MainThread:179460 [wandb_init.py:init():960] communicating run to backend with 90.0 second timeout
16
+ 2026-01-03 15:01:24,767 INFO MainThread:179460 [wandb_init.py:init():1011] starting run threads in backend
17
+ 2026-01-03 15:01:24,827 INFO MainThread:179460 [wandb_run.py:_console_start():2506] atexit reg
18
+ 2026-01-03 15:01:24,827 INFO MainThread:179460 [wandb_run.py:_redirect():2354] redirect: wrap_raw
19
+ 2026-01-03 15:01:24,827 INFO MainThread:179460 [wandb_run.py:_redirect():2423] Wrapping output streams.
20
+ 2026-01-03 15:01:24,827 INFO MainThread:179460 [wandb_run.py:_redirect():2446] Redirects installed.
21
+ 2026-01-03 15:01:24,828 INFO MainThread:179460 [wandb_init.py:init():1049] run started, returning control to user process
22
+ 2026-01-03 15:29:16,802 INFO wandb-AsyncioManager-main:179460 [service_client.py:_forward_responses():84] Reached EOF.
23
+ 2026-01-03 15:29:16,802 INFO wandb-AsyncioManager-main:179460 [mailbox.py:close():137] Closing mailbox, abandoning 2 handles.
wandb/run-20260103_150123-d7g2zo0w/files/config.yaml ADDED
@@ -0,0 +1,280 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ _wandb:
2
+ value:
3
+ cli_version: 0.21.4
4
+ e:
5
+ t8h8ncbdwrpgtz6o8u96dn6sadjx81fi:
6
+ args:
7
+ - --output_dir=outputs/train/diffusion_pusht
8
+ - --policy.type=diffusion
9
+ - --policy.repo_id=kabilanKB/diffusion_pusht
10
+ - --dataset.repo_id=kabilanKB/groot_n1
11
+ - --env.type=pusht
12
+ - --batch_size=64
13
+ - --steps=5000
14
+ - --eval_freq=25000
15
+ - --save_freq=25000
16
+ - --seed=100000
17
+ - --wandb.enable=true
18
+ cpu_count: 24
19
+ cpu_count_logical: 24
20
+ cudaVersion: "13.0"
21
+ disk:
22
+ /:
23
+ total: "200449576960"
24
+ used: "35326451712"
25
+ executable: /home/zeux/miniconda3/envs/lerobot-isaac-lab/bin/python3.11
26
+ git:
27
+ commit: af4766b60250f8a52d0b9de730a2fd1919c0c48b
28
+ remote: https://github.com/Seeed-Projects/lerobot.git
29
+ gpu: NVIDIA RTX PRO 6000 Blackwell Workstation Edition
30
+ gpu_count: 1
31
+ gpu_nvidia:
32
+ - architecture: Blackwell
33
+ cudaCores: 24064
34
+ memoryTotal: "102641958912"
35
+ name: NVIDIA RTX PRO 6000 Blackwell Workstation Edition
36
+ uuid: GPU-8c66f3c4-00c8-00a6-e5ff-633c5558ec8e
37
+ host: zeux
38
+ memory:
39
+ total: "134489878528"
40
+ os: Linux-6.8.0-90-generic-x86_64-with-glibc2.35
41
+ program: /home/zeux/miniconda3/envs/lerobot-isaac-lab/bin/lerobot-train
42
+ python: CPython 3.11.6
43
+ root: outputs/train/diffusion_pusht
44
+ startedAt: "2026-01-03T09:31:23.655123Z"
45
+ writerId: t8h8ncbdwrpgtz6o8u96dn6sadjx81fi
46
+ m: []
47
+ python_version: 3.11.6
48
+ t:
49
+ "1":
50
+ - 1
51
+ - 11
52
+ - 41
53
+ - 49
54
+ - 51
55
+ - 71
56
+ - 83
57
+ - 105
58
+ "2":
59
+ - 1
60
+ - 11
61
+ - 41
62
+ - 49
63
+ - 51
64
+ - 71
65
+ - 83
66
+ - 105
67
+ "3":
68
+ - 13
69
+ - 15
70
+ - 16
71
+ - 61
72
+ "4": 3.11.6
73
+ "5": 0.21.4
74
+ "6": 4.57.3
75
+ "10":
76
+ - 21
77
+ "12": 0.21.4
78
+ "13": linux-x86_64
79
+ batch_size:
80
+ value: 64
81
+ checkpoint_path:
82
+ value: null
83
+ dataset:
84
+ value:
85
+ episodes: null
86
+ image_transforms:
87
+ enable: false
88
+ max_num_transforms: 3
89
+ random_order: false
90
+ tfs:
91
+ affine:
92
+ kwargs:
93
+ degrees:
94
+ - -5
95
+ - 5
96
+ translate:
97
+ - 0.05
98
+ - 0.05
99
+ type: RandomAffine
100
+ weight: 1
101
+ brightness:
102
+ kwargs:
103
+ brightness:
104
+ - 0.8
105
+ - 1.2
106
+ type: ColorJitter
107
+ weight: 1
108
+ contrast:
109
+ kwargs:
110
+ contrast:
111
+ - 0.8
112
+ - 1.2
113
+ type: ColorJitter
114
+ weight: 1
115
+ hue:
116
+ kwargs:
117
+ hue:
118
+ - -0.05
119
+ - 0.05
120
+ type: ColorJitter
121
+ weight: 1
122
+ saturation:
123
+ kwargs:
124
+ saturation:
125
+ - 0.5
126
+ - 1.5
127
+ type: ColorJitter
128
+ weight: 1
129
+ sharpness:
130
+ kwargs:
131
+ sharpness:
132
+ - 0.5
133
+ - 1.5
134
+ type: SharpnessJitter
135
+ weight: 1
136
+ repo_id: kabilanKB/groot_n1
137
+ revision: null
138
+ root: null
139
+ streaming: false
140
+ use_imagenet_stats: true
141
+ video_backend: torchcodec
142
+ env:
143
+ value:
144
+ disable_env_checker: true
145
+ episode_length: 300
146
+ features:
147
+ action:
148
+ shape:
149
+ - 2
150
+ type: ACTION
151
+ agent_pos:
152
+ shape:
153
+ - 2
154
+ type: STATE
155
+ pixels:
156
+ shape:
157
+ - 384
158
+ - 384
159
+ - 3
160
+ type: VISUAL
161
+ features_map:
162
+ action: action
163
+ agent_pos: observation.state
164
+ environment_state: observation.environment_state
165
+ pixels: observation.image
166
+ fps: 10
167
+ max_parallel_tasks: 1
168
+ obs_type: pixels_agent_pos
169
+ observation_height: 384
170
+ observation_width: 384
171
+ render_mode: rgb_array
172
+ task: PushT-v0
173
+ type: pusht
174
+ visualization_height: 384
175
+ visualization_width: 384
176
+ eval:
177
+ value:
178
+ batch_size: 50
179
+ n_episodes: 50
180
+ use_async_envs: false
181
+ eval_freq:
182
+ value: 25000
183
+ job_name:
184
+ value: pusht_diffusion
185
+ log_freq:
186
+ value: 200
187
+ num_workers:
188
+ value: 4
189
+ optimizer:
190
+ value:
191
+ betas:
192
+ - 0.95
193
+ - 0.999
194
+ eps: 1e-08
195
+ grad_clip_norm: 10
196
+ lr: 0.0001
197
+ type: adam
198
+ weight_decay: 1e-06
199
+ output_dir:
200
+ value: outputs/train/diffusion_pusht
201
+ policy:
202
+ value:
203
+ beta_end: 0.02
204
+ beta_schedule: squaredcos_cap_v2
205
+ beta_start: 0.0001
206
+ clip_sample: true
207
+ clip_sample_range: 1
208
+ crop_is_random: true
209
+ crop_shape:
210
+ - 84
211
+ - 84
212
+ device: cuda
213
+ diffusion_step_embed_dim: 128
214
+ do_mask_loss_for_padding: false
215
+ down_dims:
216
+ - 512
217
+ - 1024
218
+ - 2048
219
+ drop_n_last_frames: 7
220
+ horizon: 16
221
+ kernel_size: 5
222
+ license: null
223
+ n_action_steps: 8
224
+ n_groups: 8
225
+ n_obs_steps: 2
226
+ noise_scheduler_type: DDPM
227
+ normalization_mapping:
228
+ ACTION: MIN_MAX
229
+ STATE: MIN_MAX
230
+ VISUAL: MEAN_STD
231
+ num_inference_steps: null
232
+ num_train_timesteps: 100
233
+ optimizer_betas:
234
+ - 0.95
235
+ - 0.999
236
+ optimizer_eps: 1e-08
237
+ optimizer_lr: 0.0001
238
+ optimizer_weight_decay: 1e-06
239
+ prediction_type: epsilon
240
+ pretrained_backbone_weights: null
241
+ pretrained_path: null
242
+ private: null
243
+ push_to_hub: true
244
+ repo_id: kabilanKB/diffusion_pusht
245
+ scheduler_name: cosine
246
+ scheduler_warmup_steps: 500
247
+ spatial_softmax_num_keypoints: 32
248
+ tags: null
249
+ type: diffusion
250
+ use_amp: false
251
+ use_film_scale_modulation: true
252
+ use_group_norm: true
253
+ use_separate_rgb_encoder_per_camera: false
254
+ vision_backbone: resnet18
255
+ resume:
256
+ value: false
257
+ save_checkpoint:
258
+ value: true
259
+ save_freq:
260
+ value: 25000
261
+ scheduler:
262
+ value:
263
+ name: cosine
264
+ num_warmup_steps: 500
265
+ type: diffuser
266
+ seed:
267
+ value: 100000
268
+ steps:
269
+ value: 5000
270
+ use_policy_training_preset:
271
+ value: true
272
+ wandb:
273
+ value:
274
+ disable_artifact: false
275
+ enable: true
276
+ entity: null
277
+ mode: null
278
+ notes: null
279
+ project: lerobot
280
+ run_id: null
wandb/run-20260103_150123-d7g2zo0w/files/output.log ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ INFO 2026-01-03 15:01:24 db_utils.py:102 Logs will be synced with wandb.
2
+ INFO 2026-01-03 15:01:24 db_utils.py:103 Track this run --> https://wandb.ai/nwaves-ai-nwaves/lerobot/runs/d7g2zo0w
3
+ INFO 2026-01-03 15:01:24 ot_train.py:183 Creating dataset
4
+ INFO 2026-01-03 15:01:24 ot_train.py:198 Creating env
5
+ gym id 'gym_pusht/PushT-v0' not found, attempting to import 'gym_pusht'...
6
+ /home/zeux/miniconda3/envs/lerobot-isaac-lab/lib/python3.11/site-packages/pygame/pkgdata.py:25: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81.
7
+ from pkg_resources import resource_stream, resource_exists
8
+ INFO 2026-01-03 15:01:24 ot_train.py:202 Creating policy
9
+ INFO 2026-01-03 15:01:25 ot_train.py:247 Creating optimizer and scheduler
10
+ INFO 2026-01-03 15:01:25 ot_train.py:259 Output dir: outputs/train/diffusion_pusht
11
+ INFO 2026-01-03 15:01:25 ot_train.py:261 cfg.env.task='PushT-v0'
12
+ INFO 2026-01-03 15:01:25 ot_train.py:262 Creating environment processors
13
+ INFO 2026-01-03 15:01:25 ot_train.py:264 cfg.steps=5000 (5K)
14
+ INFO 2026-01-03 15:01:25 ot_train.py:265 dataset.num_frames=9060 (9K)
15
+ INFO 2026-01-03 15:01:25 ot_train.py:266 dataset.num_episodes=11
16
+ INFO 2026-01-03 15:01:25 ot_train.py:269 Effective batch size: 64 x 1 = 64
17
+ INFO 2026-01-03 15:01:25 ot_train.py:270 num_learnable_params=266622758 (267M)
18
+ INFO 2026-01-03 15:01:25 ot_train.py:271 num_total_params=266622758 (267M)
19
+ INFO 2026-01-03 15:01:25 ot_train.py:327 Start offline training on a fixed dataset
20
+ INFO 2026-01-03 15:02:35 ot_train.py:354 step:200 smpl:13K ep:16 epch:1.41 loss:0.511 grdn:4.171 lr:2.0e-05 updt_s:0.053 data_s:0.295
21
+ INFO 2026-01-03 15:03:42 ot_train.py:354 step:400 smpl:26K ep:31 epch:2.83 loss:0.073 grdn:2.733 lr:6.0e-05 updt_s:0.041 data_s:0.296
22
+ INFO 2026-01-03 15:04:49 ot_train.py:354 step:600 smpl:38K ep:47 epch:4.24 loss:0.050 grdn:1.623 lr:9.5e-05 updt_s:0.041 data_s:0.294
23
+ INFO 2026-01-03 15:06:00 ot_train.py:354 step:800 smpl:51K ep:62 epch:5.65 loss:0.035 grdn:1.066 lr:9.9e-05 updt_s:0.041 data_s:0.314
24
+ INFO 2026-01-03 15:07:07 ot_train.py:354 step:1K smpl:64K ep:78 epch:7.06 loss:0.030 grdn:1.015 lr:9.8e-05 updt_s:0.042 data_s:0.290
25
+ INFO 2026-01-03 15:08:15 ot_train.py:354 step:1K smpl:77K ep:93 epch:8.48 loss:0.027 grdn:0.869 lr:9.6e-05 updt_s:0.041 data_s:0.300
26
+ INFO 2026-01-03 15:09:19 ot_train.py:354 step:1K smpl:90K ep:109 epch:9.89 loss:0.024 grdn:0.769 lr:9.2e-05 updt_s:0.041 data_s:0.279
27
+ INFO 2026-01-03 15:10:27 ot_train.py:354 step:2K smpl:102K ep:124 epch:11.30 loss:0.022 grdn:0.710 lr:8.8e-05 updt_s:0.041 data_s:0.300
28
+ INFO 2026-01-03 15:11:35 ot_train.py:354 step:2K smpl:115K ep:140 epch:12.72 loss:0.020 grdn:0.666 lr:8.3e-05 updt_s:0.041 data_s:0.298
29
+ INFO 2026-01-03 15:12:42 ot_train.py:354 step:2K smpl:128K ep:155 epch:14.13 loss:0.019 grdn:0.606 lr:7.8e-05 updt_s:0.041 data_s:0.293
30
+ INFO 2026-01-03 15:13:48 ot_train.py:354 step:2K smpl:141K ep:171 epch:15.54 loss:0.019 grdn:0.585 lr:7.2e-05 updt_s:0.041 data_s:0.292
31
+ INFO 2026-01-03 15:14:54 ot_train.py:354 step:2K smpl:154K ep:186 epch:16.95 loss:0.018 grdn:0.576 lr:6.5e-05 updt_s:0.041 data_s:0.290
32
+ INFO 2026-01-03 15:16:00 ot_train.py:354 step:3K smpl:166K ep:202 epch:18.37 loss:0.016 grdn:0.521 lr:5.9e-05 updt_s:0.041 data_s:0.289
33
+ INFO 2026-01-03 15:17:05 ot_train.py:354 step:3K smpl:179K ep:218 epch:19.78 loss:0.015 grdn:0.482 lr:5.2e-05 updt_s:0.041 data_s:0.281
34
+ INFO 2026-01-03 15:18:09 ot_train.py:354 step:3K smpl:192K ep:233 epch:21.19 loss:0.015 grdn:0.497 lr:4.5e-05 updt_s:0.041 data_s:0.281
35
+ INFO 2026-01-03 15:19:15 ot_train.py:354 step:3K smpl:205K ep:249 epch:22.60 loss:0.014 grdn:0.449 lr:3.8e-05 updt_s:0.041 data_s:0.289
36
+ INFO 2026-01-03 15:20:24 ot_train.py:354 step:3K smpl:218K ep:264 epch:24.02 loss:0.013 grdn:0.459 lr:3.1e-05 updt_s:0.041 data_s:0.301
37
+ INFO 2026-01-03 15:21:28 ot_train.py:354 step:4K smpl:230K ep:280 epch:25.43 loss:0.013 grdn:0.441 lr:2.5e-05 updt_s:0.041 data_s:0.282
38
+ INFO 2026-01-03 15:22:34 ot_train.py:354 step:4K smpl:243K ep:295 epch:26.84 loss:0.012 grdn:0.402 lr:1.9e-05 updt_s:0.041 data_s:0.288
39
+ INFO 2026-01-03 15:23:39 ot_train.py:354 step:4K smpl:256K ep:311 epch:28.26 loss:0.011 grdn:0.411 lr:1.4e-05 updt_s:0.041 data_s:0.283
40
+ INFO 2026-01-03 15:24:42 ot_train.py:354 step:4K smpl:269K ep:326 epch:29.67 loss:0.011 grdn:0.370 lr:9.6e-06 updt_s:0.041 data_s:0.277
41
+ INFO 2026-01-03 15:25:55 ot_train.py:354 step:4K smpl:282K ep:342 epch:31.08 loss:0.010 grdn:0.350 lr:5.9e-06 updt_s:0.041 data_s:0.322
42
+ INFO 2026-01-03 15:27:00 ot_train.py:354 step:5K smpl:294K ep:357 epch:32.49 loss:0.010 grdn:0.318 lr:3.0e-06 updt_s:0.041 data_s:0.283
43
+ INFO 2026-01-03 15:28:05 ot_train.py:354 step:5K smpl:307K ep:373 epch:33.91 loss:0.010 grdn:0.282 lr:1.1e-06 updt_s:0.041 data_s:0.286
44
+ INFO 2026-01-03 15:29:11 ot_train.py:354 step:5K smpl:320K ep:389 epch:35.32 loss:0.010 grdn:0.253 lr:1.6e-07 updt_s:0.041 data_s:0.288
45
+ INFO 2026-01-03 15:29:11 ot_train.py:364 Checkpoint policy after step 5000
46
+ INFO 2026-01-03 15:29:16 ot_train.py:435 End of training
47
+ Traceback (most recent call last):
48
+ File "/home/zeux/miniconda3/envs/lerobot-isaac-lab/lib/python3.11/site-packages/huggingface_hub/utils/_http.py", line 407, in hf_raise_for_status
49
+ response.raise_for_status()
50
+ File "/home/zeux/miniconda3/envs/lerobot-isaac-lab/lib/python3.11/site-packages/requests/models.py", line 1024, in raise_for_status
51
+ raise HTTPError(http_error_msg, response=self)
52
+ requests.exceptions.HTTPError: 401 Client Error: Unauthorized for url: https://huggingface.co/api/repos/create
53
+
54
+ The above exception was the direct cause of the following exception:
55
+
56
+ Traceback (most recent call last):
57
+ File "/home/zeux/miniconda3/envs/lerobot-isaac-lab/bin/lerobot-train", line 7, in <module>
58
+ sys.exit(main())
59
+ ^^^^^^
60
+ File "/home/zeux/lerobot/src/lerobot/scripts/lerobot_train.py", line 449, in main
61
+ train()
62
+ File "/home/zeux/lerobot/src/lerobot/configs/parser.py", line 233, in wrapper_inner
63
+ response = fn(cfg, *args, **kwargs)
64
+ ^^^^^^^^^^^^^^^^^^^^^^^^
65
+ File "/home/zeux/lerobot/src/lerobot/scripts/lerobot_train.py", line 439, in train
66
+ unwrapped_policy.push_model_to_hub(cfg)
67
+ File "/home/zeux/lerobot/src/lerobot/policies/pretrained.py", line 211, in push_model_to_hub
68
+ repo_id = api.create_repo(
69
+ ^^^^^^^^^^^^^^^^
70
+ File "/home/zeux/miniconda3/envs/lerobot-isaac-lab/lib/python3.11/site-packages/huggingface_hub/utils/_validators.py", line 114, in _inner_fn
71
+ return fn(*args, **kwargs)
72
+ ^^^^^^^^^^^^^^^^^^^
73
+ File "/home/zeux/miniconda3/envs/lerobot-isaac-lab/lib/python3.11/site-packages/huggingface_hub/hf_api.py", line 3766, in create_repo
74
+ hf_raise_for_status(r)
75
+ File "/home/zeux/miniconda3/envs/lerobot-isaac-lab/lib/python3.11/site-packages/huggingface_hub/utils/_http.py", line 480, in hf_raise_for_status
76
+ raise _format(HfHubHTTPError, str(e), response) from e
77
+ huggingface_hub.errors.HfHubHTTPError: 401 Client Error: Unauthorized for url: https://huggingface.co/api/repos/create (Request ID: Root=1-6958e874-46b24efd74284ee2579f8cc4;f8d83b9d-b550-47cf-9fd6-ae9c2ef628a6)
78
+
79
+ Invalid username or password.
wandb/run-20260103_150123-d7g2zo0w/files/requirements.txt ADDED
@@ -0,0 +1,303 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ isaacsim-extscache-physics==5.1.0.0
2
+ onnxscript==0.5.6
3
+ ipywidgets==8.1.5
4
+ junitparser==4.0.2
5
+ Markdown==3.10
6
+ shapely==2.1.2
7
+ isaacsim-extscache-kit-sdk==5.1.0.0
8
+ cmeel-octomap==1.10.0
9
+ anyio==4.12.0
10
+ aiofiles==23.2.1
11
+ isaacsim-test==5.1.0.0
12
+ aioitertools==0.11.0
13
+ tensorboard-data-server==0.7.2
14
+ aiobotocore==2.24.0
15
+ cmeel-zlib==1.3.1
16
+ wrapt==1.16.0
17
+ qrcode==7.4.2
18
+ asttokens==3.0.1
19
+ cloudpickle==3.1.2
20
+ lerobot==0.4.3
21
+ sympy==1.13.3
22
+ MarkupSafe==2.1.3
23
+ absl-py==2.3.1
24
+ pluggy==1.6.0
25
+ starlette==0.45.3
26
+ isaacsim-core==5.1.0.0
27
+ nvidia-cusparselt-cu12==0.6.3
28
+ hydra-core==1.3.2
29
+ cmeel-boost==1.83.0
30
+ opencv-python-headless==4.11.0.86
31
+ llvmlite==0.42.0
32
+ ml_dtypes==0.5.4
33
+ cryptography==44.0.0
34
+ jedi==0.19.2
35
+ onnx-ir==0.1.12
36
+ parso==0.8.5
37
+ mpmath==1.3.0
38
+ draccus==0.10.0
39
+ frozenlist==1.5.0
40
+ urllib3==2.5.0
41
+ pycparser==2.23
42
+ pexpect==4.9.0
43
+ prettytable==3.3.0
44
+ isaacsim-asset==5.1.0.0
45
+ fsspec==2024.6.1
46
+ hpp-fcl==2.4.4
47
+ gym-notices==0.1.0
48
+ fastapi==0.115.7
49
+ yarl==1.18.3
50
+ importlib_metadata==8.7.0
51
+ nvidia-cublas-cu12==12.8.3.14
52
+ nvidia-cuda-nvrtc-cu12==12.8.61
53
+ tokenizers==0.22.1
54
+ GitPython==3.1.45
55
+ pin-pink==3.1.0
56
+ torch==2.7.0+cu128
57
+ datasets==4.1.1
58
+ isaacsim-storage==5.1.0.0
59
+ aiosignal==1.3.2
60
+ cmeel-console-bridge==1.0.2.3
61
+ Pygments==2.19.2
62
+ propcache==0.2.1
63
+ pin==2.7.0
64
+ coverage==7.4.4
65
+ tensordict==0.9.0
66
+ pyserial==3.5
67
+ accelerate==1.12.0
68
+ pfzy==0.3.4
69
+ scipy==1.15.3
70
+ cycler==0.11.0
71
+ pytransform3d==3.14.3
72
+ nvidia-cuda-runtime-cu12==12.8.57
73
+ widgetsnbextension==4.0.15
74
+ idna==3.10
75
+ tornado==6.5.1
76
+ ipython_pygments_lexers==1.1.1
77
+ transformers==4.57.3
78
+ typing-inspection==0.4.2
79
+ antlr4-python3-runtime==4.9.3
80
+ uv==0.9.13
81
+ aiohttp==3.11.11
82
+ PyJWT==2.10.1
83
+ einops==0.8.1
84
+ Farama-Notifications==0.0.4
85
+ robomimic==0.4.0
86
+ tensorboard==2.20.0
87
+ rerun-sdk==0.26.2
88
+ matplotlib==3.10.3
89
+ isodate==0.6.1
90
+ isaaclab_mimic==1.0.15
91
+ nvidia-curand-cu12==10.3.9.55
92
+ nvidia-cusolver-cu12==11.7.2.55
93
+ rich==14.2.0
94
+ isaaclab_assets==0.2.3
95
+ gym==0.23.1
96
+ qdldl==0.1.7.post5
97
+ numba==0.59.1
98
+ jsonschema==4.25.1
99
+ cmeel-assimp==5.4.3.1
100
+ isaacsim-ros2==5.1.0.0
101
+ protobuf==6.33.1
102
+ anytree==2.13.0
103
+ torchcodec==0.5
104
+ lxml==4.9.4
105
+ nest-asyncio==1.5.6
106
+ cffi==2.0.0
107
+ rl_games==1.6.1
108
+ referencing==0.37.0
109
+ zipp==3.23.0
110
+ pandas==2.3.3
111
+ pyperclip==1.8.0
112
+ pytz==2024.1
113
+ av==15.1.0
114
+ azure-storage-blob==12.17.0
115
+ isaacsim-robot==5.1.0.0
116
+ isaacsim-example==5.1.0.0
117
+ pydantic==2.11.10
118
+ pyparsing==3.0.9
119
+ fonttools==4.55.3
120
+ tomli==2.3.0
121
+ orjson==3.11.4
122
+ isaacsim-template==5.1.0.0
123
+ safetensors==0.7.0
124
+ regex==2025.11.3
125
+ wcwidth==0.2.14
126
+ isaacsim-app==5.1.0.0
127
+ pyyaml-include==1.4.1
128
+ pymunk==7.2.0
129
+ pygame==2.6.1
130
+ traitlets==5.14.3
131
+ packaging==25.0
132
+ setproctitle==1.3.7
133
+ gym-pusht==0.1.6
134
+ networkx==3.3
135
+ decorator==5.2.1
136
+ h5py==3.15.1
137
+ markdown-it-py==4.0.0
138
+ multiprocess==0.70.16
139
+ nvidia-cuda-cupti-cu12==12.8.57
140
+ s3transfer==0.13.1
141
+ isaacsim-sensor==5.1.0.0
142
+ Jinja2==3.1.6
143
+ h11==0.16.0
144
+ mergedeep==1.3.4
145
+ loop-rate-limiters==1.2.0
146
+ isaacsim-utils==5.1.0.0
147
+ nvidia-cufile-cu12==1.13.0.11
148
+ pyglet==1.5.31
149
+ requests==2.32.3
150
+ aiodns==3.1.1
151
+ deepdiff==8.6.1
152
+ toml==0.10.2
153
+ isaacsim-robot-setup==5.1.0.0
154
+ isaaclab_tasks==0.11.8
155
+ torchvision==0.22.0+cu128
156
+ pytest-mock==3.15.1
157
+ hf_transfer==0.1.9
158
+ egl_probe==1.0.2
159
+ imageio-ffmpeg==0.6.0
160
+ python-dateutil==2.9.0.post0
161
+ isaaclab_rl==0.4.4
162
+ qpsolvers==4.8.2
163
+ comm==0.2.3
164
+ jupyterlab_widgets==3.0.16
165
+ jsonlines==4.0.0
166
+ xxhash==3.6.0
167
+ numpy==2.2.6
168
+ SO_100==0.1.0
169
+ imageio==2.37.0
170
+ rpds-py==0.29.0
171
+ triton==3.3.0
172
+ cmeel-tinyxml==2.6.2.3
173
+ isaacsim-code-editor==5.1.0.0
174
+ pycares==4.8.0
175
+ pypng==0.20220715.0
176
+ typing_extensions==4.12.2
177
+ warp-lang==1.10.0
178
+ python-multipart==0.0.20
179
+ pydantic_core==2.33.2
180
+ psutil==5.9.8
181
+ omegaconf==2.3.0
182
+ Werkzeug==3.1.4
183
+ python-dotenv==1.2.1
184
+ async-timeout==5.0.1
185
+ lerobot_so101_teleop==0.1.0
186
+ rsl-rl-lib==3.1.2
187
+ isaacsim-rl==5.1.0.0
188
+ attrs==25.1.0
189
+ pillow==11.3.0
190
+ oauthlib==3.2.2
191
+ mdurl==0.1.2
192
+ flatdict==4.0.1
193
+ charset-normalizer==3.3.2
194
+ setuptools==80.9.0
195
+ stack-data==0.6.3
196
+ nvidia-nvjitlink-cu12==12.8.61
197
+ gitdb==4.0.12
198
+ msal-extensions==1.0.0
199
+ cmeel-qhull==8.0.2.1
200
+ onnx==1.19.1
201
+ asteval==1.0.6
202
+ lazy_loader==0.4
203
+ flaky==3.8.1
204
+ quadprog==0.1.13
205
+ skrl==1.4.3
206
+ nvidia-cusparse-cu12==12.5.7.53
207
+ jmespath==1.0.1
208
+ matplotlib-inline==0.2.1
209
+ multidict==6.1.0
210
+ mypy_extensions==1.1.0
211
+ aioboto3==15.1.0
212
+ tqdm==4.67.1
213
+ boto3==1.39.11
214
+ nvidia-cufft-cu12==11.3.3.41
215
+ cmake==4.1.3
216
+ msgpack==1.1.2
217
+ certifi==2025.11.12
218
+ contourpy==1.3.1
219
+ num2words==0.5.14
220
+ isaacsim-replicator==5.1.0.0
221
+ smmap==5.0.2
222
+ httptools==0.6.1
223
+ cmeel-urdfdom==3.1.1.1
224
+ opencv-python==4.12.0.88
225
+ requests-oauthlib==1.3.1
226
+ nvidia-nccl-cu12==2.26.2
227
+ feetech-servo-sdk==1.0.0
228
+ gymnasium==1.2.1
229
+ iniconfig==2.3.0
230
+ isaaclab==0.48.5
231
+ ray==2.52.1
232
+ cmeel==0.57.3
233
+ pytest==9.0.1
234
+ isaacsim-robot-motion==5.1.0.0
235
+ python-xlib==0.33
236
+ azure-identity==1.13.0
237
+ isaacsim-ros1==5.1.0.0
238
+ msal==1.27.0
239
+ trimesh==4.5.1
240
+ Rtree==1.3.0
241
+ grpcio==1.76.0
242
+ ptyprocess==0.7.0
243
+ inquirerpy==0.3.4
244
+ evdev==1.9.2
245
+ PyYAML==6.0.2
246
+ huggingface-hub==0.35.3
247
+ ipython==9.7.0
248
+ prompt_toolkit==3.0.52
249
+ isaacsim==5.1.0.0
250
+ eigenpy==3.5.1
251
+ sentry-sdk==2.29.1
252
+ isaacsim-kernel==5.1.0.0
253
+ termcolor==3.2.0
254
+ six==1.17.0
255
+ wandb==0.21.4
256
+ annotated-types==0.7.0
257
+ nvidia-nvtx-cu12==12.8.55
258
+ wheel==0.45.1
259
+ filelock==3.13.1
260
+ dill==0.4.0
261
+ click==8.1.7
262
+ daqp==0.7.2
263
+ platformdirs==4.5.0
264
+ nvidia-cudnn-cu12==9.7.1.26
265
+ typing-inspect==0.9.0
266
+ osqp==0.6.7.post3
267
+ hf-xet==1.2.0
268
+ tifffile==2025.12.20
269
+ uvicorn==0.29.0
270
+ tzdata==2025.2
271
+ idna-ssl==1.1.0
272
+ executing==2.2.1
273
+ isaacsim-cortex==5.1.0.0
274
+ awscrt==0.23.8
275
+ pip==25.3
276
+ stable_baselines3==2.7.0
277
+ proglog==0.1.12
278
+ pyarrow==22.0.0
279
+ tensorboardX==2.6.4
280
+ isaacsim-benchmark==5.1.0.0
281
+ orderly-set==5.5.0
282
+ Pint==0.20.1
283
+ pynput==1.8.1
284
+ kiwisolver==1.4.4
285
+ gunicorn==23.0.0
286
+ diffusers==0.35.2
287
+ isaacsim-gui==5.1.0.0
288
+ jsonschema-specifications==2025.9.1
289
+ aiohappyeyeballs==2.4.4
290
+ azure-core==1.28.0
291
+ pure_eval==0.2.3
292
+ websockets==12.0
293
+ botocore==1.39.11
294
+ watchdog==4.0.0
295
+ docopt==0.6.2
296
+ hidapi==0.14.0.post2
297
+ scikit-image==0.26.0
298
+ dex_retargeting==0.4.6
299
+ isaacsim-extscache-kit==5.1.0.0
300
+ portalocker==2.7.0
301
+ moviepy==2.2.1
302
+ nlopt==2.7.1
303
+ lerobot==0.4.3
wandb/run-20260103_150123-d7g2zo0w/files/wandb-metadata.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "os": "Linux-6.8.0-90-generic-x86_64-with-glibc2.35",
3
+ "python": "CPython 3.11.6",
4
+ "startedAt": "2026-01-03T09:31:23.655123Z",
5
+ "args": [
6
+ "--output_dir=outputs/train/diffusion_pusht",
7
+ "--policy.type=diffusion",
8
+ "--policy.repo_id=kabilanKB/diffusion_pusht",
9
+ "--dataset.repo_id=kabilanKB/groot_n1",
10
+ "--env.type=pusht",
11
+ "--batch_size=64",
12
+ "--steps=5000",
13
+ "--eval_freq=25000",
14
+ "--save_freq=25000",
15
+ "--seed=100000",
16
+ "--wandb.enable=true"
17
+ ],
18
+ "program": "/home/zeux/miniconda3/envs/lerobot-isaac-lab/bin/lerobot-train",
19
+ "git": {
20
+ "remote": "https://github.com/Seeed-Projects/lerobot.git",
21
+ "commit": "af4766b60250f8a52d0b9de730a2fd1919c0c48b"
22
+ },
23
+ "root": "outputs/train/diffusion_pusht",
24
+ "host": "zeux",
25
+ "executable": "/home/zeux/miniconda3/envs/lerobot-isaac-lab/bin/python3.11",
26
+ "cpu_count": 24,
27
+ "cpu_count_logical": 24,
28
+ "gpu": "NVIDIA RTX PRO 6000 Blackwell Workstation Edition",
29
+ "gpu_count": 1,
30
+ "disk": {
31
+ "/": {
32
+ "total": "200449576960",
33
+ "used": "35326451712"
34
+ }
35
+ },
36
+ "memory": {
37
+ "total": "134489878528"
38
+ },
39
+ "gpu_nvidia": [
40
+ {
41
+ "name": "NVIDIA RTX PRO 6000 Blackwell Workstation Edition",
42
+ "memoryTotal": "102641958912",
43
+ "cudaCores": 24064,
44
+ "architecture": "Blackwell",
45
+ "uuid": "GPU-8c66f3c4-00c8-00a6-e5ff-633c5558ec8e"
46
+ }
47
+ ],
48
+ "cudaVersion": "13.0",
49
+ "writerId": "t8h8ncbdwrpgtz6o8u96dn6sadjx81fi"
50
+ }
wandb/run-20260103_150123-d7g2zo0w/files/wandb-summary.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"train/update_s":0.04063386584024556,"train/loss":0.009565832517109811,"_wandb":{"runtime":1672},"_runtime":1672.034563134,"train/episodes":388.5209713024283,"train/lr":1.6108986553432022e-07,"train/dataloading_s":0.2881657541701497,"train/epochs":35.32008830022075,"train/grad_norm":0.2533769802376628,"_step":5000,"train/steps":5000,"train/samples":320000,"_timestamp":1.7674343512667117e+09}
wandb/run-20260103_150123-d7g2zo0w/logs/debug-core.log ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"time":"2026-01-03T15:01:23.664178467+05:30","level":"INFO","msg":"main: starting server","port-filename":"/tmp/tmplj75yekg/port-179460.txt","pid":179460,"log-level":0,"disable-analytics":false,"shutdown-on-parent-exit":false,"enable-dcgm-profiling":false}
2
+ {"time":"2026-01-03T15:01:23.664434629+05:30","level":"INFO","msg":"server: will exit if parent process dies","ppid":179460}
3
+ {"time":"2026-01-03T15:01:23.664413933+05:30","level":"INFO","msg":"server: accepting connections","addr":{"Name":"/tmp/wandb-179460-179538-987341860/socket","Net":"unix"}}
4
+ {"time":"2026-01-03T15:01:23.8579796+05:30","level":"INFO","msg":"connection: ManageConnectionData: new connection created","id":"1(@)"}
5
+ {"time":"2026-01-03T15:01:23.863448228+05:30","level":"INFO","msg":"handleInformInit: received","streamId":"d7g2zo0w","id":"1(@)"}
6
+ {"time":"2026-01-03T15:01:24.296281412+05:30","level":"INFO","msg":"handleInformInit: stream started","streamId":"d7g2zo0w","id":"1(@)"}
7
+ {"time":"2026-01-03T15:29:16.802769726+05:30","level":"INFO","msg":"handleInformTeardown: server teardown initiated","id":"1(@)"}
8
+ {"time":"2026-01-03T15:29:16.8028192+05:30","level":"INFO","msg":"connection: closing","id":"1(@)"}
9
+ {"time":"2026-01-03T15:29:16.802828937+05:30","level":"INFO","msg":"server is shutting down"}
10
+ {"time":"2026-01-03T15:29:16.802862416+05:30","level":"INFO","msg":"connection: closed successfully","id":"1(@)"}
11
+ {"time":"2026-01-03T15:29:16.802887525+05:30","level":"INFO","msg":"server: listener closed","addr":{"Name":"/tmp/wandb-179460-179538-987341860/socket","Net":"unix"}}
12
+ {"time":"2026-01-03T15:30:47.931694299+05:30","level":"ERROR","msg":"processOutgoingData: flush error","error":"write unix /tmp/wandb-179460-179538-987341860/socket->@: use of closed network connection","id":"1(@)"}
13
+ {"time":"2026-01-03T15:30:48.340574524+05:30","level":"INFO","msg":"handleInformTeardown: server shutdown complete","id":"1(@)"}
14
+ {"time":"2026-01-03T15:30:48.340609377+05:30","level":"INFO","msg":"connection: ManageConnectionData: connection closed","id":"1(@)"}
15
+ {"time":"2026-01-03T15:30:48.340616959+05:30","level":"INFO","msg":"server is closed"}
wandb/run-20260103_150123-d7g2zo0w/logs/debug-internal.log ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"time":"2026-01-03T15:01:23.863494578+05:30","level":"INFO","msg":"stream: starting","core version":"0.21.4"}
2
+ {"time":"2026-01-03T15:01:24.296258619+05:30","level":"INFO","msg":"stream: created new stream","id":"d7g2zo0w"}
3
+ {"time":"2026-01-03T15:01:24.296279445+05:30","level":"INFO","msg":"stream: started","id":"d7g2zo0w"}
4
+ {"time":"2026-01-03T15:01:24.296367153+05:30","level":"INFO","msg":"writer: started","stream_id":"d7g2zo0w"}
5
+ {"time":"2026-01-03T15:01:24.296394921+05:30","level":"INFO","msg":"sender: started","stream_id":"d7g2zo0w"}
6
+ {"time":"2026-01-03T15:01:24.296462591+05:30","level":"INFO","msg":"handler: started","stream_id":"d7g2zo0w"}
7
+ {"time":"2026-01-03T15:29:16.802794058+05:30","level":"INFO","msg":"stream: closing","id":"d7g2zo0w"}
8
+ {"time":"2026-01-03T15:30:47.982676777+05:30","level":"INFO","msg":"fileTransfer: Close: file transfer manager closed"}
9
+ {"time":"2026-01-03T15:30:48.331286918+05:30","level":"INFO","msg":"handler: closed","stream_id":"d7g2zo0w"}
10
+ {"time":"2026-01-03T15:30:48.331347882+05:30","level":"INFO","msg":"sender: closed","stream_id":"d7g2zo0w"}
11
+ {"time":"2026-01-03T15:30:48.331354034+05:30","level":"INFO","msg":"stream: closed","id":"d7g2zo0w"}
wandb/run-20260103_150123-d7g2zo0w/logs/debug.log ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_setup.py:_flush():81] Current SDK version is 0.21.4
2
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_setup.py:_flush():81] Configure stats pid to 179460
3
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_setup.py:_flush():81] Loading settings from /home/zeux/.config/wandb/settings
4
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_setup.py:_flush():81] Loading settings from /home/zeux/lerobot/wandb/settings
5
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_setup.py:_flush():81] Loading settings from environment variables
6
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_init.py:setup_run_log_directory():686] Logging user logs to outputs/train/diffusion_pusht/wandb/run-20260103_150123-d7g2zo0w/logs/debug.log
7
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_init.py:setup_run_log_directory():687] Logging internal logs to outputs/train/diffusion_pusht/wandb/run-20260103_150123-d7g2zo0w/logs/debug-internal.log
8
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_init.py:init():813] calling init triggers
9
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_init.py:init():818] wandb.init called with sweep_config: {}
10
+ config: {'dataset': {'repo_id': 'kabilanKB/groot_n1', 'root': None, 'episodes': None, 'image_transforms': {'enable': False, 'max_num_transforms': 3, 'random_order': False, 'tfs': {'brightness': {'weight': 1.0, 'type': 'ColorJitter', 'kwargs': {'brightness': [0.8, 1.2]}}, 'contrast': {'weight': 1.0, 'type': 'ColorJitter', 'kwargs': {'contrast': [0.8, 1.2]}}, 'saturation': {'weight': 1.0, 'type': 'ColorJitter', 'kwargs': {'saturation': [0.5, 1.5]}}, 'hue': {'weight': 1.0, 'type': 'ColorJitter', 'kwargs': {'hue': [-0.05, 0.05]}}, 'sharpness': {'weight': 1.0, 'type': 'SharpnessJitter', 'kwargs': {'sharpness': [0.5, 1.5]}}, 'affine': {'weight': 1.0, 'type': 'RandomAffine', 'kwargs': {'degrees': [-5.0, 5.0], 'translate': [0.05, 0.05]}}}}, 'revision': None, 'use_imagenet_stats': True, 'video_backend': 'torchcodec', 'streaming': False}, 'env': {'type': 'pusht', 'task': 'PushT-v0', 'fps': 10, 'features': {'action': {'type': <FeatureType.ACTION: 'ACTION'>, 'shape': [2]}, 'agent_pos': {'type': <FeatureType.STATE: 'STATE'>, 'shape': [2]}, 'pixels': {'type': <FeatureType.VISUAL: 'VISUAL'>, 'shape': [384, 384, 3]}}, 'features_map': {'action': 'action', 'agent_pos': 'observation.state', 'environment_state': 'observation.environment_state', 'pixels': 'observation.image'}, 'max_parallel_tasks': 1, 'disable_env_checker': True, 'episode_length': 300, 'obs_type': 'pixels_agent_pos', 'render_mode': 'rgb_array', 'visualization_width': 384, 'visualization_height': 384, 'observation_height': 384, 'observation_width': 384}, 'policy': {'type': 'diffusion', 'n_obs_steps': 2, 'input_features': {}, 'output_features': {}, 'device': 'cuda', 'use_amp': False, 'push_to_hub': True, 'repo_id': 'kabilanKB/diffusion_pusht', 'private': None, 'tags': None, 'license': None, 'pretrained_path': None, 'horizon': 16, 'n_action_steps': 8, 'normalization_mapping': {'VISUAL': <NormalizationMode.MEAN_STD: 'MEAN_STD'>, 'STATE': <NormalizationMode.MIN_MAX: 'MIN_MAX'>, 'ACTION': <NormalizationMode.MIN_MAX: 'MIN_MAX'>}, 'drop_n_last_frames': 7, 'vision_backbone': 'resnet18', 'crop_shape': [84, 84], 'crop_is_random': True, 'pretrained_backbone_weights': None, 'use_group_norm': True, 'spatial_softmax_num_keypoints': 32, 'use_separate_rgb_encoder_per_camera': False, 'down_dims': [512, 1024, 2048], 'kernel_size': 5, 'n_groups': 8, 'diffusion_step_embed_dim': 128, 'use_film_scale_modulation': True, 'noise_scheduler_type': 'DDPM', 'num_train_timesteps': 100, 'beta_schedule': 'squaredcos_cap_v2', 'beta_start': 0.0001, 'beta_end': 0.02, 'prediction_type': 'epsilon', 'clip_sample': True, 'clip_sample_range': 1.0, 'num_inference_steps': None, 'do_mask_loss_for_padding': False, 'optimizer_lr': 0.0001, 'optimizer_betas': [0.95, 0.999], 'optimizer_eps': 1e-08, 'optimizer_weight_decay': 1e-06, 'scheduler_name': 'cosine', 'scheduler_warmup_steps': 500}, 'output_dir': 'outputs/train/diffusion_pusht', 'job_name': 'pusht_diffusion', 'resume': False, 'seed': 100000, 'num_workers': 4, 'batch_size': 64, 'steps': 5000, 'eval_freq': 25000, 'log_freq': 200, 'save_checkpoint': True, 'save_freq': 25000, 'use_policy_training_preset': True, 'optimizer': {'type': 'adam', 'lr': 0.0001, 'weight_decay': 1e-06, 'grad_clip_norm': 10.0, 'betas': [0.95, 0.999], 'eps': 1e-08}, 'scheduler': {'type': 'diffuser', 'num_warmup_steps': 500, 'name': 'cosine'}, 'eval': {'n_episodes': 50, 'batch_size': 50, 'use_async_envs': False}, 'wandb': {'enable': True, 'disable_artifact': False, 'project': 'lerobot', 'entity': None, 'notes': None, 'run_id': None, 'mode': None}, 'checkpoint_path': None, 'rename_map': {}, '_wandb': {}}
11
+ 2026-01-03 15:01:23,655 INFO MainThread:179460 [wandb_init.py:init():854] starting backend
12
+ 2026-01-03 15:01:23,858 INFO MainThread:179460 [wandb_init.py:init():857] sending inform_init request
13
+ 2026-01-03 15:01:23,860 INFO MainThread:179460 [wandb_init.py:init():865] backend started and connected
14
+ 2026-01-03 15:01:23,861 INFO MainThread:179460 [wandb_init.py:init():936] updated telemetry
15
+ 2026-01-03 15:01:23,864 INFO MainThread:179460 [wandb_init.py:init():960] communicating run to backend with 90.0 second timeout
16
+ 2026-01-03 15:01:24,767 INFO MainThread:179460 [wandb_init.py:init():1011] starting run threads in backend
17
+ 2026-01-03 15:01:24,827 INFO MainThread:179460 [wandb_run.py:_console_start():2506] atexit reg
18
+ 2026-01-03 15:01:24,827 INFO MainThread:179460 [wandb_run.py:_redirect():2354] redirect: wrap_raw
19
+ 2026-01-03 15:01:24,827 INFO MainThread:179460 [wandb_run.py:_redirect():2423] Wrapping output streams.
20
+ 2026-01-03 15:01:24,827 INFO MainThread:179460 [wandb_run.py:_redirect():2446] Redirects installed.
21
+ 2026-01-03 15:01:24,828 INFO MainThread:179460 [wandb_init.py:init():1049] run started, returning control to user process
22
+ 2026-01-03 15:29:16,802 INFO wandb-AsyncioManager-main:179460 [service_client.py:_forward_responses():84] Reached EOF.
23
+ 2026-01-03 15:29:16,802 INFO wandb-AsyncioManager-main:179460 [mailbox.py:close():137] Closing mailbox, abandoning 2 handles.
wandb/run-20260103_150123-d7g2zo0w/run-d7g2zo0w.wandb ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22dc5d92bdcda3a1038d7ec960f44e219519e7fc89d1335e668f98f233ad1eab
3
+ size 130102