diff --git a/008000/pretrained_model/config.json b/008000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..de21d70b500bc47cb13f917ad4729dfa1eaa4d01 --- /dev/null +++ b/008000/pretrained_model/config.json @@ -0,0 +1,114 @@ +{ + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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 +} \ No newline at end of file diff --git a/008000/pretrained_model/dataset_info.json b/008000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..51861b84efb6d96286d3e50d1768489f1ed5d633 --- /dev/null +++ b/008000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 42, + "total_frames": 10932, + "total_tasks": 1, + "total_videos": 210, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:42" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "observation.state": { + "dtype": "float32", + "shape": [ + 46 + ], + "names": [ + "joint_pos_left_0", + "joint_pos_left_1", + "joint_pos_left_2", + "joint_pos_left_3", + "joint_pos_left_4", + "joint_pos_left_5", + "joint_pos_left_6", + "joint_pos_right_0", + "joint_pos_right_1", + "joint_pos_right_2", + "joint_pos_right_3", + "joint_pos_right_4", + "joint_pos_right_5", + "joint_pos_right_6", + "tcp_left_pos_x", + "tcp_left_pos_y", + "tcp_left_pos_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_pos_x", + "tcp_right_pos_y", + "tcp_right_pos_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left_0", + "gripper_left_1", + "gripper_right_0", + "gripper_right_1", + "last_command_left_0", + "last_command_left_1", + "last_command_left_2", + "last_command_left_3", + "last_command_left_4", + "last_command_left_5", + "last_command_left_6", + "last_command_right_0", + "last_command_right_1", + "last_command_right_2", + "last_command_right_3", + "last_command_right_4", + "last_command_right_5", + "last_command_right_6" + ] + }, + "action": { + "dtype": "float32", + "shape": [ + 16 + ], + "names": [ + "tcp_left_x", + "tcp_left_y", + "tcp_left_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_x", + "tcp_right_y", + "tcp_right_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left", + "gripper_right" + ] + }, + "observation.images.rgb_static": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + } +} \ No newline at end of file diff --git a/008000/pretrained_model/model.safetensors b/008000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d6898aa7361699ba32bc54d6a7c1b45bfb315d23 --- /dev/null +++ b/008000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f657aa1c100b5480fb1289f3f199238804bf7eff4613483f3cb4423136a8bd2 +size 566907304 diff --git a/008000/pretrained_model/train_config.json b/008000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..db60fc6f0a47926e553712a2aadd5fe4b4b6315e --- /dev/null +++ b/008000/pretrained_model/train_config.json @@ -0,0 +1,267 @@ +{ + "dataset": { + "repo_id": "mh2_step_3_tcp", + "root": "data/lerobot/mh2_step_3_tcp", + "episodes": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ], + "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 + ] + } + } + } + }, + "revision": null, + "use_imagenet_stats": true, + "video_backend": "torchcodec" + }, + "env": null, + "policy": { + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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/2025-09-20/23-29-45_integrated_so3_diffusion", + "job_name": "integrated_so3_diffusion", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 400000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 8000, + "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": null, + "notes": null, + "run_id": "xlex5ae7", + "mode": null + } +} \ No newline at end of file diff --git a/008000/training_state/optimizer_param_groups.json b/008000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..8f8cfb692029b684d07093275929e3d44d636628 --- /dev/null +++ b/008000/training_state/optimizer_param_groups.json @@ -0,0 +1,775 @@ +[ + { + "lr": 9.991306336629842e-05, + "betas": [ + 0.95, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 1e-06, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": false, + "initial_lr": 0.0001, + "params": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753 + ] + } +] \ No newline at end of file diff --git a/008000/training_state/optimizer_state.safetensors b/008000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4fdda8f78dd88cb6e739bf06ce91cf23af130209 --- /dev/null +++ b/008000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d4e10786a80afb50d92a23aaedcad4ae5aa506ea29c07d4cda1d7c487d632b4 +size 1133825128 diff --git a/008000/training_state/rng_state.safetensors b/008000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..04ad280796e23fd6531d623b51773650e0ef2160 --- /dev/null +++ b/008000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a905fff2b4903a07062c3a61e0d4d8ab751cac4099b25e948d1a15eb8ff74669 +size 15708 diff --git a/008000/training_state/scheduler_state.json b/008000/training_state/scheduler_state.json new file mode 100644 index 0000000000000000000000000000000000000000..0e26b6043319885cb211e0236d768dfca0adaf5f --- /dev/null +++ b/008000/training_state/scheduler_state.json @@ -0,0 +1,15 @@ +{ + "base_lrs": [ + 0.0001 + ], + "last_epoch": 8000, + "_step_count": 8001, + "_is_initial": false, + "_get_lr_called_within_step": false, + "_last_lr": [ + 9.991306336629842e-05 + ], + "lr_lambdas": [ + null + ] +} \ No newline at end of file diff --git a/008000/training_state/training_step.json b/008000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..74d8cba01cab8506617b2cbae6f268fe80fbfa79 --- /dev/null +++ b/008000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 8000 +} \ No newline at end of file diff --git a/016000/pretrained_model/config.json b/016000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..de21d70b500bc47cb13f917ad4729dfa1eaa4d01 --- /dev/null +++ b/016000/pretrained_model/config.json @@ -0,0 +1,114 @@ +{ + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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 +} \ No newline at end of file diff --git a/016000/pretrained_model/dataset_info.json b/016000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..51861b84efb6d96286d3e50d1768489f1ed5d633 --- /dev/null +++ b/016000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 42, + "total_frames": 10932, + "total_tasks": 1, + "total_videos": 210, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:42" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "observation.state": { + "dtype": "float32", + "shape": [ + 46 + ], + "names": [ + "joint_pos_left_0", + "joint_pos_left_1", + "joint_pos_left_2", + "joint_pos_left_3", + "joint_pos_left_4", + "joint_pos_left_5", + "joint_pos_left_6", + "joint_pos_right_0", + "joint_pos_right_1", + "joint_pos_right_2", + "joint_pos_right_3", + "joint_pos_right_4", + "joint_pos_right_5", + "joint_pos_right_6", + "tcp_left_pos_x", + "tcp_left_pos_y", + "tcp_left_pos_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_pos_x", + "tcp_right_pos_y", + "tcp_right_pos_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left_0", + "gripper_left_1", + "gripper_right_0", + "gripper_right_1", + "last_command_left_0", + "last_command_left_1", + "last_command_left_2", + "last_command_left_3", + "last_command_left_4", + "last_command_left_5", + "last_command_left_6", + "last_command_right_0", + "last_command_right_1", + "last_command_right_2", + "last_command_right_3", + "last_command_right_4", + "last_command_right_5", + "last_command_right_6" + ] + }, + "action": { + "dtype": "float32", + "shape": [ + 16 + ], + "names": [ + "tcp_left_x", + "tcp_left_y", + "tcp_left_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_x", + "tcp_right_y", + "tcp_right_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left", + "gripper_right" + ] + }, + "observation.images.rgb_static": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + } +} \ No newline at end of file diff --git a/016000/pretrained_model/model.safetensors b/016000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..10585e6ce7612a4e11a9f2339d6ee53acda0fbe3 --- /dev/null +++ b/016000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d724daed2928c6b71fe9b2eb154e59bfea5d30fb0b23e8b61428868f70b9738f +size 566907304 diff --git a/016000/pretrained_model/train_config.json b/016000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..db60fc6f0a47926e553712a2aadd5fe4b4b6315e --- /dev/null +++ b/016000/pretrained_model/train_config.json @@ -0,0 +1,267 @@ +{ + "dataset": { + "repo_id": "mh2_step_3_tcp", + "root": "data/lerobot/mh2_step_3_tcp", + "episodes": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ], + "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 + ] + } + } + } + }, + "revision": null, + "use_imagenet_stats": true, + "video_backend": "torchcodec" + }, + "env": null, + "policy": { + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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/2025-09-20/23-29-45_integrated_so3_diffusion", + "job_name": "integrated_so3_diffusion", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 400000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 8000, + "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": null, + "notes": null, + "run_id": "xlex5ae7", + "mode": null + } +} \ No newline at end of file diff --git a/016000/training_state/optimizer_param_groups.json b/016000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..d82af3dbd45dbda3598022313edbb5640c0347aa --- /dev/null +++ b/016000/training_state/optimizer_param_groups.json @@ -0,0 +1,775 @@ +[ + { + "lr": 9.962903594884766e-05, + "betas": [ + 0.95, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 1e-06, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": false, + "initial_lr": 0.0001, + "params": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753 + ] + } +] \ No newline at end of file diff --git a/016000/training_state/optimizer_state.safetensors b/016000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..841f676934349ed13cdc2f8a5b20b8b8fb333549 --- /dev/null +++ b/016000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ce0ee95a61c3b072cf95631ce35de1a5111967b902d6c62d48f1a101f5ea2e9 +size 1133825128 diff --git a/016000/training_state/rng_state.safetensors b/016000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..08106e2f6badb169317e10b4adcf63223420413f --- /dev/null +++ b/016000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f87cf4b2fc5df0e3d4ac3b7b2704dfaba9ba6bc4bc19c5fe26c3a8b803575ac8 +size 15708 diff --git a/016000/training_state/scheduler_state.json b/016000/training_state/scheduler_state.json new file mode 100644 index 0000000000000000000000000000000000000000..85f2e101dfe69824d9d2c091027b40bbacdbaf86 --- /dev/null +++ b/016000/training_state/scheduler_state.json @@ -0,0 +1,15 @@ +{ + "base_lrs": [ + 0.0001 + ], + "last_epoch": 16000, + "_step_count": 16001, + "_is_initial": false, + "_get_lr_called_within_step": false, + "_last_lr": [ + 9.962903594884766e-05 + ], + "lr_lambdas": [ + null + ] +} \ No newline at end of file diff --git a/016000/training_state/training_step.json b/016000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..798020d90d4c39414dfab88708ecefd52f2e9ac5 --- /dev/null +++ b/016000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 16000 +} \ No newline at end of file diff --git a/024000/pretrained_model/config.json b/024000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..de21d70b500bc47cb13f917ad4729dfa1eaa4d01 --- /dev/null +++ b/024000/pretrained_model/config.json @@ -0,0 +1,114 @@ +{ + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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 +} \ No newline at end of file diff --git a/024000/pretrained_model/dataset_info.json b/024000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..51861b84efb6d96286d3e50d1768489f1ed5d633 --- /dev/null +++ b/024000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 42, + "total_frames": 10932, + "total_tasks": 1, + "total_videos": 210, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:42" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "observation.state": { + "dtype": "float32", + "shape": [ + 46 + ], + "names": [ + "joint_pos_left_0", + "joint_pos_left_1", + "joint_pos_left_2", + "joint_pos_left_3", + "joint_pos_left_4", + "joint_pos_left_5", + "joint_pos_left_6", + "joint_pos_right_0", + "joint_pos_right_1", + "joint_pos_right_2", + "joint_pos_right_3", + "joint_pos_right_4", + "joint_pos_right_5", + "joint_pos_right_6", + "tcp_left_pos_x", + "tcp_left_pos_y", + "tcp_left_pos_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_pos_x", + "tcp_right_pos_y", + "tcp_right_pos_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left_0", + "gripper_left_1", + "gripper_right_0", + "gripper_right_1", + "last_command_left_0", + "last_command_left_1", + "last_command_left_2", + "last_command_left_3", + "last_command_left_4", + "last_command_left_5", + "last_command_left_6", + "last_command_right_0", + "last_command_right_1", + "last_command_right_2", + "last_command_right_3", + "last_command_right_4", + "last_command_right_5", + "last_command_right_6" + ] + }, + "action": { + "dtype": "float32", + "shape": [ + 16 + ], + "names": [ + "tcp_left_x", + "tcp_left_y", + "tcp_left_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_x", + "tcp_right_y", + "tcp_right_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left", + "gripper_right" + ] + }, + "observation.images.rgb_static": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + } +} \ No newline at end of file diff --git a/024000/pretrained_model/model.safetensors b/024000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fb6d7e7b8ce42bfe93b6309f230363fbddc09d83 --- /dev/null +++ b/024000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ee054f162e33817b73fcf54c6184266e8bae86cf027a267267cb2d26b0cfae +size 566907304 diff --git a/024000/pretrained_model/train_config.json b/024000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..db60fc6f0a47926e553712a2aadd5fe4b4b6315e --- /dev/null +++ b/024000/pretrained_model/train_config.json @@ -0,0 +1,267 @@ +{ + "dataset": { + "repo_id": "mh2_step_3_tcp", + "root": "data/lerobot/mh2_step_3_tcp", + "episodes": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ], + "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 + ] + } + } + } + }, + "revision": null, + "use_imagenet_stats": true, + "video_backend": "torchcodec" + }, + "env": null, + "policy": { + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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/2025-09-20/23-29-45_integrated_so3_diffusion", + "job_name": "integrated_so3_diffusion", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 400000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 8000, + "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": null, + "notes": null, + "run_id": "xlex5ae7", + "mode": null + } +} \ No newline at end of file diff --git a/024000/training_state/optimizer_param_groups.json b/024000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..91f73ac2fdf57c7a85bf9796a9c580368c306f6f --- /dev/null +++ b/024000/training_state/optimizer_param_groups.json @@ -0,0 +1,775 @@ +[ + { + "lr": 9.91486549841951e-05, + "betas": [ + 0.95, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 1e-06, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": false, + "initial_lr": 0.0001, + "params": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753 + ] + } +] \ No newline at end of file diff --git a/024000/training_state/optimizer_state.safetensors b/024000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ec6b030fe86741d227883c39d772428be91ce4d0 --- /dev/null +++ b/024000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd31e1f21966ab2adf8d60767674d37cb5e2b045e725009ff0210fba523ca337 +size 1133825128 diff --git a/024000/training_state/rng_state.safetensors b/024000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..90099826599ee8db9a43789d8f67efa0d4ca0d73 --- /dev/null +++ b/024000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ef5bae3a37be82d8f36a05b644c36fd7af4aceb28b0f3fbb6a720b169e615f +size 15708 diff --git a/024000/training_state/scheduler_state.json b/024000/training_state/scheduler_state.json new file mode 100644 index 0000000000000000000000000000000000000000..8ff8e7a17cf9f49b747538a1aa0490a4595c5917 --- /dev/null +++ b/024000/training_state/scheduler_state.json @@ -0,0 +1,15 @@ +{ + "base_lrs": [ + 0.0001 + ], + "last_epoch": 24000, + "_step_count": 24001, + "_is_initial": false, + "_get_lr_called_within_step": false, + "_last_lr": [ + 9.91486549841951e-05 + ], + "lr_lambdas": [ + null + ] +} \ No newline at end of file diff --git a/024000/training_state/training_step.json b/024000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..4bf22a00d4c8b45342d351916c6e2f27ab1dd7d9 --- /dev/null +++ b/024000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 24000 +} \ No newline at end of file diff --git a/032000/pretrained_model/config.json b/032000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..de21d70b500bc47cb13f917ad4729dfa1eaa4d01 --- /dev/null +++ b/032000/pretrained_model/config.json @@ -0,0 +1,114 @@ +{ + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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 +} \ No newline at end of file diff --git a/032000/pretrained_model/dataset_info.json b/032000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..51861b84efb6d96286d3e50d1768489f1ed5d633 --- /dev/null +++ b/032000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 42, + "total_frames": 10932, + "total_tasks": 1, + "total_videos": 210, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:42" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "observation.state": { + "dtype": "float32", + "shape": [ + 46 + ], + "names": [ + "joint_pos_left_0", + "joint_pos_left_1", + "joint_pos_left_2", + "joint_pos_left_3", + "joint_pos_left_4", + "joint_pos_left_5", + "joint_pos_left_6", + "joint_pos_right_0", + "joint_pos_right_1", + "joint_pos_right_2", + "joint_pos_right_3", + "joint_pos_right_4", + "joint_pos_right_5", + "joint_pos_right_6", + "tcp_left_pos_x", + "tcp_left_pos_y", + "tcp_left_pos_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_pos_x", + "tcp_right_pos_y", + "tcp_right_pos_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left_0", + "gripper_left_1", + "gripper_right_0", + "gripper_right_1", + "last_command_left_0", + "last_command_left_1", + "last_command_left_2", + "last_command_left_3", + "last_command_left_4", + "last_command_left_5", + "last_command_left_6", + "last_command_right_0", + "last_command_right_1", + "last_command_right_2", + "last_command_right_3", + "last_command_right_4", + "last_command_right_5", + "last_command_right_6" + ] + }, + "action": { + "dtype": "float32", + "shape": [ + 16 + ], + "names": [ + "tcp_left_x", + "tcp_left_y", + "tcp_left_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_x", + "tcp_right_y", + "tcp_right_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left", + "gripper_right" + ] + }, + "observation.images.rgb_static": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + } +} \ No newline at end of file diff --git a/032000/pretrained_model/model.safetensors b/032000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5fbe3e403b3b2a032e4065bfec21929f66936617 --- /dev/null +++ b/032000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8cf01a8e28f50349f52933b172c4ac69ffa4467ebca4596f4d08896879ddd8 +size 566907304 diff --git a/032000/pretrained_model/train_config.json b/032000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..db60fc6f0a47926e553712a2aadd5fe4b4b6315e --- /dev/null +++ b/032000/pretrained_model/train_config.json @@ -0,0 +1,267 @@ +{ + "dataset": { + "repo_id": "mh2_step_3_tcp", + "root": "data/lerobot/mh2_step_3_tcp", + "episodes": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ], + "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 + ] + } + } + } + }, + "revision": null, + "use_imagenet_stats": true, + "video_backend": "torchcodec" + }, + "env": null, + "policy": { + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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/2025-09-20/23-29-45_integrated_so3_diffusion", + "job_name": "integrated_so3_diffusion", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 400000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 8000, + "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": null, + "notes": null, + "run_id": "xlex5ae7", + "mode": null + } +} \ No newline at end of file diff --git a/032000/training_state/optimizer_param_groups.json b/032000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..544cfa79fe5031559884d080a60d37074b1ed690 --- /dev/null +++ b/032000/training_state/optimizer_param_groups.json @@ -0,0 +1,775 @@ +[ + { + "lr": 9.847382106348893e-05, + "betas": [ + 0.95, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 1e-06, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": false, + "initial_lr": 0.0001, + "params": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753 + ] + } +] \ No newline at end of file diff --git a/032000/training_state/optimizer_state.safetensors b/032000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..79ca8898084dfe128bf9ae2eb8aea81e487da17b --- /dev/null +++ b/032000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e06e761e791d5dd5e9d3c455efec7636a12bbc54945e5fede3add74a962ac78c +size 1133825128 diff --git a/032000/training_state/rng_state.safetensors b/032000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0a1dabc6b3ce82b7998dacac0d471570320ac75f --- /dev/null +++ b/032000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bf89d90a0354523c125cba59636e0e7c67142392248e02c45cc200fc5c2f326 +size 15708 diff --git a/032000/training_state/scheduler_state.json b/032000/training_state/scheduler_state.json new file mode 100644 index 0000000000000000000000000000000000000000..182ae13a2833e3266efa2fe0f3a3ad9dc0b522be --- /dev/null +++ b/032000/training_state/scheduler_state.json @@ -0,0 +1,15 @@ +{ + "base_lrs": [ + 0.0001 + ], + "last_epoch": 32000, + "_step_count": 32001, + "_is_initial": false, + "_get_lr_called_within_step": false, + "_last_lr": [ + 9.847382106348893e-05 + ], + "lr_lambdas": [ + null + ] +} \ No newline at end of file diff --git a/032000/training_state/training_step.json b/032000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..360706c89342152bca05a3fe1d8c765a755213d2 --- /dev/null +++ b/032000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 32000 +} \ No newline at end of file diff --git a/040000/pretrained_model/config.json b/040000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..de21d70b500bc47cb13f917ad4729dfa1eaa4d01 --- /dev/null +++ b/040000/pretrained_model/config.json @@ -0,0 +1,114 @@ +{ + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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 +} \ No newline at end of file diff --git a/040000/pretrained_model/dataset_info.json b/040000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..51861b84efb6d96286d3e50d1768489f1ed5d633 --- /dev/null +++ b/040000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 42, + "total_frames": 10932, + "total_tasks": 1, + "total_videos": 210, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:42" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "observation.state": { + "dtype": "float32", + "shape": [ + 46 + ], + "names": [ + "joint_pos_left_0", + "joint_pos_left_1", + "joint_pos_left_2", + "joint_pos_left_3", + "joint_pos_left_4", + "joint_pos_left_5", + "joint_pos_left_6", + "joint_pos_right_0", + "joint_pos_right_1", + "joint_pos_right_2", + "joint_pos_right_3", + "joint_pos_right_4", + "joint_pos_right_5", + "joint_pos_right_6", + "tcp_left_pos_x", + "tcp_left_pos_y", + "tcp_left_pos_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_pos_x", + "tcp_right_pos_y", + "tcp_right_pos_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left_0", + "gripper_left_1", + "gripper_right_0", + "gripper_right_1", + "last_command_left_0", + "last_command_left_1", + "last_command_left_2", + "last_command_left_3", + "last_command_left_4", + "last_command_left_5", + "last_command_left_6", + "last_command_right_0", + "last_command_right_1", + "last_command_right_2", + "last_command_right_3", + "last_command_right_4", + "last_command_right_5", + "last_command_right_6" + ] + }, + "action": { + "dtype": "float32", + "shape": [ + 16 + ], + "names": [ + "tcp_left_x", + "tcp_left_y", + "tcp_left_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_x", + "tcp_right_y", + "tcp_right_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left", + "gripper_right" + ] + }, + "observation.images.rgb_static": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + } +} \ No newline at end of file diff --git a/040000/pretrained_model/model.safetensors b/040000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0a2fd827af60b7904400602ad9b1726b6477f48b --- /dev/null +++ b/040000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a193ec4d6720b0be879d68486acaee90a6e363d746e48e3d9d2d70ee4cb7411 +size 566907304 diff --git a/040000/pretrained_model/train_config.json b/040000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..db60fc6f0a47926e553712a2aadd5fe4b4b6315e --- /dev/null +++ b/040000/pretrained_model/train_config.json @@ -0,0 +1,267 @@ +{ + "dataset": { + "repo_id": "mh2_step_3_tcp", + "root": "data/lerobot/mh2_step_3_tcp", + "episodes": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ], + "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 + ] + } + } + } + }, + "revision": null, + "use_imagenet_stats": true, + "video_backend": "torchcodec" + }, + "env": null, + "policy": { + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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/2025-09-20/23-29-45_integrated_so3_diffusion", + "job_name": "integrated_so3_diffusion", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 400000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 8000, + "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": null, + "notes": null, + "run_id": "xlex5ae7", + "mode": null + } +} \ No newline at end of file diff --git a/040000/training_state/optimizer_param_groups.json b/040000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..d3d4c2a058a97370e0f034bec01db905f4de4a62 --- /dev/null +++ b/040000/training_state/optimizer_param_groups.json @@ -0,0 +1,775 @@ +[ + { + "lr": 9.76072041163695e-05, + "betas": [ + 0.95, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 1e-06, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": false, + "initial_lr": 0.0001, + "params": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753 + ] + } +] \ No newline at end of file diff --git a/040000/training_state/optimizer_state.safetensors b/040000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2e9eed81b2cf1a827e1571afdeaa571f4fb3f51d --- /dev/null +++ b/040000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2aeb3a8b843b2e74e6f11bd2f7e09c4fba1c76bf9d80e8a1e0f10fc837c1de0 +size 1133825128 diff --git a/040000/training_state/rng_state.safetensors b/040000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8cae9ba3966effdc819e8828d004d18842764380 --- /dev/null +++ b/040000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f26e8857fb185f71bd7b56f7ef86851e24b53bfcf6aaef74c94463f2f04cb2b7 +size 15708 diff --git a/040000/training_state/scheduler_state.json b/040000/training_state/scheduler_state.json new file mode 100644 index 0000000000000000000000000000000000000000..578d087a6a63a172c676b6eb7e750cdf0eeea20a --- /dev/null +++ b/040000/training_state/scheduler_state.json @@ -0,0 +1,15 @@ +{ + "base_lrs": [ + 0.0001 + ], + "last_epoch": 40000, + "_step_count": 40001, + "_is_initial": false, + "_get_lr_called_within_step": false, + "_last_lr": [ + 9.76072041163695e-05 + ], + "lr_lambdas": [ + null + ] +} \ No newline at end of file diff --git a/040000/training_state/training_step.json b/040000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..fe40d8ff4312c7e5a8fba9bcc932a43a1384ba77 --- /dev/null +++ b/040000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 40000 +} \ No newline at end of file diff --git a/048000/pretrained_model/config.json b/048000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..de21d70b500bc47cb13f917ad4729dfa1eaa4d01 --- /dev/null +++ b/048000/pretrained_model/config.json @@ -0,0 +1,114 @@ +{ + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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 +} \ No newline at end of file diff --git a/048000/pretrained_model/dataset_info.json b/048000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..51861b84efb6d96286d3e50d1768489f1ed5d633 --- /dev/null +++ b/048000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 42, + "total_frames": 10932, + "total_tasks": 1, + "total_videos": 210, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:42" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "observation.state": { + "dtype": "float32", + "shape": [ + 46 + ], + "names": [ + "joint_pos_left_0", + "joint_pos_left_1", + "joint_pos_left_2", + "joint_pos_left_3", + "joint_pos_left_4", + "joint_pos_left_5", + "joint_pos_left_6", + "joint_pos_right_0", + "joint_pos_right_1", + "joint_pos_right_2", + "joint_pos_right_3", + "joint_pos_right_4", + "joint_pos_right_5", + "joint_pos_right_6", + "tcp_left_pos_x", + "tcp_left_pos_y", + "tcp_left_pos_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_pos_x", + "tcp_right_pos_y", + "tcp_right_pos_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left_0", + "gripper_left_1", + "gripper_right_0", + "gripper_right_1", + "last_command_left_0", + "last_command_left_1", + "last_command_left_2", + "last_command_left_3", + "last_command_left_4", + "last_command_left_5", + "last_command_left_6", + "last_command_right_0", + "last_command_right_1", + "last_command_right_2", + "last_command_right_3", + "last_command_right_4", + "last_command_right_5", + "last_command_right_6" + ] + }, + "action": { + "dtype": "float32", + "shape": [ + 16 + ], + "names": [ + "tcp_left_x", + "tcp_left_y", + "tcp_left_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_x", + "tcp_right_y", + "tcp_right_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left", + "gripper_right" + ] + }, + "observation.images.rgb_static": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + } +} \ No newline at end of file diff --git a/048000/pretrained_model/model.safetensors b/048000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..de639dbcd1206c0a1f35b1715b04eec6820c3b10 --- /dev/null +++ b/048000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15ceb77b4d6a7c6dad3ca4af4745287ce97a4625edfd6b1ca259f2f98a6861c1 +size 566907304 diff --git a/048000/pretrained_model/train_config.json b/048000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..db60fc6f0a47926e553712a2aadd5fe4b4b6315e --- /dev/null +++ b/048000/pretrained_model/train_config.json @@ -0,0 +1,267 @@ +{ + "dataset": { + "repo_id": "mh2_step_3_tcp", + "root": "data/lerobot/mh2_step_3_tcp", + "episodes": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ], + "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 + ] + } + } + } + }, + "revision": null, + "use_imagenet_stats": true, + "video_backend": "torchcodec" + }, + "env": null, + "policy": { + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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/2025-09-20/23-29-45_integrated_so3_diffusion", + "job_name": "integrated_so3_diffusion", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 400000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 8000, + "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": null, + "notes": null, + "run_id": "xlex5ae7", + "mode": null + } +} \ No newline at end of file diff --git a/048000/training_state/optimizer_param_groups.json b/048000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..68c254da07de8c60f5efd9ca94c19e8959f8baea --- /dev/null +++ b/048000/training_state/optimizer_param_groups.json @@ -0,0 +1,775 @@ +[ + { + "lr": 9.655223284759363e-05, + "betas": [ + 0.95, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 1e-06, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": false, + "initial_lr": 0.0001, + "params": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753 + ] + } +] \ No newline at end of file diff --git a/048000/training_state/optimizer_state.safetensors b/048000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a8f4150409735c7b96c262c3fcda92ded7380d09 --- /dev/null +++ b/048000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1aaadb4b9edf62ec313f47dd1032cb6e2ac090caecfd0ea83e509405f520058 +size 1133825128 diff --git a/048000/training_state/rng_state.safetensors b/048000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2d11b09f7b5c8d4505dc7f9beb41b5e83fc9c833 --- /dev/null +++ b/048000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:470a805ce9b1e96fc3bf9936327b1002ec8944cc129c89ff29428ee5e3e027e0 +size 15708 diff --git a/048000/training_state/scheduler_state.json b/048000/training_state/scheduler_state.json new file mode 100644 index 0000000000000000000000000000000000000000..0386c37998a72619fc9012ec5378c924e66e5610 --- /dev/null +++ b/048000/training_state/scheduler_state.json @@ -0,0 +1,15 @@ +{ + "base_lrs": [ + 0.0001 + ], + "last_epoch": 48000, + "_step_count": 48001, + "_is_initial": false, + "_get_lr_called_within_step": false, + "_last_lr": [ + 9.655223284759363e-05 + ], + "lr_lambdas": [ + null + ] +} \ No newline at end of file diff --git a/048000/training_state/training_step.json b/048000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..8a90a8c25646098fb894b4970773a854c286dd33 --- /dev/null +++ b/048000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 48000 +} \ No newline at end of file diff --git a/056000/pretrained_model/config.json b/056000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..de21d70b500bc47cb13f917ad4729dfa1eaa4d01 --- /dev/null +++ b/056000/pretrained_model/config.json @@ -0,0 +1,114 @@ +{ + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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 +} \ No newline at end of file diff --git a/056000/pretrained_model/dataset_info.json b/056000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..51861b84efb6d96286d3e50d1768489f1ed5d633 --- /dev/null +++ b/056000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 42, + "total_frames": 10932, + "total_tasks": 1, + "total_videos": 210, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:42" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "observation.state": { + "dtype": "float32", + "shape": [ + 46 + ], + "names": [ + "joint_pos_left_0", + "joint_pos_left_1", + "joint_pos_left_2", + "joint_pos_left_3", + "joint_pos_left_4", + "joint_pos_left_5", + "joint_pos_left_6", + "joint_pos_right_0", + "joint_pos_right_1", + "joint_pos_right_2", + "joint_pos_right_3", + "joint_pos_right_4", + "joint_pos_right_5", + "joint_pos_right_6", + "tcp_left_pos_x", + "tcp_left_pos_y", + "tcp_left_pos_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_pos_x", + "tcp_right_pos_y", + "tcp_right_pos_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left_0", + "gripper_left_1", + "gripper_right_0", + "gripper_right_1", + "last_command_left_0", + "last_command_left_1", + "last_command_left_2", + "last_command_left_3", + "last_command_left_4", + "last_command_left_5", + "last_command_left_6", + "last_command_right_0", + "last_command_right_1", + "last_command_right_2", + "last_command_right_3", + "last_command_right_4", + "last_command_right_5", + "last_command_right_6" + ] + }, + "action": { + "dtype": "float32", + "shape": [ + 16 + ], + "names": [ + "tcp_left_x", + "tcp_left_y", + "tcp_left_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_x", + "tcp_right_y", + "tcp_right_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left", + "gripper_right" + ] + }, + "observation.images.rgb_static": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + } +} \ No newline at end of file diff --git a/056000/pretrained_model/model.safetensors b/056000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..acc0d8a83ee7ba765d7e162ad3dfedce60e1ebea --- /dev/null +++ b/056000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdbb314cae050498c71715a0afcc4a53f932aa2e2b8c2845c077da4f992545cc +size 566907304 diff --git a/056000/pretrained_model/train_config.json b/056000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..db60fc6f0a47926e553712a2aadd5fe4b4b6315e --- /dev/null +++ b/056000/pretrained_model/train_config.json @@ -0,0 +1,267 @@ +{ + "dataset": { + "repo_id": "mh2_step_3_tcp", + "root": "data/lerobot/mh2_step_3_tcp", + "episodes": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ], + "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 + ] + } + } + } + }, + "revision": null, + "use_imagenet_stats": true, + "video_backend": "torchcodec" + }, + "env": null, + "policy": { + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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/2025-09-20/23-29-45_integrated_so3_diffusion", + "job_name": "integrated_so3_diffusion", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 400000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 8000, + "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": null, + "notes": null, + "run_id": "xlex5ae7", + "mode": null + } +} \ No newline at end of file diff --git a/056000/training_state/optimizer_param_groups.json b/056000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..1c840bae18cf67986a55ddf22cf0cfee98c2ed8c --- /dev/null +++ b/056000/training_state/optimizer_param_groups.json @@ -0,0 +1,775 @@ +[ + { + "lr": 9.531308117162205e-05, + "betas": [ + 0.95, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 1e-06, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": false, + "initial_lr": 0.0001, + "params": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753 + ] + } +] \ No newline at end of file diff --git a/056000/training_state/optimizer_state.safetensors b/056000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..35aa8c917d1f29e8ec2de4744b82b6f6f4b05e4e --- /dev/null +++ b/056000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7389ed3c2a19373c34f7b3aaed54e8c347f8295085c1377fb1c77e22adc6b0d5 +size 1133825128 diff --git a/056000/training_state/rng_state.safetensors b/056000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..78095e213a44b7b5593db460d26ce38ebc3b52a8 --- /dev/null +++ b/056000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c056b5f19f0b7b60bfa4c21560154e7beb6f5d966315f770e79c128f83c26e8d +size 15708 diff --git a/056000/training_state/scheduler_state.json b/056000/training_state/scheduler_state.json new file mode 100644 index 0000000000000000000000000000000000000000..e35a1550b8daaee6798a8701dbf40952c05356f0 --- /dev/null +++ b/056000/training_state/scheduler_state.json @@ -0,0 +1,15 @@ +{ + "base_lrs": [ + 0.0001 + ], + "last_epoch": 56000, + "_step_count": 56001, + "_is_initial": false, + "_get_lr_called_within_step": false, + "_last_lr": [ + 9.531308117162205e-05 + ], + "lr_lambdas": [ + null + ] +} \ No newline at end of file diff --git a/056000/training_state/training_step.json b/056000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..d5df21c008b640bf1b86544cf43ea370394c96e1 --- /dev/null +++ b/056000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 56000 +} \ No newline at end of file diff --git a/064000/pretrained_model/config.json b/064000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..de21d70b500bc47cb13f917ad4729dfa1eaa4d01 --- /dev/null +++ b/064000/pretrained_model/config.json @@ -0,0 +1,114 @@ +{ + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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 +} \ No newline at end of file diff --git a/064000/pretrained_model/dataset_info.json b/064000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..51861b84efb6d96286d3e50d1768489f1ed5d633 --- /dev/null +++ b/064000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 42, + "total_frames": 10932, + "total_tasks": 1, + "total_videos": 210, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:42" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "observation.state": { + "dtype": "float32", + "shape": [ + 46 + ], + "names": [ + "joint_pos_left_0", + "joint_pos_left_1", + "joint_pos_left_2", + "joint_pos_left_3", + "joint_pos_left_4", + "joint_pos_left_5", + "joint_pos_left_6", + "joint_pos_right_0", + "joint_pos_right_1", + "joint_pos_right_2", + "joint_pos_right_3", + "joint_pos_right_4", + "joint_pos_right_5", + "joint_pos_right_6", + "tcp_left_pos_x", + "tcp_left_pos_y", + "tcp_left_pos_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_pos_x", + "tcp_right_pos_y", + "tcp_right_pos_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left_0", + "gripper_left_1", + "gripper_right_0", + "gripper_right_1", + "last_command_left_0", + "last_command_left_1", + "last_command_left_2", + "last_command_left_3", + "last_command_left_4", + "last_command_left_5", + "last_command_left_6", + "last_command_right_0", + "last_command_right_1", + "last_command_right_2", + "last_command_right_3", + "last_command_right_4", + "last_command_right_5", + "last_command_right_6" + ] + }, + "action": { + "dtype": "float32", + "shape": [ + 16 + ], + "names": [ + "tcp_left_x", + "tcp_left_y", + "tcp_left_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_x", + "tcp_right_y", + "tcp_right_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left", + "gripper_right" + ] + }, + "observation.images.rgb_static": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + } +} \ No newline at end of file diff --git a/064000/pretrained_model/model.safetensors b/064000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..65c472c70e0788ec059d232a72215314886aa1aa --- /dev/null +++ b/064000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc69367a47f9d2a93c2df38f62fd4b7c8aa26c1e953b3da1432f977e04146109 +size 566907304 diff --git a/064000/pretrained_model/train_config.json b/064000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..db60fc6f0a47926e553712a2aadd5fe4b4b6315e --- /dev/null +++ b/064000/pretrained_model/train_config.json @@ -0,0 +1,267 @@ +{ + "dataset": { + "repo_id": "mh2_step_3_tcp", + "root": "data/lerobot/mh2_step_3_tcp", + "episodes": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ], + "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 + ] + } + } + } + }, + "revision": null, + "use_imagenet_stats": true, + "video_backend": "torchcodec" + }, + "env": null, + "policy": { + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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/2025-09-20/23-29-45_integrated_so3_diffusion", + "job_name": "integrated_so3_diffusion", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 400000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 8000, + "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": null, + "notes": null, + "run_id": "xlex5ae7", + "mode": null + } +} \ No newline at end of file diff --git a/064000/training_state/optimizer_param_groups.json b/064000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..4d1b702e430bc568adeb700e5e68175eb547dc66 --- /dev/null +++ b/064000/training_state/optimizer_param_groups.json @@ -0,0 +1,775 @@ +[ + { + "lr": 9.389465169884093e-05, + "betas": [ + 0.95, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 1e-06, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": false, + "initial_lr": 0.0001, + "params": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753 + ] + } +] \ No newline at end of file diff --git a/064000/training_state/optimizer_state.safetensors b/064000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b02e910c1fcea62a0be95c47d0ad49b6a338bb62 --- /dev/null +++ b/064000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6516de2a8e867f584c425fbf23203d502b4774a7c1f36bd3996565e4506ebf80 +size 1133825128 diff --git a/064000/training_state/rng_state.safetensors b/064000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9205c4aa975a8bbbbca03a9ae15e679aa3378cdd --- /dev/null +++ b/064000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4873fd62165cf146a4ad6b56e57d1fa17e1e41ca67cd294298b2b7063143e21 +size 15708 diff --git a/064000/training_state/scheduler_state.json b/064000/training_state/scheduler_state.json new file mode 100644 index 0000000000000000000000000000000000000000..81e10010661c5295c7b6930da4c7997431cd9ff7 --- /dev/null +++ b/064000/training_state/scheduler_state.json @@ -0,0 +1,15 @@ +{ + "base_lrs": [ + 0.0001 + ], + "last_epoch": 64000, + "_step_count": 64001, + "_is_initial": false, + "_get_lr_called_within_step": false, + "_last_lr": [ + 9.389465169884093e-05 + ], + "lr_lambdas": [ + null + ] +} \ No newline at end of file diff --git a/064000/training_state/training_step.json b/064000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..93f8d7857be77a2102a75aa3f789ca2bb3af34d0 --- /dev/null +++ b/064000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 64000 +} \ No newline at end of file diff --git a/072000/pretrained_model/config.json b/072000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..de21d70b500bc47cb13f917ad4729dfa1eaa4d01 --- /dev/null +++ b/072000/pretrained_model/config.json @@ -0,0 +1,114 @@ +{ + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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 +} \ No newline at end of file diff --git a/072000/pretrained_model/dataset_info.json b/072000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..51861b84efb6d96286d3e50d1768489f1ed5d633 --- /dev/null +++ b/072000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 42, + "total_frames": 10932, + "total_tasks": 1, + "total_videos": 210, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:42" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "observation.state": { + "dtype": "float32", + "shape": [ + 46 + ], + "names": [ + "joint_pos_left_0", + "joint_pos_left_1", + "joint_pos_left_2", + "joint_pos_left_3", + "joint_pos_left_4", + "joint_pos_left_5", + "joint_pos_left_6", + "joint_pos_right_0", + "joint_pos_right_1", + "joint_pos_right_2", + "joint_pos_right_3", + "joint_pos_right_4", + "joint_pos_right_5", + "joint_pos_right_6", + "tcp_left_pos_x", + "tcp_left_pos_y", + "tcp_left_pos_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_pos_x", + "tcp_right_pos_y", + "tcp_right_pos_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left_0", + "gripper_left_1", + "gripper_right_0", + "gripper_right_1", + "last_command_left_0", + "last_command_left_1", + "last_command_left_2", + "last_command_left_3", + "last_command_left_4", + "last_command_left_5", + "last_command_left_6", + "last_command_right_0", + "last_command_right_1", + "last_command_right_2", + "last_command_right_3", + "last_command_right_4", + "last_command_right_5", + "last_command_right_6" + ] + }, + "action": { + "dtype": "float32", + "shape": [ + 16 + ], + "names": [ + "tcp_left_x", + "tcp_left_y", + "tcp_left_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_x", + "tcp_right_y", + "tcp_right_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left", + "gripper_right" + ] + }, + "observation.images.rgb_static": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + } +} \ No newline at end of file diff --git a/072000/pretrained_model/model.safetensors b/072000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3d34908183ac893d7cbef005b97dfcd05672a12d --- /dev/null +++ b/072000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90314d95eab83274c5cd1ce0514521118d8e68c7cbb97bdfa17eea402da3fcec +size 566907304 diff --git a/072000/pretrained_model/train_config.json b/072000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..db60fc6f0a47926e553712a2aadd5fe4b4b6315e --- /dev/null +++ b/072000/pretrained_model/train_config.json @@ -0,0 +1,267 @@ +{ + "dataset": { + "repo_id": "mh2_step_3_tcp", + "root": "data/lerobot/mh2_step_3_tcp", + "episodes": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ], + "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 + ] + } + } + } + }, + "revision": null, + "use_imagenet_stats": true, + "video_backend": "torchcodec" + }, + "env": null, + "policy": { + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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/2025-09-20/23-29-45_integrated_so3_diffusion", + "job_name": "integrated_so3_diffusion", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 400000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 8000, + "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": null, + "notes": null, + "run_id": "xlex5ae7", + "mode": null + } +} \ No newline at end of file diff --git a/072000/training_state/optimizer_param_groups.json b/072000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..8ab54341171b77a77b6215495f7d09ea6e78bf99 --- /dev/null +++ b/072000/training_state/optimizer_param_groups.json @@ -0,0 +1,775 @@ +[ + { + "lr": 9.230255633875264e-05, + "betas": [ + 0.95, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 1e-06, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": false, + "initial_lr": 0.0001, + "params": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753 + ] + } +] \ No newline at end of file diff --git a/072000/training_state/optimizer_state.safetensors b/072000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..eabf0a2aef5d1a2269c23883eea9ea078952bd1f --- /dev/null +++ b/072000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99497eb2ec1f7be460a8e389f6076721be9fdcd6d3d81e9752092bbbff228fed +size 1133825128 diff --git a/072000/training_state/rng_state.safetensors b/072000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..40104769b80ac1c3533b7fcc0eadc05112901539 --- /dev/null +++ b/072000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58018222ac725813c339810211868cdc169f85ad4313406f1eedc8da98ddbb28 +size 15708 diff --git a/072000/training_state/scheduler_state.json b/072000/training_state/scheduler_state.json new file mode 100644 index 0000000000000000000000000000000000000000..c401be35270aa5f36f2c37674c4206df48823a32 --- /dev/null +++ b/072000/training_state/scheduler_state.json @@ -0,0 +1,15 @@ +{ + "base_lrs": [ + 0.0001 + ], + "last_epoch": 72000, + "_step_count": 72001, + "_is_initial": false, + "_get_lr_called_within_step": false, + "_last_lr": [ + 9.230255633875264e-05 + ], + "lr_lambdas": [ + null + ] +} \ No newline at end of file diff --git a/072000/training_state/training_step.json b/072000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..757b56126cc8b2a9aecde88a6865de0a17f12568 --- /dev/null +++ b/072000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 72000 +} \ No newline at end of file diff --git a/080000/pretrained_model/config.json b/080000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..de21d70b500bc47cb13f917ad4729dfa1eaa4d01 --- /dev/null +++ b/080000/pretrained_model/config.json @@ -0,0 +1,114 @@ +{ + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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 +} \ No newline at end of file diff --git a/080000/pretrained_model/dataset_info.json b/080000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..51861b84efb6d96286d3e50d1768489f1ed5d633 --- /dev/null +++ b/080000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 42, + "total_frames": 10932, + "total_tasks": 1, + "total_videos": 210, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:42" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "observation.state": { + "dtype": "float32", + "shape": [ + 46 + ], + "names": [ + "joint_pos_left_0", + "joint_pos_left_1", + "joint_pos_left_2", + "joint_pos_left_3", + "joint_pos_left_4", + "joint_pos_left_5", + "joint_pos_left_6", + "joint_pos_right_0", + "joint_pos_right_1", + "joint_pos_right_2", + "joint_pos_right_3", + "joint_pos_right_4", + "joint_pos_right_5", + "joint_pos_right_6", + "tcp_left_pos_x", + "tcp_left_pos_y", + "tcp_left_pos_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_pos_x", + "tcp_right_pos_y", + "tcp_right_pos_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left_0", + "gripper_left_1", + "gripper_right_0", + "gripper_right_1", + "last_command_left_0", + "last_command_left_1", + "last_command_left_2", + "last_command_left_3", + "last_command_left_4", + "last_command_left_5", + "last_command_left_6", + "last_command_right_0", + "last_command_right_1", + "last_command_right_2", + "last_command_right_3", + "last_command_right_4", + "last_command_right_5", + "last_command_right_6" + ] + }, + "action": { + "dtype": "float32", + "shape": [ + 16 + ], + "names": [ + "tcp_left_x", + "tcp_left_y", + "tcp_left_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_x", + "tcp_right_y", + "tcp_right_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left", + "gripper_right" + ] + }, + "observation.images.rgb_static": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + } +} \ No newline at end of file diff --git a/080000/pretrained_model/model.safetensors b/080000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..578e923e99bd7e8b50a82270fe3d2af3b044c8f4 --- /dev/null +++ b/080000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7469ba6b7f06217a0dfa4e705f7b9b236c573c6e5b427f6cd325f532e41277c +size 566907304 diff --git a/080000/pretrained_model/train_config.json b/080000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..db60fc6f0a47926e553712a2aadd5fe4b4b6315e --- /dev/null +++ b/080000/pretrained_model/train_config.json @@ -0,0 +1,267 @@ +{ + "dataset": { + "repo_id": "mh2_step_3_tcp", + "root": "data/lerobot/mh2_step_3_tcp", + "episodes": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ], + "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 + ] + } + } + } + }, + "revision": null, + "use_imagenet_stats": true, + "video_backend": "torchcodec" + }, + "env": null, + "policy": { + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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/2025-09-20/23-29-45_integrated_so3_diffusion", + "job_name": "integrated_so3_diffusion", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 400000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 8000, + "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": null, + "notes": null, + "run_id": "xlex5ae7", + "mode": null + } +} \ No newline at end of file diff --git a/080000/training_state/optimizer_param_groups.json b/080000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..00f231d3a1977bb549986946df2af71ae0835537 --- /dev/null +++ b/080000/training_state/optimizer_param_groups.json @@ -0,0 +1,775 @@ +[ + { + "lr": 9.054309409687809e-05, + "betas": [ + 0.95, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 1e-06, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": false, + "initial_lr": 0.0001, + "params": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753 + ] + } +] \ No newline at end of file diff --git a/080000/training_state/optimizer_state.safetensors b/080000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..aff5442c09a02c7d2e737df7ee12030b51d1eeef --- /dev/null +++ b/080000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7130effa1579e10920da4769826dcf6936d162e3361bce71cc4e299bb70d0010 +size 1133825128 diff --git a/080000/training_state/rng_state.safetensors b/080000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3f59be578efc811b68afefe01f8792e253bf447d --- /dev/null +++ b/080000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e4407a54b779a7c9a8ed0ecc57035a8faad12dcd8fb5c564d9222559a989334 +size 15708 diff --git a/080000/training_state/scheduler_state.json b/080000/training_state/scheduler_state.json new file mode 100644 index 0000000000000000000000000000000000000000..c3add2e1b542b60fe610697ad4766664375f1f43 --- /dev/null +++ b/080000/training_state/scheduler_state.json @@ -0,0 +1,15 @@ +{ + "base_lrs": [ + 0.0001 + ], + "last_epoch": 80000, + "_step_count": 80001, + "_is_initial": false, + "_get_lr_called_within_step": false, + "_last_lr": [ + 9.054309409687809e-05 + ], + "lr_lambdas": [ + null + ] +} \ No newline at end of file diff --git a/080000/training_state/training_step.json b/080000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..384eace4ecc2a6cba352aa7cf27f04405b7319c3 --- /dev/null +++ b/080000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 80000 +} \ No newline at end of file diff --git a/088000/pretrained_model/config.json b/088000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..de21d70b500bc47cb13f917ad4729dfa1eaa4d01 --- /dev/null +++ b/088000/pretrained_model/config.json @@ -0,0 +1,114 @@ +{ + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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 +} \ No newline at end of file diff --git a/088000/pretrained_model/dataset_info.json b/088000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..51861b84efb6d96286d3e50d1768489f1ed5d633 --- /dev/null +++ b/088000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 42, + "total_frames": 10932, + "total_tasks": 1, + "total_videos": 210, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:42" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "observation.state": { + "dtype": "float32", + "shape": [ + 46 + ], + "names": [ + "joint_pos_left_0", + "joint_pos_left_1", + "joint_pos_left_2", + "joint_pos_left_3", + "joint_pos_left_4", + "joint_pos_left_5", + "joint_pos_left_6", + "joint_pos_right_0", + "joint_pos_right_1", + "joint_pos_right_2", + "joint_pos_right_3", + "joint_pos_right_4", + "joint_pos_right_5", + "joint_pos_right_6", + "tcp_left_pos_x", + "tcp_left_pos_y", + "tcp_left_pos_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_pos_x", + "tcp_right_pos_y", + "tcp_right_pos_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left_0", + "gripper_left_1", + "gripper_right_0", + "gripper_right_1", + "last_command_left_0", + "last_command_left_1", + "last_command_left_2", + "last_command_left_3", + "last_command_left_4", + "last_command_left_5", + "last_command_left_6", + "last_command_right_0", + "last_command_right_1", + "last_command_right_2", + "last_command_right_3", + "last_command_right_4", + "last_command_right_5", + "last_command_right_6" + ] + }, + "action": { + "dtype": "float32", + "shape": [ + 16 + ], + "names": [ + "tcp_left_x", + "tcp_left_y", + "tcp_left_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_x", + "tcp_right_y", + "tcp_right_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left", + "gripper_right" + ] + }, + "observation.images.rgb_static": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + } +} \ No newline at end of file diff --git a/088000/pretrained_model/model.safetensors b/088000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7b40e95826a8d9e0dd3d2aa007984cbb5b0cda3d --- /dev/null +++ b/088000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de335205e2de4d476f139d641131b2395eef3173c18e51e123fe051c1f7eadeb +size 566907304 diff --git a/088000/pretrained_model/train_config.json b/088000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..db60fc6f0a47926e553712a2aadd5fe4b4b6315e --- /dev/null +++ b/088000/pretrained_model/train_config.json @@ -0,0 +1,267 @@ +{ + "dataset": { + "repo_id": "mh2_step_3_tcp", + "root": "data/lerobot/mh2_step_3_tcp", + "episodes": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ], + "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 + ] + } + } + } + }, + "revision": null, + "use_imagenet_stats": true, + "video_backend": "torchcodec" + }, + "env": null, + "policy": { + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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/2025-09-20/23-29-45_integrated_so3_diffusion", + "job_name": "integrated_so3_diffusion", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 400000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 8000, + "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": null, + "notes": null, + "run_id": "xlex5ae7", + "mode": null + } +} \ No newline at end of file diff --git a/088000/training_state/optimizer_param_groups.json b/088000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..4a8bf50c153cff72eedc2cadba0f1b173d95fae1 --- /dev/null +++ b/088000/training_state/optimizer_param_groups.json @@ -0,0 +1,775 @@ +[ + { + "lr": 8.86232261532151e-05, + "betas": [ + 0.95, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 1e-06, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": false, + "initial_lr": 0.0001, + "params": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753 + ] + } +] \ No newline at end of file diff --git a/088000/training_state/optimizer_state.safetensors b/088000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3adb90c0e5bb0a750913e867190883208f879813 --- /dev/null +++ b/088000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc631b7c12564ed0e300a4437d3dc356a4b58e2d96024ca543608dc6d4b8556 +size 1133825128 diff --git a/088000/training_state/rng_state.safetensors b/088000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d2836d4d9c8cab5ee83b411206e50310dddbbf31 --- /dev/null +++ b/088000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ccc6c14d6762271ec41c08ff848c79bc40e305344e4c69afbd1c2c82ab53f6c +size 15708 diff --git a/088000/training_state/scheduler_state.json b/088000/training_state/scheduler_state.json new file mode 100644 index 0000000000000000000000000000000000000000..78fe8f713d57394ff7fecf8d68c8f76ddeab826d --- /dev/null +++ b/088000/training_state/scheduler_state.json @@ -0,0 +1,15 @@ +{ + "base_lrs": [ + 0.0001 + ], + "last_epoch": 88000, + "_step_count": 88001, + "_is_initial": false, + "_get_lr_called_within_step": false, + "_last_lr": [ + 8.86232261532151e-05 + ], + "lr_lambdas": [ + null + ] +} \ No newline at end of file diff --git a/088000/training_state/training_step.json b/088000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..6536ee16086688ef952891e4a128c86615a96cf4 --- /dev/null +++ b/088000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 88000 +} \ No newline at end of file diff --git a/096000/pretrained_model/config.json b/096000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..de21d70b500bc47cb13f917ad4729dfa1eaa4d01 --- /dev/null +++ b/096000/pretrained_model/config.json @@ -0,0 +1,114 @@ +{ + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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 +} \ No newline at end of file diff --git a/096000/pretrained_model/dataset_info.json b/096000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..51861b84efb6d96286d3e50d1768489f1ed5d633 --- /dev/null +++ b/096000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 42, + "total_frames": 10932, + "total_tasks": 1, + "total_videos": 210, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:42" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "observation.state": { + "dtype": "float32", + "shape": [ + 46 + ], + "names": [ + "joint_pos_left_0", + "joint_pos_left_1", + "joint_pos_left_2", + "joint_pos_left_3", + "joint_pos_left_4", + "joint_pos_left_5", + "joint_pos_left_6", + "joint_pos_right_0", + "joint_pos_right_1", + "joint_pos_right_2", + "joint_pos_right_3", + "joint_pos_right_4", + "joint_pos_right_5", + "joint_pos_right_6", + "tcp_left_pos_x", + "tcp_left_pos_y", + "tcp_left_pos_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_pos_x", + "tcp_right_pos_y", + "tcp_right_pos_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left_0", + "gripper_left_1", + "gripper_right_0", + "gripper_right_1", + "last_command_left_0", + "last_command_left_1", + "last_command_left_2", + "last_command_left_3", + "last_command_left_4", + "last_command_left_5", + "last_command_left_6", + "last_command_right_0", + "last_command_right_1", + "last_command_right_2", + "last_command_right_3", + "last_command_right_4", + "last_command_right_5", + "last_command_right_6" + ] + }, + "action": { + "dtype": "float32", + "shape": [ + 16 + ], + "names": [ + "tcp_left_x", + "tcp_left_y", + "tcp_left_z", + "tcp_left_quat_x", + "tcp_left_quat_y", + "tcp_left_quat_z", + "tcp_left_quat_w", + "tcp_right_x", + "tcp_right_y", + "tcp_right_z", + "tcp_right_quat_x", + "tcp_right_quat_y", + "tcp_right_quat_z", + "tcp_right_quat_w", + "gripper_left", + "gripper_right" + ] + }, + "observation.images.rgb_static": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.rgb_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_left": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.depth_right": { + "dtype": "video", + "shape": [ + 512, + 512, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 512, + "video.width": 512, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 10, + "video.channels": 3, + "has_audio": false + } + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + } +} \ No newline at end of file diff --git a/096000/pretrained_model/model.safetensors b/096000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..290315a45b33fd306bc6e76c495d8617895ba6e9 --- /dev/null +++ b/096000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf6906b845bb5c2172dabb879b060e15d3176c0a27a15abd5d669821d7312835 +size 566907304 diff --git a/096000/pretrained_model/train_config.json b/096000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..db60fc6f0a47926e553712a2aadd5fe4b4b6315e --- /dev/null +++ b/096000/pretrained_model/train_config.json @@ -0,0 +1,267 @@ +{ + "dataset": { + "repo_id": "mh2_step_3_tcp", + "root": "data/lerobot/mh2_step_3_tcp", + "episodes": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ], + "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 + ] + } + } + } + }, + "revision": null, + "use_imagenet_stats": true, + "video_backend": "torchcodec" + }, + "env": null, + "policy": { + "type": "integrated_so3_diffusion", + "n_obs_steps": 2, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MIN_MAX", + "ACTION": "MIN_MAX" + }, + "input_features": { + "observation.state": { + "type": "STATE", + "shape": [ + 46 + ] + }, + "observation.images.rgb_static": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.rgb_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_left": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + }, + "observation.images.depth_right": { + "type": "VISUAL", + "shape": [ + 3, + 512, + 512 + ] + } + }, + "output_features": { + "action": { + "type": "ACTION", + "shape": [ + 16 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "horizon": 32, + "n_action_steps": 16, + "drop_n_last_frames": 15, + "vision_backbone": "resnet34", + "crop_shape": [ + 224, + 224 + ], + "crop_is_random": true, + "pretrained_backbone_weights": null, + "use_group_norm": true, + "spatial_softmax_num_keypoints": 32, + "use_separate_rgb_encoder_per_camera": true, + "down_dims": [ + 128, + 256, + 512, + 512 + ], + "kernel_size": 3, + "n_groups": 8, + "diffusion_step_embed_dim": 512, + "use_film_scale_modulation": true, + "noise_scheduler_type": "DDPM", + "num_train_timesteps": 1000, + "beta_schedule": "squaredcos_cap_v2", + "beta_start": 0.0001, + "beta_end": 0.02, + "prediction_type": "sample", + "clip_sample": true, + "clip_sample_range": 1.0, + "num_inference_steps": null, + "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/2025-09-20/23-29-45_integrated_so3_diffusion", + "job_name": "integrated_so3_diffusion", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 400000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 8000, + "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": null, + "notes": null, + "run_id": "xlex5ae7", + "mode": null + } +} \ No newline at end of file diff --git a/096000/training_state/optimizer_param_groups.json b/096000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..df3bcf408ea7fa33037e4d2b2dda30eee86ddce6 --- /dev/null +++ b/096000/training_state/optimizer_param_groups.json @@ -0,0 +1,775 @@ +[ + { + "lr": 8.655054832085351e-05, + "betas": [ + 0.95, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 1e-06, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": false, + "initial_lr": 0.0001, + "params": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753 + ] + } +] \ No newline at end of file diff --git a/096000/training_state/optimizer_state.safetensors b/096000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..72ee14bd9b692033a391ac55381e5c4678ddb9e2 --- /dev/null +++ b/096000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b30b606935d5450f6a3f121c54e36886d444d0d7659721ea1057a407cf392ecb +size 1133825128 diff --git a/096000/training_state/rng_state.safetensors b/096000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c095c7124b2fb8a6eede17690c848e0006e9db24 --- /dev/null +++ b/096000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7dcc1c92155de6979b8f85d7a66e28ef7eda7f45e02600bcb38935089af1111 +size 15708 diff --git a/096000/training_state/scheduler_state.json b/096000/training_state/scheduler_state.json new file mode 100644 index 0000000000000000000000000000000000000000..6036c41e3496c0bd36739ab524a7d1771d9c1564 --- /dev/null +++ b/096000/training_state/scheduler_state.json @@ -0,0 +1,15 @@ +{ + "base_lrs": [ + 0.0001 + ], + "last_epoch": 96000, + "_step_count": 96001, + "_is_initial": false, + "_get_lr_called_within_step": false, + "_last_lr": [ + 8.655054832085351e-05 + ], + "lr_lambdas": [ + null + ] +} \ No newline at end of file diff --git a/096000/training_state/training_step.json b/096000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..74638f4f322910f1a7f11f6050ea78fde02cc8fb --- /dev/null +++ b/096000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 96000 +} \ No newline at end of file