diff --git a/100000/pretrained_model/config.json b/100000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..52f6405454a610210e41cb7c05a7f450f48de495 --- /dev/null +++ b/100000/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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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/100000/pretrained_model/dataset_info.json b/100000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..5955315df4cf5474febfe25544ab7fca36703643 --- /dev/null +++ b/100000/pretrained_model/dataset_info.json @@ -0,0 +1,247 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 45, + "total_frames": 7749, + "total_tasks": 1, + "total_videos": 225, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:45" + }, + "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": [ + 17 + ], + "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", + "reward" + ] + }, + "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/100000/pretrained_model/model.safetensors b/100000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..374e4084c48e021157b54d6b8ce57902e03ce76d --- /dev/null +++ b/100000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea2c01cf923d5fd95aeab033d1385a891b5115b2eeda2539e7813aa6476a271 +size 206706596 diff --git a/100000/pretrained_model/train_config.json b/100000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9699140499904e1741b1354d745e97dfb19f5f41 --- /dev/null +++ b/100000/pretrained_model/train_config.json @@ -0,0 +1,245 @@ +{ + "dataset": { + "repo_id": "step_1_with_reward", + "root": "data/lerobot/step_1_with_reward", + "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 + ], + "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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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-20/11-13-16_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": "fzk44djp", + "mode": null + } +} \ No newline at end of file diff --git a/100000/training_state/optimizer_param_groups.json b/100000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/100000/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/100000/training_state/optimizer_state.safetensors b/100000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a5eb0fedcf044d1c33ff027ca564a381058006da --- /dev/null +++ b/100000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:173ae9fd634c041899a9f53fa91b4d550ff68805e6374a79e4fbebb003a43cee +size 413030740 diff --git a/100000/training_state/rng_state.safetensors b/100000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2500e01b820a9c1ad87f0f960a096ea3d81c59f1 --- /dev/null +++ b/100000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:679660faf22bb2164d1b36e06febe842fbe11c10d7dfe8715c11e528d11fe019 +size 15708 diff --git a/100000/training_state/training_step.json b/100000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..8eb73c13d28bca88058c08796abbf931c3f9b012 --- /dev/null +++ b/100000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 100000 +} \ No newline at end of file diff --git a/105000/pretrained_model/config.json b/105000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..52f6405454a610210e41cb7c05a7f450f48de495 --- /dev/null +++ b/105000/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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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/105000/pretrained_model/dataset_info.json b/105000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..5955315df4cf5474febfe25544ab7fca36703643 --- /dev/null +++ b/105000/pretrained_model/dataset_info.json @@ -0,0 +1,247 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 45, + "total_frames": 7749, + "total_tasks": 1, + "total_videos": 225, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:45" + }, + "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": [ + 17 + ], + "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", + "reward" + ] + }, + "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/105000/pretrained_model/model.safetensors b/105000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5dd44a2482606010bbd14006cc08fc264c918833 --- /dev/null +++ b/105000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b03fa8eda6e79ecb0757e095350fca047478a58f046aa63f01ebe18d61210130 +size 206706596 diff --git a/105000/pretrained_model/train_config.json b/105000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9699140499904e1741b1354d745e97dfb19f5f41 --- /dev/null +++ b/105000/pretrained_model/train_config.json @@ -0,0 +1,245 @@ +{ + "dataset": { + "repo_id": "step_1_with_reward", + "root": "data/lerobot/step_1_with_reward", + "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 + ], + "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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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-20/11-13-16_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": "fzk44djp", + "mode": null + } +} \ No newline at end of file diff --git a/105000/training_state/optimizer_param_groups.json b/105000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/105000/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/105000/training_state/optimizer_state.safetensors b/105000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9442d29b81caedb2b7afe3e7a23cc9f526312f22 --- /dev/null +++ b/105000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7316a54028bb2168ec225cc84945f2985e88de73eb1f979be1346fa7dc255698 +size 413030740 diff --git a/105000/training_state/rng_state.safetensors b/105000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..56e403ab68783a5cc29f1ac07f6f3540abe62c99 --- /dev/null +++ b/105000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8903195550aa2500c30643c67da1742caefae15814fe4c6e220cb7978f0ef087 +size 15708 diff --git a/105000/training_state/training_step.json b/105000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..1fa4707d601f140ca02e866b0d92480e9cc6f7f3 --- /dev/null +++ b/105000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 105000 +} \ No newline at end of file diff --git a/110000/pretrained_model/config.json b/110000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..52f6405454a610210e41cb7c05a7f450f48de495 --- /dev/null +++ b/110000/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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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/110000/pretrained_model/dataset_info.json b/110000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..5955315df4cf5474febfe25544ab7fca36703643 --- /dev/null +++ b/110000/pretrained_model/dataset_info.json @@ -0,0 +1,247 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 45, + "total_frames": 7749, + "total_tasks": 1, + "total_videos": 225, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:45" + }, + "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": [ + 17 + ], + "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", + "reward" + ] + }, + "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/110000/pretrained_model/model.safetensors b/110000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..17597a3083152b44cc5b23163c793f98c6f5696f --- /dev/null +++ b/110000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3c6487def5d5997437c61acfe4f99515760f9f4c43e7c64adec8f66a3f3628c +size 206706596 diff --git a/110000/pretrained_model/train_config.json b/110000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9699140499904e1741b1354d745e97dfb19f5f41 --- /dev/null +++ b/110000/pretrained_model/train_config.json @@ -0,0 +1,245 @@ +{ + "dataset": { + "repo_id": "step_1_with_reward", + "root": "data/lerobot/step_1_with_reward", + "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 + ], + "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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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-20/11-13-16_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": "fzk44djp", + "mode": null + } +} \ No newline at end of file diff --git a/110000/training_state/optimizer_param_groups.json b/110000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/110000/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/110000/training_state/optimizer_state.safetensors b/110000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..130b8dcb3a9131fc4987fd965a508f4088b2437a --- /dev/null +++ b/110000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f355123a331546b18383ee498791e2bc2a8a2318bbcb358bba01a6a708d1f5f8 +size 413030740 diff --git a/110000/training_state/rng_state.safetensors b/110000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4397d246235e0162848efcc6f774e01c83c69039 --- /dev/null +++ b/110000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a8652abf12a6edd302ef6741615026f9e75c7c7f05bcd00225b91109220590 +size 15708 diff --git a/110000/training_state/training_step.json b/110000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..064896ea461ac4e49e4b688e1f5b6dc2ff4abd53 --- /dev/null +++ b/110000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 110000 +} \ No newline at end of file diff --git a/115000/pretrained_model/config.json b/115000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..52f6405454a610210e41cb7c05a7f450f48de495 --- /dev/null +++ b/115000/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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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/115000/pretrained_model/dataset_info.json b/115000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..5955315df4cf5474febfe25544ab7fca36703643 --- /dev/null +++ b/115000/pretrained_model/dataset_info.json @@ -0,0 +1,247 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 45, + "total_frames": 7749, + "total_tasks": 1, + "total_videos": 225, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:45" + }, + "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": [ + 17 + ], + "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", + "reward" + ] + }, + "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/115000/pretrained_model/model.safetensors b/115000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b5d4844ef38935c42bce6d9598b090e9be916d89 --- /dev/null +++ b/115000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e2b63e3c9a6d02703ed22846346516f9d88f7acb158828e729ce0ba907208a +size 206706596 diff --git a/115000/pretrained_model/train_config.json b/115000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9699140499904e1741b1354d745e97dfb19f5f41 --- /dev/null +++ b/115000/pretrained_model/train_config.json @@ -0,0 +1,245 @@ +{ + "dataset": { + "repo_id": "step_1_with_reward", + "root": "data/lerobot/step_1_with_reward", + "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 + ], + "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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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-20/11-13-16_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": "fzk44djp", + "mode": null + } +} \ No newline at end of file diff --git a/115000/training_state/optimizer_param_groups.json b/115000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/115000/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/115000/training_state/optimizer_state.safetensors b/115000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1b43c339d8e2d2097b648323eb57ad0ea92ff03e --- /dev/null +++ b/115000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac72242373c52b671b04db7c391ccd60f10d6390ec4922ad6b9e7685afedda3 +size 413030740 diff --git a/115000/training_state/rng_state.safetensors b/115000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5c9b6e91c1157e3ec93b4c05057de3672e82046f --- /dev/null +++ b/115000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6afea9f8dbef53a91fadc24e7c9beba748113e049d7615df73942a7b20adfab5 +size 15708 diff --git a/115000/training_state/training_step.json b/115000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..17ef538d8789cefb24fc85a44bf7390f5726fdec --- /dev/null +++ b/115000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 115000 +} \ No newline at end of file diff --git a/120000/pretrained_model/config.json b/120000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..52f6405454a610210e41cb7c05a7f450f48de495 --- /dev/null +++ b/120000/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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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/120000/pretrained_model/dataset_info.json b/120000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..5955315df4cf5474febfe25544ab7fca36703643 --- /dev/null +++ b/120000/pretrained_model/dataset_info.json @@ -0,0 +1,247 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 45, + "total_frames": 7749, + "total_tasks": 1, + "total_videos": 225, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:45" + }, + "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": [ + 17 + ], + "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", + "reward" + ] + }, + "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/120000/pretrained_model/model.safetensors b/120000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2d3acbf9fe720eab1e78cecff1efde7d3e09432d --- /dev/null +++ b/120000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e2ef860953f605420a427dd945b7d99d344ce84ae7e7757c206fb469ce409f +size 206706596 diff --git a/120000/pretrained_model/train_config.json b/120000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9699140499904e1741b1354d745e97dfb19f5f41 --- /dev/null +++ b/120000/pretrained_model/train_config.json @@ -0,0 +1,245 @@ +{ + "dataset": { + "repo_id": "step_1_with_reward", + "root": "data/lerobot/step_1_with_reward", + "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 + ], + "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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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-20/11-13-16_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": "fzk44djp", + "mode": null + } +} \ No newline at end of file diff --git a/120000/training_state/optimizer_param_groups.json b/120000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/120000/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/120000/training_state/optimizer_state.safetensors b/120000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..751d195f22e0803811fc88247c609a5b2ee3c204 --- /dev/null +++ b/120000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:326341c6ca6deda662fbc3cb9171b7508955cbd93a7ba7073ec098d4b42779a5 +size 413030740 diff --git a/120000/training_state/rng_state.safetensors b/120000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..432a626c0de5f45c8d09c827058b28d069dc6eb5 --- /dev/null +++ b/120000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ee8e8eaa097181397f5872c5a8477568fc18b13bdf5e3c52e076759034bfb49 +size 15708 diff --git a/120000/training_state/training_step.json b/120000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..6bbb8719463d819c865c104597046a0165eea278 --- /dev/null +++ b/120000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 120000 +} \ No newline at end of file diff --git a/125000/pretrained_model/config.json b/125000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..52f6405454a610210e41cb7c05a7f450f48de495 --- /dev/null +++ b/125000/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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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/125000/pretrained_model/dataset_info.json b/125000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..5955315df4cf5474febfe25544ab7fca36703643 --- /dev/null +++ b/125000/pretrained_model/dataset_info.json @@ -0,0 +1,247 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 45, + "total_frames": 7749, + "total_tasks": 1, + "total_videos": 225, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:45" + }, + "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": [ + 17 + ], + "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", + "reward" + ] + }, + "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/125000/pretrained_model/model.safetensors b/125000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e3c94db8bde10aacd9ef951404c072b5dd2e11cb --- /dev/null +++ b/125000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87a19a618bc4527c8f633555f7d2802525fdf7a98c01f38c97858242130aab51 +size 206706596 diff --git a/125000/pretrained_model/train_config.json b/125000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9699140499904e1741b1354d745e97dfb19f5f41 --- /dev/null +++ b/125000/pretrained_model/train_config.json @@ -0,0 +1,245 @@ +{ + "dataset": { + "repo_id": "step_1_with_reward", + "root": "data/lerobot/step_1_with_reward", + "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 + ], + "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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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-20/11-13-16_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": "fzk44djp", + "mode": null + } +} \ No newline at end of file diff --git a/125000/training_state/optimizer_param_groups.json b/125000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/125000/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/125000/training_state/optimizer_state.safetensors b/125000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..01bed836dfb52e2465b6a48638826e130ffd72a8 --- /dev/null +++ b/125000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:767636041b19ecad0e733cd937f359007216cfb1914392ce380eaade814b4f42 +size 413030740 diff --git a/125000/training_state/rng_state.safetensors b/125000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c7c9c862cf5924fcfeae328109c5f8f63e43bb83 --- /dev/null +++ b/125000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e81c527dea11503a6528d1965a9c08240806244dd55de70d4800b1104e92c306 +size 15708 diff --git a/125000/training_state/training_step.json b/125000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..fa06e1388aea9df9ae022b12a4fd0aac374f39f8 --- /dev/null +++ b/125000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 125000 +} \ No newline at end of file diff --git a/130000/pretrained_model/config.json b/130000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..52f6405454a610210e41cb7c05a7f450f48de495 --- /dev/null +++ b/130000/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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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/130000/pretrained_model/dataset_info.json b/130000/pretrained_model/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..5955315df4cf5474febfe25544ab7fca36703643 --- /dev/null +++ b/130000/pretrained_model/dataset_info.json @@ -0,0 +1,247 @@ +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 45, + "total_frames": 7749, + "total_tasks": 1, + "total_videos": 225, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 10, + "splits": { + "train": "0:45" + }, + "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": [ + 17 + ], + "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", + "reward" + ] + }, + "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/130000/pretrained_model/model.safetensors b/130000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..43d299ec41e07a953bfd3b631cde701990274d0a --- /dev/null +++ b/130000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a932647c25db30f3b3571850ca2405f1f026ec2f0a28e4795cdaa1f848b7e7d1 +size 206706596 diff --git a/130000/pretrained_model/train_config.json b/130000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9699140499904e1741b1354d745e97dfb19f5f41 --- /dev/null +++ b/130000/pretrained_model/train_config.json @@ -0,0 +1,245 @@ +{ + "dataset": { + "repo_id": "step_1_with_reward", + "root": "data/lerobot/step_1_with_reward", + "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 + ], + "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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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-20/11-13-16_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": "fzk44djp", + "mode": null + } +} \ No newline at end of file diff --git a/130000/training_state/optimizer_param_groups.json b/130000/training_state/optimizer_param_groups.json new file mode 100644 index 0000000000000000000000000000000000000000..0597b09f805ed088aadd2f65ee982d8d97c1e30c --- /dev/null +++ b/130000/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/130000/training_state/optimizer_state.safetensors b/130000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..50fb71eca9514fe393245cd7eb0abe7d4551ca4a --- /dev/null +++ b/130000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3543557a0f6f4c84508a995e831656a35be17f2c8347ccf057a264f125548a51 +size 413030740 diff --git a/130000/training_state/rng_state.safetensors b/130000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..cfc0b3473e27e0286956549cee7496dcc73918a4 --- /dev/null +++ b/130000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e407beeb5c048fee1e09c6cbf5e521bc403e6abf358428994786787dbb03bf +size 15708 diff --git a/130000/training_state/training_step.json b/130000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..cbd692b6bcb0d10cdb491cd7c943e192d8df0441 --- /dev/null +++ b/130000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 130000 +} \ No newline at end of file diff --git a/135000/pretrained_model/config.json b/135000/pretrained_model/config.json new file mode 100644 index 0000000000000000000000000000000000000000..52f6405454a610210e41cb7c05a7f450f48de495 --- /dev/null +++ b/135000/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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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/135000/pretrained_model/model.safetensors b/135000/pretrained_model/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..01146a3cb0786385cd204794c98f73a975c6d9a0 --- /dev/null +++ b/135000/pretrained_model/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7a77f098059c99b3f5ed7a76c983b3261893c0b4d1592c06673336b9a78e58 +size 206706596 diff --git a/135000/pretrained_model/train_config.json b/135000/pretrained_model/train_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9699140499904e1741b1354d745e97dfb19f5f41 --- /dev/null +++ b/135000/pretrained_model/train_config.json @@ -0,0 +1,245 @@ +{ + "dataset": { + "repo_id": "step_1_with_reward", + "root": "data/lerobot/step_1_with_reward", + "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 + ], + "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": [ + 17 + ] + } + }, + "device": "cuda", + "use_amp": false, + "push_to_hub": false, + "repo_id": null, + "private": null, + "tags": null, + "license": null, + "chunk_size": 50, + "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-20/11-13-16_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": "fzk44djp", + "mode": null + } +} \ No newline at end of file diff --git a/135000/training_state/optimizer_state.safetensors b/135000/training_state/optimizer_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2b1bad93027266b15ca2593024a64dc0441b68a7 --- /dev/null +++ b/135000/training_state/optimizer_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cac34282c44cef29057dfa4a464aae7e10037ea1cfcff652dfd6d95dfd2a5be3 +size 87556096 diff --git a/135000/training_state/rng_state.safetensors b/135000/training_state/rng_state.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f3383bd0af1e977a8ecc993b33b19a62dc8af4ec --- /dev/null +++ b/135000/training_state/rng_state.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbaa0a2e9015d6468a781db47e1f7bd5b10e9b150636e3ce2025f8536e207347 +size 15708 diff --git a/135000/training_state/training_step.json b/135000/training_state/training_step.json new file mode 100644 index 0000000000000000000000000000000000000000..eba0df7737a804a3b7fa95ff403e12d1709def70 --- /dev/null +++ b/135000/training_state/training_step.json @@ -0,0 +1,3 @@ +{ + "step": 135000 +} \ No newline at end of file