Upload folder using huggingface_hub
Browse files- GSR-PI05-LIBERO/config.json +172 -0
- GSR-PI05-LIBERO/model.safetensors +3 -0
- GSR-PI05-LIBERO/policy_postprocessor.json +38 -0
- GSR-PI05-LIBERO/policy_postprocessor_step_0_unnormalizer_processor.safetensors +3 -0
- GSR-PI05-LIBERO/policy_preprocessor.json +125 -0
- GSR-PI05-LIBERO/policy_preprocessor_step_3_normalizer_processor.safetensors +3 -0
- GSR-PI05-LIBERO/train_config.json +832 -0
GSR-PI05-LIBERO/config.json
ADDED
|
@@ -0,0 +1,172 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"type": "pi05",
|
| 3 |
+
"n_obs_steps": 1,
|
| 4 |
+
"input_features": {
|
| 5 |
+
"observation.images.image": {
|
| 6 |
+
"type": "VISUAL",
|
| 7 |
+
"shape": [
|
| 8 |
+
3,
|
| 9 |
+
256,
|
| 10 |
+
256
|
| 11 |
+
]
|
| 12 |
+
},
|
| 13 |
+
"observation.images.image2": {
|
| 14 |
+
"type": "VISUAL",
|
| 15 |
+
"shape": [
|
| 16 |
+
3,
|
| 17 |
+
256,
|
| 18 |
+
256
|
| 19 |
+
]
|
| 20 |
+
},
|
| 21 |
+
"observation.state": {
|
| 22 |
+
"type": "STATE",
|
| 23 |
+
"shape": [
|
| 24 |
+
8
|
| 25 |
+
]
|
| 26 |
+
},
|
| 27 |
+
"observation.images.empty_camera_0": {
|
| 28 |
+
"type": "VISUAL",
|
| 29 |
+
"shape": [
|
| 30 |
+
3,
|
| 31 |
+
224,
|
| 32 |
+
224
|
| 33 |
+
]
|
| 34 |
+
}
|
| 35 |
+
},
|
| 36 |
+
"output_features": {
|
| 37 |
+
"action": {
|
| 38 |
+
"type": "ACTION",
|
| 39 |
+
"shape": [
|
| 40 |
+
7
|
| 41 |
+
]
|
| 42 |
+
}
|
| 43 |
+
},
|
| 44 |
+
"device": "cuda",
|
| 45 |
+
"use_amp": false,
|
| 46 |
+
"use_peft": false,
|
| 47 |
+
"push_to_hub": false,
|
| 48 |
+
"repo_id": "GSR/PI05-LIBERO",
|
| 49 |
+
"private": null,
|
| 50 |
+
"tags": null,
|
| 51 |
+
"license": null,
|
| 52 |
+
"pretrained_path": null,
|
| 53 |
+
"paligemma_variant": "gemma_2b",
|
| 54 |
+
"action_expert_variant": "gemma_300m",
|
| 55 |
+
"dtype": "bfloat16",
|
| 56 |
+
"chunk_size": 50,
|
| 57 |
+
"n_action_steps": 50,
|
| 58 |
+
"max_state_dim": 32,
|
| 59 |
+
"max_action_dim": 32,
|
| 60 |
+
"num_inference_steps": 10,
|
| 61 |
+
"time_sampling_beta_alpha": 1.5,
|
| 62 |
+
"time_sampling_beta_beta": 1.0,
|
| 63 |
+
"time_sampling_scale": 0.999,
|
| 64 |
+
"time_sampling_offset": 0.001,
|
| 65 |
+
"min_period": 0.004,
|
| 66 |
+
"max_period": 4.0,
|
| 67 |
+
"use_relative_actions": false,
|
| 68 |
+
"relative_exclude_joints": [
|
| 69 |
+
"gripper"
|
| 70 |
+
],
|
| 71 |
+
"action_feature_names": [
|
| 72 |
+
"actions"
|
| 73 |
+
],
|
| 74 |
+
"rtc_config": null,
|
| 75 |
+
"image_resolution": [
|
| 76 |
+
224,
|
| 77 |
+
224
|
| 78 |
+
],
|
| 79 |
+
"empty_cameras": 1,
|
| 80 |
+
"tokenizer_max_length": 64,
|
| 81 |
+
"normalization_mapping": {
|
| 82 |
+
"ACTION": "MEAN_STD",
|
| 83 |
+
"STATE": "MEAN_STD",
|
| 84 |
+
"VISUAL": "IDENTITY"
|
| 85 |
+
},
|
| 86 |
+
"gradient_checkpointing": true,
|
| 87 |
+
"compile_model": false,
|
| 88 |
+
"compile_mode": "max-autotune",
|
| 89 |
+
"freeze_vision_encoder": true,
|
| 90 |
+
"train_expert_only": true,
|
| 91 |
+
"pi05_t5_bottleneck": true,
|
| 92 |
+
"pi05_neutral_prompt": "perform the task",
|
| 93 |
+
"pi05_t5_model": "google-t5/t5-large",
|
| 94 |
+
"pi05_t5_max_length": 16,
|
| 95 |
+
"pi05_paligemma_tokenizer": "google/paligemma-3b-pt-224",
|
| 96 |
+
"pi05_reinit_binding_after_load": true,
|
| 97 |
+
"pi05_t5_cross_attention": false,
|
| 98 |
+
"pi05_t5_cross_attention_gate_init": 0.05,
|
| 99 |
+
"pi05_t5_cross_attention_strict_vla_adapter": false,
|
| 100 |
+
"pi05_ground_t5_in_native_slots": true,
|
| 101 |
+
"pi05_ground_t5_preserve_native_prompt": true,
|
| 102 |
+
"pi05_native_grounder_num_heads": 8,
|
| 103 |
+
"pi05_native_grounder_gate_init": 1.0,
|
| 104 |
+
"pi05_t5_eval_mode": "normal",
|
| 105 |
+
"pi05_wrong_t5_text": "turn on the stove",
|
| 106 |
+
"pi05_t5_preserve_native_prompt": false,
|
| 107 |
+
"pi05_motor_preserving_distillation": false,
|
| 108 |
+
"pi05_motor_distillation_weight": 1.0,
|
| 109 |
+
"pi05_motor_preserving_curriculum": false,
|
| 110 |
+
"pi05_motor_curriculum_start_step": 0,
|
| 111 |
+
"pi05_motor_curriculum_end_step": 3500,
|
| 112 |
+
"pi05_motor_curriculum_flow_weight": 1.0,
|
| 113 |
+
"pi05_motor_rollout_distillation_weight": 1.0,
|
| 114 |
+
"pi05_motor_rollout_distillation_every": 1,
|
| 115 |
+
"pi05_motor_rollout_distillation_batch_size": 1,
|
| 116 |
+
"pi05_interface_matching": false,
|
| 117 |
+
"pi05_interface_loss_weight": 1.0,
|
| 118 |
+
"pi05_interface_velocity_weight": 0.0,
|
| 119 |
+
"pi05_native_soft_prefix": false,
|
| 120 |
+
"pi05_native_soft_prefix_tokens": 32,
|
| 121 |
+
"pi05_native_soft_prefix_layers": 2,
|
| 122 |
+
"pi05_native_soft_prefix_heads": 16,
|
| 123 |
+
"pi05_native_soft_prefix_mode": "append",
|
| 124 |
+
"pi05_native_soft_prefix_start_index": 3,
|
| 125 |
+
"pi05_native_soft_prefix_matching": false,
|
| 126 |
+
"pi05_native_soft_prefix_interface_weight": 1.0,
|
| 127 |
+
"pi05_native_soft_prefix_velocity_weight": 0.1,
|
| 128 |
+
"pi05_native_soft_prefix_flow_weight": 0.0,
|
| 129 |
+
"pi05_native_soft_prefix_embedding_weight": 0.0,
|
| 130 |
+
"pi05_train_paraphrase_distillation": false,
|
| 131 |
+
"pi05_train_paraphrases": "",
|
| 132 |
+
"pi05_eval_paraphrases": "",
|
| 133 |
+
"pi05_train_canonical_probability": 0.25,
|
| 134 |
+
"pi05_translator_consistency_weight": 0.0,
|
| 135 |
+
"pi05_native_soft_prefix_inference_blend": 1.0,
|
| 136 |
+
"pi05_native_soft_prefix_embedding_blend": 1.0,
|
| 137 |
+
"pi05_native_soft_prefix_training_blend_min": 1.0,
|
| 138 |
+
"pi05_native_soft_prefix_training_blend_max": 1.0,
|
| 139 |
+
"pi05_native_soft_prefix_geometry_preserving": false,
|
| 140 |
+
"pi05_native_soft_prefix_sentence_bottleneck": false,
|
| 141 |
+
"pi05_native_soft_prefix_zero_init": false,
|
| 142 |
+
"pi05_native_kv_transplant": false,
|
| 143 |
+
"pi05_native_kv_matching": false,
|
| 144 |
+
"pi05_native_kv_neutral_conditioning": false,
|
| 145 |
+
"pi05_native_kv_visual_conditioning": false,
|
| 146 |
+
"pi05_native_kv_visual_summary_tokens": 8,
|
| 147 |
+
"pi05_native_kv_resampler_dim": 512,
|
| 148 |
+
"pi05_native_kv_resampler_layers": 2,
|
| 149 |
+
"pi05_native_kv_resampler_heads": 8,
|
| 150 |
+
"pi05_native_kv_weight": 1.0,
|
| 151 |
+
"pi05_native_kv_interface_weight": 0.1,
|
| 152 |
+
"pi05_native_kv_velocity_weight": 0.1,
|
| 153 |
+
"optimizer_lr": 0.0001,
|
| 154 |
+
"optimizer_betas": [
|
| 155 |
+
0.9,
|
| 156 |
+
0.95
|
| 157 |
+
],
|
| 158 |
+
"optimizer_eps": 1e-08,
|
| 159 |
+
"optimizer_weight_decay": 0.01,
|
| 160 |
+
"optimizer_grad_clip_norm": 1.0,
|
| 161 |
+
"scheduler_warmup_steps": 125,
|
| 162 |
+
"scheduler_decay_steps": 6250,
|
| 163 |
+
"scheduler_decay_lr": 5e-06,
|
| 164 |
+
"gsr_enable": true,
|
| 165 |
+
"gsr_preserve_native_language": true,
|
| 166 |
+
"gsr_t5_model": "google-t5/t5-large",
|
| 167 |
+
"gsr_t5_max_length": 16,
|
| 168 |
+
"gsr_paligemma_tokenizer": "google/paligemma-3b-pt-224",
|
| 169 |
+
"gsr_reinitialize_action_binding": true,
|
| 170 |
+
"gsr_grounder_num_heads": 8,
|
| 171 |
+
"gsr_grounder_gate_init": 1.0
|
| 172 |
+
}
|
GSR-PI05-LIBERO/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:733083a728f54ed1d9e2d7bf26380b12ede01e9a42b53305dd0a0e2626cf8002
|
| 3 |
+
size 10242786612
|
GSR-PI05-LIBERO/policy_postprocessor.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "policy_postprocessor",
|
| 3 |
+
"steps": [
|
| 4 |
+
{
|
| 5 |
+
"registry_name": "unnormalizer_processor",
|
| 6 |
+
"config": {
|
| 7 |
+
"eps": 1e-08,
|
| 8 |
+
"features": {
|
| 9 |
+
"action": {
|
| 10 |
+
"type": "ACTION",
|
| 11 |
+
"shape": [
|
| 12 |
+
7
|
| 13 |
+
]
|
| 14 |
+
}
|
| 15 |
+
},
|
| 16 |
+
"norm_map": {
|
| 17 |
+
"ACTION": "MEAN_STD",
|
| 18 |
+
"STATE": "MEAN_STD",
|
| 19 |
+
"VISUAL": "IDENTITY"
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
"state_file": "policy_postprocessor_step_0_unnormalizer_processor.safetensors"
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
"registry_name": "absolute_actions_processor",
|
| 26 |
+
"config": {
|
| 27 |
+
"enabled": false
|
| 28 |
+
}
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"registry_name": "device_processor",
|
| 32 |
+
"config": {
|
| 33 |
+
"device": "cpu",
|
| 34 |
+
"float_dtype": null
|
| 35 |
+
}
|
| 36 |
+
}
|
| 37 |
+
]
|
| 38 |
+
}
|
GSR-PI05-LIBERO/policy_postprocessor_step_0_unnormalizer_processor.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a002c0df7f79c5b169c5a899ad151d4ea1bed246c7d82bd93ed1556558d517a9
|
| 3 |
+
size 7668
|
GSR-PI05-LIBERO/policy_preprocessor.json
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "policy_preprocessor",
|
| 3 |
+
"steps": [
|
| 4 |
+
{
|
| 5 |
+
"registry_name": "rename_observations_processor",
|
| 6 |
+
"config": {
|
| 7 |
+
"rename_map": {}
|
| 8 |
+
}
|
| 9 |
+
},
|
| 10 |
+
{
|
| 11 |
+
"registry_name": "to_batch_processor",
|
| 12 |
+
"config": {}
|
| 13 |
+
},
|
| 14 |
+
{
|
| 15 |
+
"registry_name": "delta_actions_processor",
|
| 16 |
+
"config": {
|
| 17 |
+
"enabled": false,
|
| 18 |
+
"exclude_joints": [
|
| 19 |
+
"gripper"
|
| 20 |
+
],
|
| 21 |
+
"action_names": [
|
| 22 |
+
"actions"
|
| 23 |
+
]
|
| 24 |
+
}
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"registry_name": "normalizer_processor",
|
| 28 |
+
"config": {
|
| 29 |
+
"eps": 1e-08,
|
| 30 |
+
"features": {
|
| 31 |
+
"observation.images.image": {
|
| 32 |
+
"type": "VISUAL",
|
| 33 |
+
"shape": [
|
| 34 |
+
3,
|
| 35 |
+
256,
|
| 36 |
+
256
|
| 37 |
+
]
|
| 38 |
+
},
|
| 39 |
+
"observation.images.image2": {
|
| 40 |
+
"type": "VISUAL",
|
| 41 |
+
"shape": [
|
| 42 |
+
3,
|
| 43 |
+
256,
|
| 44 |
+
256
|
| 45 |
+
]
|
| 46 |
+
},
|
| 47 |
+
"observation.state": {
|
| 48 |
+
"type": "STATE",
|
| 49 |
+
"shape": [
|
| 50 |
+
8
|
| 51 |
+
]
|
| 52 |
+
},
|
| 53 |
+
"observation.images.empty_camera_0": {
|
| 54 |
+
"type": "VISUAL",
|
| 55 |
+
"shape": [
|
| 56 |
+
3,
|
| 57 |
+
224,
|
| 58 |
+
224
|
| 59 |
+
]
|
| 60 |
+
},
|
| 61 |
+
"action": {
|
| 62 |
+
"type": "ACTION",
|
| 63 |
+
"shape": [
|
| 64 |
+
7
|
| 65 |
+
]
|
| 66 |
+
}
|
| 67 |
+
},
|
| 68 |
+
"norm_map": {
|
| 69 |
+
"ACTION": "MEAN_STD",
|
| 70 |
+
"STATE": "MEAN_STD",
|
| 71 |
+
"VISUAL": "IDENTITY"
|
| 72 |
+
}
|
| 73 |
+
},
|
| 74 |
+
"state_file": "policy_preprocessor_step_3_normalizer_processor.safetensors"
|
| 75 |
+
},
|
| 76 |
+
{
|
| 77 |
+
"registry_name": "pi05_prepare_state_tokenizer_processor_step",
|
| 78 |
+
"config": {
|
| 79 |
+
"max_state_dim": 32,
|
| 80 |
+
"task_key": "task",
|
| 81 |
+
"neutralize_task": false,
|
| 82 |
+
"preserve_t5_task": true,
|
| 83 |
+
"neutral_prompt": "perform the task",
|
| 84 |
+
"t5_task_key": "pi05_t5_task",
|
| 85 |
+
"t5_eval_mode": "normal",
|
| 86 |
+
"wrong_t5_text": "turn on the stove",
|
| 87 |
+
"preserve_canonical_t5_task": false,
|
| 88 |
+
"canonical_t5_task_key": "pi05_canonical_t5_task",
|
| 89 |
+
"preserve_teacher_prompt": false,
|
| 90 |
+
"teacher_task_key": "pi05_teacher_task"
|
| 91 |
+
}
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"registry_name": "pi05_t5_tokenizer_processor_step",
|
| 95 |
+
"config": {
|
| 96 |
+
"tokenizer_name": "google-t5/t5-large",
|
| 97 |
+
"max_length": 16,
|
| 98 |
+
"task_key": "pi05_t5_task",
|
| 99 |
+
"output_tokens_key": "observation.pi05_t5.tokens",
|
| 100 |
+
"output_attention_mask_key": "observation.pi05_t5.attention_mask",
|
| 101 |
+
"padding_side": "right",
|
| 102 |
+
"padding": "max_length",
|
| 103 |
+
"truncation": true
|
| 104 |
+
}
|
| 105 |
+
},
|
| 106 |
+
{
|
| 107 |
+
"registry_name": "tokenizer_processor",
|
| 108 |
+
"config": {
|
| 109 |
+
"max_length": 64,
|
| 110 |
+
"task_key": "task",
|
| 111 |
+
"padding_side": "right",
|
| 112 |
+
"padding": "max_length",
|
| 113 |
+
"truncation": true,
|
| 114 |
+
"tokenizer_name": "google/paligemma-3b-pt-224"
|
| 115 |
+
}
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"registry_name": "device_processor",
|
| 119 |
+
"config": {
|
| 120 |
+
"device": "cuda",
|
| 121 |
+
"float_dtype": null
|
| 122 |
+
}
|
| 123 |
+
}
|
| 124 |
+
]
|
| 125 |
+
}
|
GSR-PI05-LIBERO/policy_preprocessor_step_3_normalizer_processor.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a002c0df7f79c5b169c5a899ad151d4ea1bed246c7d82bd93ed1556558d517a9
|
| 3 |
+
size 7668
|
GSR-PI05-LIBERO/train_config.json
ADDED
|
@@ -0,0 +1,832 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset": {
|
| 3 |
+
"repo_id": "HuggingFaceVLA/libero",
|
| 4 |
+
"root": null,
|
| 5 |
+
"episodes": [
|
| 6 |
+
379,
|
| 7 |
+
380,
|
| 8 |
+
381,
|
| 9 |
+
382,
|
| 10 |
+
383,
|
| 11 |
+
384,
|
| 12 |
+
385,
|
| 13 |
+
386,
|
| 14 |
+
387,
|
| 15 |
+
388,
|
| 16 |
+
389,
|
| 17 |
+
390,
|
| 18 |
+
391,
|
| 19 |
+
392,
|
| 20 |
+
393,
|
| 21 |
+
394,
|
| 22 |
+
395,
|
| 23 |
+
396,
|
| 24 |
+
397,
|
| 25 |
+
398,
|
| 26 |
+
399,
|
| 27 |
+
400,
|
| 28 |
+
401,
|
| 29 |
+
402,
|
| 30 |
+
403,
|
| 31 |
+
404,
|
| 32 |
+
405,
|
| 33 |
+
406,
|
| 34 |
+
407,
|
| 35 |
+
408,
|
| 36 |
+
409,
|
| 37 |
+
410,
|
| 38 |
+
411,
|
| 39 |
+
412,
|
| 40 |
+
413,
|
| 41 |
+
414,
|
| 42 |
+
415,
|
| 43 |
+
416,
|
| 44 |
+
417,
|
| 45 |
+
418,
|
| 46 |
+
419,
|
| 47 |
+
420,
|
| 48 |
+
421,
|
| 49 |
+
422,
|
| 50 |
+
423,
|
| 51 |
+
424,
|
| 52 |
+
425,
|
| 53 |
+
426,
|
| 54 |
+
427,
|
| 55 |
+
428,
|
| 56 |
+
429,
|
| 57 |
+
430,
|
| 58 |
+
431,
|
| 59 |
+
432,
|
| 60 |
+
433,
|
| 61 |
+
434,
|
| 62 |
+
435,
|
| 63 |
+
436,
|
| 64 |
+
437,
|
| 65 |
+
438,
|
| 66 |
+
439,
|
| 67 |
+
440,
|
| 68 |
+
441,
|
| 69 |
+
442,
|
| 70 |
+
443,
|
| 71 |
+
444,
|
| 72 |
+
445,
|
| 73 |
+
446,
|
| 74 |
+
447,
|
| 75 |
+
448,
|
| 76 |
+
449,
|
| 77 |
+
450,
|
| 78 |
+
451,
|
| 79 |
+
452,
|
| 80 |
+
453,
|
| 81 |
+
454,
|
| 82 |
+
455,
|
| 83 |
+
456,
|
| 84 |
+
457,
|
| 85 |
+
458,
|
| 86 |
+
459,
|
| 87 |
+
460,
|
| 88 |
+
461,
|
| 89 |
+
462,
|
| 90 |
+
463,
|
| 91 |
+
464,
|
| 92 |
+
465,
|
| 93 |
+
466,
|
| 94 |
+
467,
|
| 95 |
+
468,
|
| 96 |
+
469,
|
| 97 |
+
470,
|
| 98 |
+
471,
|
| 99 |
+
472,
|
| 100 |
+
473,
|
| 101 |
+
474,
|
| 102 |
+
475,
|
| 103 |
+
476,
|
| 104 |
+
477,
|
| 105 |
+
478,
|
| 106 |
+
479,
|
| 107 |
+
480,
|
| 108 |
+
481,
|
| 109 |
+
482,
|
| 110 |
+
483,
|
| 111 |
+
484,
|
| 112 |
+
485,
|
| 113 |
+
486,
|
| 114 |
+
487,
|
| 115 |
+
488,
|
| 116 |
+
489,
|
| 117 |
+
490,
|
| 118 |
+
491,
|
| 119 |
+
492,
|
| 120 |
+
493,
|
| 121 |
+
494,
|
| 122 |
+
495,
|
| 123 |
+
496,
|
| 124 |
+
497,
|
| 125 |
+
498,
|
| 126 |
+
499,
|
| 127 |
+
500,
|
| 128 |
+
501,
|
| 129 |
+
502,
|
| 130 |
+
503,
|
| 131 |
+
504,
|
| 132 |
+
505,
|
| 133 |
+
506,
|
| 134 |
+
507,
|
| 135 |
+
508,
|
| 136 |
+
509,
|
| 137 |
+
510,
|
| 138 |
+
511,
|
| 139 |
+
512,
|
| 140 |
+
513,
|
| 141 |
+
514,
|
| 142 |
+
515,
|
| 143 |
+
516,
|
| 144 |
+
517,
|
| 145 |
+
518,
|
| 146 |
+
519,
|
| 147 |
+
520,
|
| 148 |
+
521,
|
| 149 |
+
522,
|
| 150 |
+
523,
|
| 151 |
+
524,
|
| 152 |
+
525,
|
| 153 |
+
526,
|
| 154 |
+
527,
|
| 155 |
+
528,
|
| 156 |
+
529,
|
| 157 |
+
530,
|
| 158 |
+
531,
|
| 159 |
+
532,
|
| 160 |
+
533,
|
| 161 |
+
534,
|
| 162 |
+
535,
|
| 163 |
+
536,
|
| 164 |
+
537,
|
| 165 |
+
538,
|
| 166 |
+
539,
|
| 167 |
+
540,
|
| 168 |
+
541,
|
| 169 |
+
542,
|
| 170 |
+
543,
|
| 171 |
+
544,
|
| 172 |
+
545,
|
| 173 |
+
546,
|
| 174 |
+
547,
|
| 175 |
+
548,
|
| 176 |
+
549,
|
| 177 |
+
550,
|
| 178 |
+
551,
|
| 179 |
+
552,
|
| 180 |
+
553,
|
| 181 |
+
554,
|
| 182 |
+
555,
|
| 183 |
+
556,
|
| 184 |
+
557,
|
| 185 |
+
558,
|
| 186 |
+
559,
|
| 187 |
+
560,
|
| 188 |
+
561,
|
| 189 |
+
562,
|
| 190 |
+
563,
|
| 191 |
+
564,
|
| 192 |
+
565,
|
| 193 |
+
566,
|
| 194 |
+
567,
|
| 195 |
+
568,
|
| 196 |
+
569,
|
| 197 |
+
570,
|
| 198 |
+
571,
|
| 199 |
+
572,
|
| 200 |
+
573,
|
| 201 |
+
574,
|
| 202 |
+
575,
|
| 203 |
+
576,
|
| 204 |
+
577,
|
| 205 |
+
578,
|
| 206 |
+
579,
|
| 207 |
+
580,
|
| 208 |
+
581,
|
| 209 |
+
582,
|
| 210 |
+
583,
|
| 211 |
+
584,
|
| 212 |
+
585,
|
| 213 |
+
586,
|
| 214 |
+
587,
|
| 215 |
+
588,
|
| 216 |
+
589,
|
| 217 |
+
590,
|
| 218 |
+
591,
|
| 219 |
+
592,
|
| 220 |
+
593,
|
| 221 |
+
594,
|
| 222 |
+
595,
|
| 223 |
+
596,
|
| 224 |
+
597,
|
| 225 |
+
598,
|
| 226 |
+
599,
|
| 227 |
+
600,
|
| 228 |
+
601,
|
| 229 |
+
602,
|
| 230 |
+
603,
|
| 231 |
+
604,
|
| 232 |
+
605,
|
| 233 |
+
606,
|
| 234 |
+
607,
|
| 235 |
+
608,
|
| 236 |
+
609,
|
| 237 |
+
610,
|
| 238 |
+
611,
|
| 239 |
+
612,
|
| 240 |
+
613,
|
| 241 |
+
614,
|
| 242 |
+
615,
|
| 243 |
+
616,
|
| 244 |
+
617,
|
| 245 |
+
618,
|
| 246 |
+
619,
|
| 247 |
+
620,
|
| 248 |
+
621,
|
| 249 |
+
622,
|
| 250 |
+
623,
|
| 251 |
+
624,
|
| 252 |
+
625,
|
| 253 |
+
626,
|
| 254 |
+
627,
|
| 255 |
+
628,
|
| 256 |
+
629,
|
| 257 |
+
630,
|
| 258 |
+
631,
|
| 259 |
+
632,
|
| 260 |
+
633,
|
| 261 |
+
634,
|
| 262 |
+
635,
|
| 263 |
+
636,
|
| 264 |
+
637,
|
| 265 |
+
638,
|
| 266 |
+
639,
|
| 267 |
+
640,
|
| 268 |
+
641,
|
| 269 |
+
642,
|
| 270 |
+
643,
|
| 271 |
+
644,
|
| 272 |
+
645,
|
| 273 |
+
646,
|
| 274 |
+
647,
|
| 275 |
+
648,
|
| 276 |
+
649,
|
| 277 |
+
650,
|
| 278 |
+
651,
|
| 279 |
+
652,
|
| 280 |
+
653,
|
| 281 |
+
654,
|
| 282 |
+
655,
|
| 283 |
+
656,
|
| 284 |
+
657,
|
| 285 |
+
658,
|
| 286 |
+
659,
|
| 287 |
+
660,
|
| 288 |
+
661,
|
| 289 |
+
662,
|
| 290 |
+
663,
|
| 291 |
+
664,
|
| 292 |
+
665,
|
| 293 |
+
666,
|
| 294 |
+
667,
|
| 295 |
+
668,
|
| 296 |
+
669,
|
| 297 |
+
670,
|
| 298 |
+
671,
|
| 299 |
+
672,
|
| 300 |
+
673,
|
| 301 |
+
674,
|
| 302 |
+
675,
|
| 303 |
+
676,
|
| 304 |
+
677,
|
| 305 |
+
678,
|
| 306 |
+
679,
|
| 307 |
+
680,
|
| 308 |
+
681,
|
| 309 |
+
682,
|
| 310 |
+
683,
|
| 311 |
+
684,
|
| 312 |
+
685,
|
| 313 |
+
686,
|
| 314 |
+
687,
|
| 315 |
+
688,
|
| 316 |
+
689,
|
| 317 |
+
690,
|
| 318 |
+
691,
|
| 319 |
+
692,
|
| 320 |
+
693,
|
| 321 |
+
694,
|
| 322 |
+
695,
|
| 323 |
+
696,
|
| 324 |
+
697,
|
| 325 |
+
698,
|
| 326 |
+
699,
|
| 327 |
+
700,
|
| 328 |
+
701,
|
| 329 |
+
702,
|
| 330 |
+
703,
|
| 331 |
+
704,
|
| 332 |
+
705,
|
| 333 |
+
706,
|
| 334 |
+
707,
|
| 335 |
+
708,
|
| 336 |
+
709,
|
| 337 |
+
710,
|
| 338 |
+
711,
|
| 339 |
+
712,
|
| 340 |
+
713,
|
| 341 |
+
714,
|
| 342 |
+
715,
|
| 343 |
+
716,
|
| 344 |
+
717,
|
| 345 |
+
718,
|
| 346 |
+
719,
|
| 347 |
+
720,
|
| 348 |
+
721,
|
| 349 |
+
722,
|
| 350 |
+
723,
|
| 351 |
+
724,
|
| 352 |
+
725,
|
| 353 |
+
726,
|
| 354 |
+
727,
|
| 355 |
+
728,
|
| 356 |
+
729,
|
| 357 |
+
730,
|
| 358 |
+
731,
|
| 359 |
+
732,
|
| 360 |
+
733,
|
| 361 |
+
734,
|
| 362 |
+
735,
|
| 363 |
+
736,
|
| 364 |
+
737,
|
| 365 |
+
738,
|
| 366 |
+
739,
|
| 367 |
+
740,
|
| 368 |
+
741,
|
| 369 |
+
742,
|
| 370 |
+
743,
|
| 371 |
+
744,
|
| 372 |
+
745,
|
| 373 |
+
746,
|
| 374 |
+
747,
|
| 375 |
+
748,
|
| 376 |
+
749,
|
| 377 |
+
750,
|
| 378 |
+
751,
|
| 379 |
+
752,
|
| 380 |
+
753,
|
| 381 |
+
754,
|
| 382 |
+
755,
|
| 383 |
+
756,
|
| 384 |
+
757,
|
| 385 |
+
758,
|
| 386 |
+
759,
|
| 387 |
+
760,
|
| 388 |
+
761,
|
| 389 |
+
762,
|
| 390 |
+
763,
|
| 391 |
+
764,
|
| 392 |
+
765,
|
| 393 |
+
766,
|
| 394 |
+
767,
|
| 395 |
+
768,
|
| 396 |
+
769,
|
| 397 |
+
770,
|
| 398 |
+
771,
|
| 399 |
+
772,
|
| 400 |
+
773,
|
| 401 |
+
774,
|
| 402 |
+
775,
|
| 403 |
+
776,
|
| 404 |
+
777,
|
| 405 |
+
778,
|
| 406 |
+
779,
|
| 407 |
+
780,
|
| 408 |
+
781,
|
| 409 |
+
782,
|
| 410 |
+
783,
|
| 411 |
+
784,
|
| 412 |
+
785,
|
| 413 |
+
786,
|
| 414 |
+
787,
|
| 415 |
+
788,
|
| 416 |
+
789,
|
| 417 |
+
790,
|
| 418 |
+
791,
|
| 419 |
+
792,
|
| 420 |
+
793,
|
| 421 |
+
794,
|
| 422 |
+
795,
|
| 423 |
+
796,
|
| 424 |
+
797,
|
| 425 |
+
798,
|
| 426 |
+
799,
|
| 427 |
+
800,
|
| 428 |
+
801,
|
| 429 |
+
802,
|
| 430 |
+
803,
|
| 431 |
+
804,
|
| 432 |
+
805,
|
| 433 |
+
806
|
| 434 |
+
],
|
| 435 |
+
"image_transforms": {
|
| 436 |
+
"enable": false,
|
| 437 |
+
"max_num_transforms": 3,
|
| 438 |
+
"random_order": false,
|
| 439 |
+
"tfs": {
|
| 440 |
+
"brightness": {
|
| 441 |
+
"weight": 1.0,
|
| 442 |
+
"type": "ColorJitter",
|
| 443 |
+
"kwargs": {
|
| 444 |
+
"brightness": [
|
| 445 |
+
0.8,
|
| 446 |
+
1.2
|
| 447 |
+
]
|
| 448 |
+
}
|
| 449 |
+
},
|
| 450 |
+
"contrast": {
|
| 451 |
+
"weight": 1.0,
|
| 452 |
+
"type": "ColorJitter",
|
| 453 |
+
"kwargs": {
|
| 454 |
+
"contrast": [
|
| 455 |
+
0.8,
|
| 456 |
+
1.2
|
| 457 |
+
]
|
| 458 |
+
}
|
| 459 |
+
},
|
| 460 |
+
"saturation": {
|
| 461 |
+
"weight": 1.0,
|
| 462 |
+
"type": "ColorJitter",
|
| 463 |
+
"kwargs": {
|
| 464 |
+
"saturation": [
|
| 465 |
+
0.5,
|
| 466 |
+
1.5
|
| 467 |
+
]
|
| 468 |
+
}
|
| 469 |
+
},
|
| 470 |
+
"hue": {
|
| 471 |
+
"weight": 1.0,
|
| 472 |
+
"type": "ColorJitter",
|
| 473 |
+
"kwargs": {
|
| 474 |
+
"hue": [
|
| 475 |
+
-0.05,
|
| 476 |
+
0.05
|
| 477 |
+
]
|
| 478 |
+
}
|
| 479 |
+
},
|
| 480 |
+
"sharpness": {
|
| 481 |
+
"weight": 1.0,
|
| 482 |
+
"type": "SharpnessJitter",
|
| 483 |
+
"kwargs": {
|
| 484 |
+
"sharpness": [
|
| 485 |
+
0.5,
|
| 486 |
+
1.5
|
| 487 |
+
]
|
| 488 |
+
}
|
| 489 |
+
},
|
| 490 |
+
"affine": {
|
| 491 |
+
"weight": 1.0,
|
| 492 |
+
"type": "RandomAffine",
|
| 493 |
+
"kwargs": {
|
| 494 |
+
"degrees": [
|
| 495 |
+
-5.0,
|
| 496 |
+
5.0
|
| 497 |
+
],
|
| 498 |
+
"translate": [
|
| 499 |
+
0.05,
|
| 500 |
+
0.05
|
| 501 |
+
]
|
| 502 |
+
}
|
| 503 |
+
}
|
| 504 |
+
}
|
| 505 |
+
},
|
| 506 |
+
"revision": null,
|
| 507 |
+
"use_imagenet_stats": true,
|
| 508 |
+
"video_backend": "pyav",
|
| 509 |
+
"return_uint8": false,
|
| 510 |
+
"streaming": false
|
| 511 |
+
},
|
| 512 |
+
"env": {
|
| 513 |
+
"type": "libero",
|
| 514 |
+
"task": "libero_goal",
|
| 515 |
+
"fps": 30,
|
| 516 |
+
"features": {
|
| 517 |
+
"action": {
|
| 518 |
+
"type": "ACTION",
|
| 519 |
+
"shape": [
|
| 520 |
+
7
|
| 521 |
+
]
|
| 522 |
+
},
|
| 523 |
+
"pixels/agentview_image": {
|
| 524 |
+
"type": "VISUAL",
|
| 525 |
+
"shape": [
|
| 526 |
+
360,
|
| 527 |
+
360,
|
| 528 |
+
3
|
| 529 |
+
]
|
| 530 |
+
},
|
| 531 |
+
"pixels/robot0_eye_in_hand_image": {
|
| 532 |
+
"type": "VISUAL",
|
| 533 |
+
"shape": [
|
| 534 |
+
360,
|
| 535 |
+
360,
|
| 536 |
+
3
|
| 537 |
+
]
|
| 538 |
+
},
|
| 539 |
+
"robot_state/eef/pos": {
|
| 540 |
+
"type": "STATE",
|
| 541 |
+
"shape": [
|
| 542 |
+
3
|
| 543 |
+
]
|
| 544 |
+
},
|
| 545 |
+
"robot_state/eef/quat": {
|
| 546 |
+
"type": "STATE",
|
| 547 |
+
"shape": [
|
| 548 |
+
4
|
| 549 |
+
]
|
| 550 |
+
},
|
| 551 |
+
"robot_state/eef/mat": {
|
| 552 |
+
"type": "STATE",
|
| 553 |
+
"shape": [
|
| 554 |
+
3,
|
| 555 |
+
3
|
| 556 |
+
]
|
| 557 |
+
},
|
| 558 |
+
"robot_state/gripper/qpos": {
|
| 559 |
+
"type": "STATE",
|
| 560 |
+
"shape": [
|
| 561 |
+
2
|
| 562 |
+
]
|
| 563 |
+
},
|
| 564 |
+
"robot_state/gripper/qvel": {
|
| 565 |
+
"type": "STATE",
|
| 566 |
+
"shape": [
|
| 567 |
+
2
|
| 568 |
+
]
|
| 569 |
+
},
|
| 570 |
+
"robot_state/joints/pos": {
|
| 571 |
+
"type": "STATE",
|
| 572 |
+
"shape": [
|
| 573 |
+
7
|
| 574 |
+
]
|
| 575 |
+
},
|
| 576 |
+
"robot_state/joints/vel": {
|
| 577 |
+
"type": "STATE",
|
| 578 |
+
"shape": [
|
| 579 |
+
7
|
| 580 |
+
]
|
| 581 |
+
}
|
| 582 |
+
},
|
| 583 |
+
"features_map": {
|
| 584 |
+
"action": "action",
|
| 585 |
+
"robot_state/eef/pos": "observation.state.eef_pos",
|
| 586 |
+
"robot_state/eef/quat": "observation.state.eef_quat",
|
| 587 |
+
"robot_state/eef/mat": "observation.state.eef_mat",
|
| 588 |
+
"robot_state/gripper/qpos": "observation.state.gripper_qpos",
|
| 589 |
+
"robot_state/gripper/qvel": "observation.state.gripper_qvel",
|
| 590 |
+
"robot_state/joints/pos": "observation.state.joint_pos",
|
| 591 |
+
"robot_state/joints/vel": "observation.state.joint_vel",
|
| 592 |
+
"pixels/agentview_image": "observation.images.image",
|
| 593 |
+
"pixels/robot0_eye_in_hand_image": "observation.images.image2"
|
| 594 |
+
},
|
| 595 |
+
"max_parallel_tasks": 1,
|
| 596 |
+
"disable_env_checker": true,
|
| 597 |
+
"task_ids": null,
|
| 598 |
+
"episode_length": null,
|
| 599 |
+
"obs_type": "pixels_agent_pos",
|
| 600 |
+
"render_mode": "rgb_array",
|
| 601 |
+
"camera_name": "agentview_image,robot0_eye_in_hand_image",
|
| 602 |
+
"init_states": true,
|
| 603 |
+
"camera_name_mapping": null,
|
| 604 |
+
"observation_height": 360,
|
| 605 |
+
"observation_width": 360,
|
| 606 |
+
"is_libero_plus": false,
|
| 607 |
+
"control_mode": "relative"
|
| 608 |
+
},
|
| 609 |
+
"policy": {
|
| 610 |
+
"type": "pi05",
|
| 611 |
+
"n_obs_steps": 1,
|
| 612 |
+
"input_features": {
|
| 613 |
+
"observation.images.image": {
|
| 614 |
+
"type": "VISUAL",
|
| 615 |
+
"shape": [
|
| 616 |
+
3,
|
| 617 |
+
256,
|
| 618 |
+
256
|
| 619 |
+
]
|
| 620 |
+
},
|
| 621 |
+
"observation.images.image2": {
|
| 622 |
+
"type": "VISUAL",
|
| 623 |
+
"shape": [
|
| 624 |
+
3,
|
| 625 |
+
256,
|
| 626 |
+
256
|
| 627 |
+
]
|
| 628 |
+
},
|
| 629 |
+
"observation.state": {
|
| 630 |
+
"type": "STATE",
|
| 631 |
+
"shape": [
|
| 632 |
+
8
|
| 633 |
+
]
|
| 634 |
+
},
|
| 635 |
+
"observation.images.empty_camera_0": {
|
| 636 |
+
"type": "VISUAL",
|
| 637 |
+
"shape": [
|
| 638 |
+
3,
|
| 639 |
+
224,
|
| 640 |
+
224
|
| 641 |
+
]
|
| 642 |
+
}
|
| 643 |
+
},
|
| 644 |
+
"output_features": {
|
| 645 |
+
"action": {
|
| 646 |
+
"type": "ACTION",
|
| 647 |
+
"shape": [
|
| 648 |
+
7
|
| 649 |
+
]
|
| 650 |
+
}
|
| 651 |
+
},
|
| 652 |
+
"device": "cuda",
|
| 653 |
+
"use_amp": false,
|
| 654 |
+
"use_peft": false,
|
| 655 |
+
"push_to_hub": false,
|
| 656 |
+
"repo_id": "GSR/PI05-LIBERO",
|
| 657 |
+
"private": null,
|
| 658 |
+
"tags": null,
|
| 659 |
+
"license": null,
|
| 660 |
+
"pretrained_path": "lerobot/pi05_libero_finetuned_v044",
|
| 661 |
+
"paligemma_variant": "gemma_2b",
|
| 662 |
+
"action_expert_variant": "gemma_300m",
|
| 663 |
+
"dtype": "bfloat16",
|
| 664 |
+
"chunk_size": 50,
|
| 665 |
+
"n_action_steps": 50,
|
| 666 |
+
"max_state_dim": 32,
|
| 667 |
+
"max_action_dim": 32,
|
| 668 |
+
"num_inference_steps": 10,
|
| 669 |
+
"time_sampling_beta_alpha": 1.5,
|
| 670 |
+
"time_sampling_beta_beta": 1.0,
|
| 671 |
+
"time_sampling_scale": 0.999,
|
| 672 |
+
"time_sampling_offset": 0.001,
|
| 673 |
+
"min_period": 0.004,
|
| 674 |
+
"max_period": 4.0,
|
| 675 |
+
"use_relative_actions": false,
|
| 676 |
+
"relative_exclude_joints": [
|
| 677 |
+
"gripper"
|
| 678 |
+
],
|
| 679 |
+
"action_feature_names": [
|
| 680 |
+
"actions"
|
| 681 |
+
],
|
| 682 |
+
"rtc_config": null,
|
| 683 |
+
"image_resolution": [
|
| 684 |
+
224,
|
| 685 |
+
224
|
| 686 |
+
],
|
| 687 |
+
"empty_cameras": 1,
|
| 688 |
+
"tokenizer_max_length": 64,
|
| 689 |
+
"normalization_mapping": {
|
| 690 |
+
"ACTION": "MEAN_STD",
|
| 691 |
+
"STATE": "MEAN_STD",
|
| 692 |
+
"VISUAL": "IDENTITY"
|
| 693 |
+
},
|
| 694 |
+
"gradient_checkpointing": true,
|
| 695 |
+
"compile_model": false,
|
| 696 |
+
"compile_mode": "max-autotune",
|
| 697 |
+
"freeze_vision_encoder": true,
|
| 698 |
+
"train_expert_only": true,
|
| 699 |
+
"pi05_t5_bottleneck": true,
|
| 700 |
+
"pi05_neutral_prompt": "perform the task",
|
| 701 |
+
"pi05_t5_model": "google-t5/t5-large",
|
| 702 |
+
"pi05_t5_max_length": 16,
|
| 703 |
+
"pi05_paligemma_tokenizer": "google/paligemma-3b-pt-224",
|
| 704 |
+
"pi05_reinit_binding_after_load": true,
|
| 705 |
+
"pi05_t5_cross_attention": false,
|
| 706 |
+
"pi05_t5_cross_attention_gate_init": 0.05,
|
| 707 |
+
"pi05_t5_cross_attention_strict_vla_adapter": false,
|
| 708 |
+
"pi05_ground_t5_in_native_slots": true,
|
| 709 |
+
"pi05_ground_t5_preserve_native_prompt": true,
|
| 710 |
+
"pi05_native_grounder_num_heads": 8,
|
| 711 |
+
"pi05_native_grounder_gate_init": 1.0,
|
| 712 |
+
"pi05_t5_eval_mode": "normal",
|
| 713 |
+
"pi05_wrong_t5_text": "turn on the stove",
|
| 714 |
+
"pi05_t5_preserve_native_prompt": false,
|
| 715 |
+
"pi05_motor_preserving_distillation": false,
|
| 716 |
+
"pi05_motor_distillation_weight": 1.0,
|
| 717 |
+
"pi05_motor_preserving_curriculum": false,
|
| 718 |
+
"pi05_motor_curriculum_start_step": 0,
|
| 719 |
+
"pi05_motor_curriculum_end_step": 3500,
|
| 720 |
+
"pi05_motor_curriculum_flow_weight": 1.0,
|
| 721 |
+
"pi05_motor_rollout_distillation_weight": 1.0,
|
| 722 |
+
"pi05_motor_rollout_distillation_every": 1,
|
| 723 |
+
"pi05_motor_rollout_distillation_batch_size": 1,
|
| 724 |
+
"pi05_interface_matching": false,
|
| 725 |
+
"pi05_interface_loss_weight": 1.0,
|
| 726 |
+
"pi05_interface_velocity_weight": 0.0,
|
| 727 |
+
"pi05_native_soft_prefix": false,
|
| 728 |
+
"pi05_native_soft_prefix_tokens": 32,
|
| 729 |
+
"pi05_native_soft_prefix_layers": 2,
|
| 730 |
+
"pi05_native_soft_prefix_heads": 16,
|
| 731 |
+
"pi05_native_soft_prefix_mode": "append",
|
| 732 |
+
"pi05_native_soft_prefix_start_index": 3,
|
| 733 |
+
"pi05_native_soft_prefix_matching": false,
|
| 734 |
+
"pi05_native_soft_prefix_interface_weight": 1.0,
|
| 735 |
+
"pi05_native_soft_prefix_velocity_weight": 0.1,
|
| 736 |
+
"pi05_native_soft_prefix_flow_weight": 0.0,
|
| 737 |
+
"pi05_native_soft_prefix_embedding_weight": 0.0,
|
| 738 |
+
"pi05_train_paraphrase_distillation": false,
|
| 739 |
+
"pi05_train_paraphrases": "",
|
| 740 |
+
"pi05_eval_paraphrases": "",
|
| 741 |
+
"pi05_train_canonical_probability": 0.25,
|
| 742 |
+
"pi05_translator_consistency_weight": 0.0,
|
| 743 |
+
"pi05_native_soft_prefix_inference_blend": 1.0,
|
| 744 |
+
"pi05_native_soft_prefix_embedding_blend": 1.0,
|
| 745 |
+
"pi05_native_soft_prefix_training_blend_min": 1.0,
|
| 746 |
+
"pi05_native_soft_prefix_training_blend_max": 1.0,
|
| 747 |
+
"pi05_native_soft_prefix_geometry_preserving": false,
|
| 748 |
+
"pi05_native_soft_prefix_sentence_bottleneck": false,
|
| 749 |
+
"pi05_native_soft_prefix_zero_init": false,
|
| 750 |
+
"pi05_native_kv_transplant": false,
|
| 751 |
+
"pi05_native_kv_matching": false,
|
| 752 |
+
"pi05_native_kv_neutral_conditioning": false,
|
| 753 |
+
"pi05_native_kv_visual_conditioning": false,
|
| 754 |
+
"pi05_native_kv_visual_summary_tokens": 8,
|
| 755 |
+
"pi05_native_kv_resampler_dim": 512,
|
| 756 |
+
"pi05_native_kv_resampler_layers": 2,
|
| 757 |
+
"pi05_native_kv_resampler_heads": 8,
|
| 758 |
+
"pi05_native_kv_weight": 1.0,
|
| 759 |
+
"pi05_native_kv_interface_weight": 0.1,
|
| 760 |
+
"pi05_native_kv_velocity_weight": 0.1,
|
| 761 |
+
"optimizer_lr": 0.0001,
|
| 762 |
+
"optimizer_betas": [
|
| 763 |
+
0.9,
|
| 764 |
+
0.95
|
| 765 |
+
],
|
| 766 |
+
"optimizer_eps": 1e-08,
|
| 767 |
+
"optimizer_weight_decay": 0.01,
|
| 768 |
+
"optimizer_grad_clip_norm": 1.0,
|
| 769 |
+
"scheduler_warmup_steps": 125,
|
| 770 |
+
"scheduler_decay_steps": 6250,
|
| 771 |
+
"scheduler_decay_lr": 5e-06
|
| 772 |
+
},
|
| 773 |
+
"reward_model": null,
|
| 774 |
+
"output_dir": null,
|
| 775 |
+
"job_name": "pi05_gsr",
|
| 776 |
+
"resume": false,
|
| 777 |
+
"seed": 1000,
|
| 778 |
+
"cudnn_deterministic": false,
|
| 779 |
+
"num_workers": 6,
|
| 780 |
+
"batch_size": 32,
|
| 781 |
+
"gradient_accumulation_steps": 2,
|
| 782 |
+
"prefetch_factor": 4,
|
| 783 |
+
"persistent_workers": true,
|
| 784 |
+
"steps": 12500,
|
| 785 |
+
"eval_freq": -1,
|
| 786 |
+
"log_freq": 10,
|
| 787 |
+
"tolerance_s": 0.0001,
|
| 788 |
+
"save_checkpoint": true,
|
| 789 |
+
"save_freq": 1250,
|
| 790 |
+
"use_policy_training_preset": true,
|
| 791 |
+
"optimizer": {
|
| 792 |
+
"type": "adamw",
|
| 793 |
+
"lr": 0.0001,
|
| 794 |
+
"weight_decay": 0.01,
|
| 795 |
+
"grad_clip_norm": 1.0,
|
| 796 |
+
"betas": [
|
| 797 |
+
0.9,
|
| 798 |
+
0.95
|
| 799 |
+
],
|
| 800 |
+
"eps": 1e-08
|
| 801 |
+
},
|
| 802 |
+
"scheduler": {
|
| 803 |
+
"type": "cosine_decay_with_warmup",
|
| 804 |
+
"num_warmup_steps": 125,
|
| 805 |
+
"num_decay_steps": 6250,
|
| 806 |
+
"peak_lr": 0.0001,
|
| 807 |
+
"decay_lr": 5e-06,
|
| 808 |
+
"scale_to_training_steps": true
|
| 809 |
+
},
|
| 810 |
+
"eval": {
|
| 811 |
+
"n_episodes": 50,
|
| 812 |
+
"max_episodes_rendered": 10,
|
| 813 |
+
"batch_size": 50,
|
| 814 |
+
"language_mode": "correct",
|
| 815 |
+
"language_text": "",
|
| 816 |
+
"use_async_envs": true
|
| 817 |
+
},
|
| 818 |
+
"wandb": {
|
| 819 |
+
"enable": false,
|
| 820 |
+
"disable_artifact": false,
|
| 821 |
+
"project": "lerobot",
|
| 822 |
+
"entity": null,
|
| 823 |
+
"notes": null,
|
| 824 |
+
"run_id": null,
|
| 825 |
+
"mode": null,
|
| 826 |
+
"add_tags": true
|
| 827 |
+
},
|
| 828 |
+
"peft": null,
|
| 829 |
+
"sample_weighting": null,
|
| 830 |
+
"rename_map": {},
|
| 831 |
+
"checkpoint_path": null
|
| 832 |
+
}
|