diff --git a/005000/pretrained_model/config.json b/005000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9096bb6d3ff2eff794b9a7f4994f33f390a9fc57 --- /dev/null +++ b/005000/pretrained_model/config.json @@ -0,0 +1,93 @@ +{ + "type": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 +} \ No newline at end of file diff --git a/005000/pretrained_model/dataset_info.json b/005000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0c943588b827ed351d47aafe57a688ca639497 --- /dev/null +++ b/005000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 59, + "total_frames": 10179, + "total_tasks": 1, + "total_videos": 295, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:59" + }, + "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/005000/pretrained_model/model.safetensors b/005000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..63abb7b6d01f2921f59e7a543f9dba712c974b7c --- /dev/null +++ b/005000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4384a6acc38804d15193606923fb8c8b759c34c733d5e24f0ba0773c933efce4 +size 206579576 diff --git a/005000/pretrained_model/train_config.json b/005000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..4342cb245d1d57f00039f7e9d2710a635ed8af1f --- /dev/null +++ b/005000/pretrained_model/train_config.json @@ -0,0 +1,259 @@ +{ + "dataset": { + "repo_id": "step_1_tcp_with_recovery", + "root": "data/lerobot/step_1_tcp_with_recovery", + "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, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58 + ], + "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": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 + }, + "output_dir": "outputs/train/2025-09-19/12-24-07_act", + "job_name": "act", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 800000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 5000, + "use_policy_training_preset": true, + "optimizer": { + "type": "adamw", + "lr": 2e-05, + "weight_decay": 0.0001, + "grad_clip_norm": 10.0, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08 + }, + "scheduler": null, + "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": "npah6r75", + "mode": null + } +} \ No newline at end of file diff --git a/005000/training_state/optimizer_param_groups.json b/005000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/005000/training_state/optimizer_param_groups.json @@ -0,0 +1,191 @@ +[ + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "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 + ] + }, + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "params": [ + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152 + ] + } +] \ No newline at end of file diff --git a/005000/training_state/optimizer_state.safetensors b/005000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..428c864abf6545c49b4a70a8dab0b4b36d8febcf --- /dev/null +++ b/005000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8815faeef49c9a112c939d5c1b24d93eef1d7b800197e07437095db7c002465 +size 412899660 diff --git a/005000/training_state/rng_state.safetensors b/005000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fb2d4db1665118f3021407eddd18ad6716791b43 --- /dev/null +++ b/005000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d5e5763f88ff5e6011c8f7fa1ab967f934cff0f516c6237170391ef17db716 +size 15708 diff --git a/005000/training_state/training_step.json b/005000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..592449d3fc8b35c30c604eb1dabe60537e8224a0 --- /dev/null +++ b/005000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 5000 +} \ No newline at end of file diff --git a/010000/pretrained_model/config.json b/010000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9096bb6d3ff2eff794b9a7f4994f33f390a9fc57 --- /dev/null +++ b/010000/pretrained_model/config.json @@ -0,0 +1,93 @@ +{ + "type": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 +} \ No newline at end of file diff --git a/010000/pretrained_model/dataset_info.json b/010000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0c943588b827ed351d47aafe57a688ca639497 --- /dev/null +++ b/010000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 59, + "total_frames": 10179, + "total_tasks": 1, + "total_videos": 295, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:59" + }, + "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/010000/pretrained_model/model.safetensors b/010000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..866079431fed424d6e73baf3a3f0b778989d9599 --- /dev/null +++ b/010000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd6ba2dd0cd540ae3d9f73fe078743a95ab797d7ff33c4f242c156b25701b2b2 +size 206579576 diff --git a/010000/pretrained_model/train_config.json b/010000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..4342cb245d1d57f00039f7e9d2710a635ed8af1f --- /dev/null +++ b/010000/pretrained_model/train_config.json @@ -0,0 +1,259 @@ +{ + "dataset": { + "repo_id": "step_1_tcp_with_recovery", + "root": "data/lerobot/step_1_tcp_with_recovery", + "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, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58 + ], + "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": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 + }, + "output_dir": "outputs/train/2025-09-19/12-24-07_act", + "job_name": "act", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 800000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 5000, + "use_policy_training_preset": true, + "optimizer": { + "type": "adamw", + "lr": 2e-05, + "weight_decay": 0.0001, + "grad_clip_norm": 10.0, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08 + }, + "scheduler": null, + "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": "npah6r75", + "mode": null + } +} \ No newline at end of file diff --git a/010000/training_state/optimizer_param_groups.json b/010000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/010000/training_state/optimizer_param_groups.json @@ -0,0 +1,191 @@ +[ + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "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 + ] + }, + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "params": [ + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152 + ] + } +] \ No newline at end of file diff --git a/010000/training_state/optimizer_state.safetensors b/010000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d338869a8bbd2a44563f2fe363873da3923352ce --- /dev/null +++ b/010000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:942ee8d667db4c3082fa3cf3f7051a9008d6149bc235d9802a82be6a7609fa70 +size 412899660 diff --git a/010000/training_state/rng_state.safetensors b/010000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..68d2f5222848eb83645bcca2a64ecf5e2e6ea353 --- /dev/null +++ b/010000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:092a11be032fb80567501c5a66058a0a9f082a1bfd9ad601e05172026f13ce71 +size 15708 diff --git a/010000/training_state/training_step.json b/010000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..7cb7c0986e9e7461ca851ce71e95d235ae3d2732 --- /dev/null +++ b/010000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 10000 +} \ No newline at end of file diff --git a/015000/pretrained_model/config.json b/015000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9096bb6d3ff2eff794b9a7f4994f33f390a9fc57 --- /dev/null +++ b/015000/pretrained_model/config.json @@ -0,0 +1,93 @@ +{ + "type": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 +} \ No newline at end of file diff --git a/015000/pretrained_model/dataset_info.json b/015000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0c943588b827ed351d47aafe57a688ca639497 --- /dev/null +++ b/015000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 59, + "total_frames": 10179, + "total_tasks": 1, + "total_videos": 295, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:59" + }, + "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/015000/pretrained_model/model.safetensors b/015000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..27007dacfc583baefe2e89c4775a4bd47aa680bd --- /dev/null +++ b/015000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b61951a59e3a8c112c878d5463d5786ed7a2a2630179343e52bbfb44359e168e +size 206579576 diff --git a/015000/pretrained_model/train_config.json b/015000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..4342cb245d1d57f00039f7e9d2710a635ed8af1f --- /dev/null +++ b/015000/pretrained_model/train_config.json @@ -0,0 +1,259 @@ +{ + "dataset": { + "repo_id": "step_1_tcp_with_recovery", + "root": "data/lerobot/step_1_tcp_with_recovery", + "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, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58 + ], + "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": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 + }, + "output_dir": "outputs/train/2025-09-19/12-24-07_act", + "job_name": "act", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 800000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 5000, + "use_policy_training_preset": true, + "optimizer": { + "type": "adamw", + "lr": 2e-05, + "weight_decay": 0.0001, + "grad_clip_norm": 10.0, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08 + }, + "scheduler": null, + "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": "npah6r75", + "mode": null + } +} \ No newline at end of file diff --git a/015000/training_state/optimizer_param_groups.json b/015000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/015000/training_state/optimizer_param_groups.json @@ -0,0 +1,191 @@ +[ + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "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 + ] + }, + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "params": [ + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152 + ] + } +] \ No newline at end of file diff --git a/015000/training_state/optimizer_state.safetensors b/015000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..56e65e4deaec1860d2baca609d93334c2775e44b --- /dev/null +++ b/015000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49829f420f6a0d73181458d1b42b8f7fde730c973aba445c010840fdb8f78f3f +size 412899660 diff --git a/015000/training_state/rng_state.safetensors b/015000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8466cbbe4fe31610eb46ff749e1841dbb9a2712c --- /dev/null +++ b/015000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae7a0dcc14e7e429dc8a0ee043a722ce54265295f6a02a4376b6c646e2e5f071 +size 15708 diff --git a/015000/training_state/training_step.json b/015000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..5cec056c8ba7f3c2e865a0f73ae59975a0503067 --- /dev/null +++ b/015000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 15000 +} \ No newline at end of file diff --git a/020000/pretrained_model/config.json b/020000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9096bb6d3ff2eff794b9a7f4994f33f390a9fc57 --- /dev/null +++ b/020000/pretrained_model/config.json @@ -0,0 +1,93 @@ +{ + "type": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 +} \ No newline at end of file diff --git a/020000/pretrained_model/dataset_info.json b/020000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0c943588b827ed351d47aafe57a688ca639497 --- /dev/null +++ b/020000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 59, + "total_frames": 10179, + "total_tasks": 1, + "total_videos": 295, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:59" + }, + "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/020000/pretrained_model/model.safetensors b/020000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f123ed8f6203c19e2d7126d14d4b3caa22c07a8a --- /dev/null +++ b/020000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b66efb8a0a5696942155004c15c57e8b6c40c78065456ccff42081bfd5ca533 +size 206579576 diff --git a/020000/pretrained_model/train_config.json b/020000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..4342cb245d1d57f00039f7e9d2710a635ed8af1f --- /dev/null +++ b/020000/pretrained_model/train_config.json @@ -0,0 +1,259 @@ +{ + "dataset": { + "repo_id": "step_1_tcp_with_recovery", + "root": "data/lerobot/step_1_tcp_with_recovery", + "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, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58 + ], + "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": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 + }, + "output_dir": "outputs/train/2025-09-19/12-24-07_act", + "job_name": "act", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 800000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 5000, + "use_policy_training_preset": true, + "optimizer": { + "type": "adamw", + "lr": 2e-05, + "weight_decay": 0.0001, + "grad_clip_norm": 10.0, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08 + }, + "scheduler": null, + "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": "npah6r75", + "mode": null + } +} \ No newline at end of file diff --git a/020000/training_state/optimizer_param_groups.json b/020000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/020000/training_state/optimizer_param_groups.json @@ -0,0 +1,191 @@ +[ + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "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 + ] + }, + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "params": [ + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152 + ] + } +] \ No newline at end of file diff --git a/020000/training_state/optimizer_state.safetensors b/020000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..6d69cedb6838c72ca877bc32bcdde9886571371a --- /dev/null +++ b/020000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62a3a819ce5863263bec836db3efe5d854065478a01401af8d73e690cfc1d7dd +size 412899660 diff --git a/020000/training_state/rng_state.safetensors b/020000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..dba2d5dfc6d6c40a0e70c3374f44d0a07ebde6cd --- /dev/null +++ b/020000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6731127134b79bf80bc5892c8d07f58d59abec53da22190591140fdd5ad38b53 +size 15708 diff --git a/020000/training_state/training_step.json b/020000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..dc9bb47026c5d5237ca6fc5dbff6020dd122ea05 --- /dev/null +++ b/020000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 20000 +} \ No newline at end of file diff --git a/025000/pretrained_model/config.json b/025000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9096bb6d3ff2eff794b9a7f4994f33f390a9fc57 --- /dev/null +++ b/025000/pretrained_model/config.json @@ -0,0 +1,93 @@ +{ + "type": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 +} \ No newline at end of file diff --git a/025000/pretrained_model/dataset_info.json b/025000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0c943588b827ed351d47aafe57a688ca639497 --- /dev/null +++ b/025000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 59, + "total_frames": 10179, + "total_tasks": 1, + "total_videos": 295, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:59" + }, + "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/025000/pretrained_model/model.safetensors b/025000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..09005c09e0f1590d0c6532b3ebab10a0f36a3329 --- /dev/null +++ b/025000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08175e74814d98c0ddbf16f610b3be02337dbb36c8f18d65a5f8cf21e981945c +size 206579576 diff --git a/025000/pretrained_model/train_config.json b/025000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..4342cb245d1d57f00039f7e9d2710a635ed8af1f --- /dev/null +++ b/025000/pretrained_model/train_config.json @@ -0,0 +1,259 @@ +{ + "dataset": { + "repo_id": "step_1_tcp_with_recovery", + "root": "data/lerobot/step_1_tcp_with_recovery", + "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, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58 + ], + "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": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 + }, + "output_dir": "outputs/train/2025-09-19/12-24-07_act", + "job_name": "act", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 800000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 5000, + "use_policy_training_preset": true, + "optimizer": { + "type": "adamw", + "lr": 2e-05, + "weight_decay": 0.0001, + "grad_clip_norm": 10.0, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08 + }, + "scheduler": null, + "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": "npah6r75", + "mode": null + } +} \ No newline at end of file diff --git a/025000/training_state/optimizer_param_groups.json b/025000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/025000/training_state/optimizer_param_groups.json @@ -0,0 +1,191 @@ +[ + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "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 + ] + }, + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "params": [ + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152 + ] + } +] \ No newline at end of file diff --git a/025000/training_state/optimizer_state.safetensors b/025000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8479ded61038ed36e60a4becb22fc5e3fa59c9de --- /dev/null +++ b/025000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2893f60f03b2c3f3d0643d421f22b30051693834fb11966622981d72edce119b +size 412899660 diff --git a/025000/training_state/rng_state.safetensors b/025000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7d1d7f5f486f912e57ca8e2e722ded4e71e16825 --- /dev/null +++ b/025000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a18e00d05680b21e6e384ddc4f99be66aefcf424befc7561dc04e5c5287c846 +size 15708 diff --git a/025000/training_state/training_step.json b/025000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..ac6903ae05e7bbaec1e2da710fdbe91d8dc3f37d --- /dev/null +++ b/025000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 25000 +} \ No newline at end of file diff --git a/030000/pretrained_model/config.json b/030000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9096bb6d3ff2eff794b9a7f4994f33f390a9fc57 --- /dev/null +++ b/030000/pretrained_model/config.json @@ -0,0 +1,93 @@ +{ + "type": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 +} \ No newline at end of file diff --git a/030000/pretrained_model/dataset_info.json b/030000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0c943588b827ed351d47aafe57a688ca639497 --- /dev/null +++ b/030000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 59, + "total_frames": 10179, + "total_tasks": 1, + "total_videos": 295, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:59" + }, + "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/030000/pretrained_model/model.safetensors b/030000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d12c68062c9e1e921ad9ec6461f69cb64d100abe --- /dev/null +++ b/030000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41d1836cc3a11a02b2af4b2bfa8b2b18ea52025818831464d9c84f1332be4fa2 +size 206579576 diff --git a/030000/pretrained_model/train_config.json b/030000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..4342cb245d1d57f00039f7e9d2710a635ed8af1f --- /dev/null +++ b/030000/pretrained_model/train_config.json @@ -0,0 +1,259 @@ +{ + "dataset": { + "repo_id": "step_1_tcp_with_recovery", + "root": "data/lerobot/step_1_tcp_with_recovery", + "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, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58 + ], + "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": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 + }, + "output_dir": "outputs/train/2025-09-19/12-24-07_act", + "job_name": "act", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 800000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 5000, + "use_policy_training_preset": true, + "optimizer": { + "type": "adamw", + "lr": 2e-05, + "weight_decay": 0.0001, + "grad_clip_norm": 10.0, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08 + }, + "scheduler": null, + "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": "npah6r75", + "mode": null + } +} \ No newline at end of file diff --git a/030000/training_state/optimizer_param_groups.json b/030000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/030000/training_state/optimizer_param_groups.json @@ -0,0 +1,191 @@ +[ + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "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 + ] + }, + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "params": [ + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152 + ] + } +] \ No newline at end of file diff --git a/030000/training_state/optimizer_state.safetensors b/030000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0c520794c6ef93c36af94ffd9b3b02dc44ae7357 --- /dev/null +++ b/030000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce07aff924eacfcc37d62a75c06cfa17f36246e4c7c41bdda5e9aadf7bc8e35 +size 412899660 diff --git a/030000/training_state/rng_state.safetensors b/030000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..052d3f2cf850a3ce6d16818722f243226ddec22b --- /dev/null +++ b/030000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cecef103c43539720705134cc6a0f92deaf60a22923107b06b6b11abaab0a6a3 +size 15708 diff --git a/030000/training_state/training_step.json b/030000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..f4945f660f45b332883dccfccf18d8b8815d916a --- /dev/null +++ b/030000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 30000 +} \ No newline at end of file diff --git a/035000/pretrained_model/config.json b/035000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9096bb6d3ff2eff794b9a7f4994f33f390a9fc57 --- /dev/null +++ b/035000/pretrained_model/config.json @@ -0,0 +1,93 @@ +{ + "type": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 +} \ No newline at end of file diff --git a/035000/pretrained_model/dataset_info.json b/035000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0c943588b827ed351d47aafe57a688ca639497 --- /dev/null +++ b/035000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 59, + "total_frames": 10179, + "total_tasks": 1, + "total_videos": 295, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:59" + }, + "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/035000/pretrained_model/model.safetensors b/035000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..780ce700dda9245074d9b55d22be8fec7e82deed --- /dev/null +++ b/035000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc6bd05d0f433795985872d8ae0d450496ce25272095810ef3c4e525dbef88b2 +size 206579576 diff --git a/035000/pretrained_model/train_config.json b/035000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..4342cb245d1d57f00039f7e9d2710a635ed8af1f --- /dev/null +++ b/035000/pretrained_model/train_config.json @@ -0,0 +1,259 @@ +{ + "dataset": { + "repo_id": "step_1_tcp_with_recovery", + "root": "data/lerobot/step_1_tcp_with_recovery", + "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, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58 + ], + "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": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 + }, + "output_dir": "outputs/train/2025-09-19/12-24-07_act", + "job_name": "act", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 800000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 5000, + "use_policy_training_preset": true, + "optimizer": { + "type": "adamw", + "lr": 2e-05, + "weight_decay": 0.0001, + "grad_clip_norm": 10.0, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08 + }, + "scheduler": null, + "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": "npah6r75", + "mode": null + } +} \ No newline at end of file diff --git a/035000/training_state/optimizer_param_groups.json b/035000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/035000/training_state/optimizer_param_groups.json @@ -0,0 +1,191 @@ +[ + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "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 + ] + }, + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "params": [ + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152 + ] + } +] \ No newline at end of file diff --git a/035000/training_state/optimizer_state.safetensors b/035000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..583b75ad70e5a7046bbc389320c694eff449b6d9 --- /dev/null +++ b/035000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74c68a480dada84fa97ec88d6154ca7d7e3efc4f5dbf711249debdae06ee2217 +size 412899660 diff --git a/035000/training_state/rng_state.safetensors b/035000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f9215136bd0308b6a41800e1adfce2036d0aa8c1 --- /dev/null +++ b/035000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb1d91dcfb633b986e82d0c42c10eaba5dc3494317a2b4079ae91b87414ba0f8 +size 15708 diff --git a/035000/training_state/training_step.json b/035000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..60080824ceb9805d29c885917dc77e0277e52eb2 --- /dev/null +++ b/035000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 35000 +} \ 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..9096bb6d3ff2eff794b9a7f4994f33f390a9fc57 --- /dev/null +++ b/040000/pretrained_model/config.json @@ -0,0 +1,93 @@ +{ + "type": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 +} \ 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..3a0c943588b827ed351d47aafe57a688ca639497 --- /dev/null +++ b/040000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 59, + "total_frames": 10179, + "total_tasks": 1, + "total_videos": 295, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:59" + }, + "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..555d1a7bc90e2954ee2f7e92fe6776acc843548f --- /dev/null +++ b/040000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5265bd81f7f3d2f4a1949c75ea4c3d40b0f57c1eef0250e58a8436a25254f3b +size 206579576 diff --git a/040000/pretrained_model/train_config.json b/040000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..4342cb245d1d57f00039f7e9d2710a635ed8af1f --- /dev/null +++ b/040000/pretrained_model/train_config.json @@ -0,0 +1,259 @@ +{ + "dataset": { + "repo_id": "step_1_tcp_with_recovery", + "root": "data/lerobot/step_1_tcp_with_recovery", + "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, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58 + ], + "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": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 + }, + "output_dir": "outputs/train/2025-09-19/12-24-07_act", + "job_name": "act", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 800000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 5000, + "use_policy_training_preset": true, + "optimizer": { + "type": "adamw", + "lr": 2e-05, + "weight_decay": 0.0001, + "grad_clip_norm": 10.0, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08 + }, + "scheduler": null, + "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": "npah6r75", + "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..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/040000/training_state/optimizer_param_groups.json @@ -0,0 +1,191 @@ +[ + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "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 + ] + }, + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "params": [ + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152 + ] + } +] \ 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..fc8cd143017dab19787f3f8e27d85e841210c822 --- /dev/null +++ b/040000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369dcb8a6937af016fdefea486e05953ce3d01f9c5eede66c8df137ef3f2cc9b +size 412899660 diff --git a/040000/training_state/rng_state.safetensors b/040000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4a98a1f99981a04fa94e1be8c5456526f143dbb3 --- /dev/null +++ b/040000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0bbe41071f1fc24eb769c6743e493d5c6143e91096eea02a14f99918852a603 +size 15708 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/045000/pretrained_model/config.json b/045000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9096bb6d3ff2eff794b9a7f4994f33f390a9fc57 --- /dev/null +++ b/045000/pretrained_model/config.json @@ -0,0 +1,93 @@ +{ + "type": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 +} \ No newline at end of file diff --git a/045000/pretrained_model/dataset_info.json b/045000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0c943588b827ed351d47aafe57a688ca639497 --- /dev/null +++ b/045000/pretrained_model/dataset_info.json @@ -0,0 +1,246 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 59, + "total_frames": 10179, + "total_tasks": 1, + "total_videos": 295, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:59" + }, + "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/045000/pretrained_model/model.safetensors b/045000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..57fa79d80510f519bd207d325599886b6bd3b79d --- /dev/null +++ b/045000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4287d618a14ef3cf2267503514fad1dcbe03584f23bee0dfcef57f49b0e7d02 +size 206579576 diff --git a/045000/pretrained_model/train_config.json b/045000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..4342cb245d1d57f00039f7e9d2710a635ed8af1f --- /dev/null +++ b/045000/pretrained_model/train_config.json @@ -0,0 +1,259 @@ +{ + "dataset": { + "repo_id": "step_1_tcp_with_recovery", + "root": "data/lerobot/step_1_tcp_with_recovery", + "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, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58 + ], + "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": "act", + "n_obs_steps": 1, + "normalization_mapping": { + "VISUAL": "MEAN_STD", + "STATE": "MEAN_STD", + "ACTION": "MEAN_STD" + }, + "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, + "chunk_size": 20, + "n_action_steps": 10, + "vision_backbone": "resnet18", + "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1", + "replace_final_stride_with_dilation": false, + "pre_norm": false, + "dim_model": 512, + "n_heads": 8, + "dim_feedforward": 3200, + "feedforward_activation": "relu", + "n_encoder_layers": 4, + "n_decoder_layers": 1, + "use_vae": true, + "latent_dim": 32, + "n_vae_encoder_layers": 4, + "temporal_ensemble_coeff": null, + "dropout": 0.1, + "kl_weight": 10.0, + "optimizer_lr": 2e-05, + "optimizer_weight_decay": 0.0001, + "optimizer_lr_backbone": 2e-05 + }, + "output_dir": "outputs/train/2025-09-19/12-24-07_act", + "job_name": "act", + "resume": false, + "seed": 1000, + "num_workers": 4, + "batch_size": 16, + "steps": 800000, + "eval_freq": 20000, + "log_freq": 200, + "save_checkpoint": true, + "save_freq": 5000, + "use_policy_training_preset": true, + "optimizer": { + "type": "adamw", + "lr": 2e-05, + "weight_decay": 0.0001, + "grad_clip_norm": 10.0, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08 + }, + "scheduler": null, + "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": "npah6r75", + "mode": null + } +} \ No newline at end of file diff --git a/045000/training_state/optimizer_param_groups.json b/045000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/045000/training_state/optimizer_param_groups.json @@ -0,0 +1,191 @@ +[ + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "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 + ] + }, + { + "lr": 2e-05, + "betas": [ + 0.9, + 0.999 + ], + "eps": 1e-08, + "weight_decay": 0.0001, + "amsgrad": false, + "maximize": false, + "foreach": null, + "capturable": false, + "differentiable": false, + "fused": null, + "decoupled_weight_decay": true, + "params": [ + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152 + ] + } +] \ No newline at end of file diff --git a/045000/training_state/optimizer_state.safetensors b/045000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..39ff8e63017c64dcf9ae998c811c7fa2c4f0eadb --- /dev/null +++ b/045000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aed605581ba003b62b79b1ad15462f2fad00d739204c03810a01e652ef847f89 +size 412899660 diff --git a/045000/training_state/rng_state.safetensors b/045000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3c92a18b3dacca2ea7da47d5d97fa5bcf4558a07 --- /dev/null +++ b/045000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a2847e8f833b8a03990ba11d178d01dded004434544bb2ce38008e4e00713c5 +size 15708 diff --git a/045000/training_state/training_step.json b/045000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..472b301a48ca897c9f2b7da46adc0312cf9a91d9 --- /dev/null +++ b/045000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 45000 +} \ No newline at end of file