AmberJar commited on
Commit
ba10c7d
·
verified ·
1 Parent(s): 066c511

Release PFD LIBERO 12x12 step62000 checkpoint

Browse files
README.md ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ library_name: pytorch
4
+ tags:
5
+ - robotics
6
+ - libero
7
+ - imitation-learning
8
+ - world-action-model
9
+ - pfd
10
+ - privileged-foresight-distillation
11
+ ---
12
+
13
+ # PFD LIBERO 12x12 Checkpoint
14
+
15
+ This repository contains the LIBERO 12x12 PFD checkpoint for **Privileged Foresight Distillation: Zero-Cost Future Correction for World Action Models**.
16
+
17
+ - Code: https://github.com/PengchengFang-cs/PFD
18
+ - Paper: https://arxiv.org/abs/2604.25859
19
+ - Checkpoint: `libero_pfd_action512_partial_12x12_step62000.pt`
20
+ - Model config: `config.yaml`
21
+ - Dataset normalization stats: `dataset_stats.json`
22
+
23
+ The Python package in the code release is still named `fastwam` for compatibility with the original training and evaluation paths.
24
+
25
+ ## Model
26
+
27
+ - Task: `libero_uncond_2cam224_1e-4`
28
+ - Model config: `fastwam_pfd_action512_partial`
29
+ - PFD stage: `s1`
30
+ - PFD training mode: `action512_partial`
31
+ - Partial trainable depth: action last 12 layers, video last 12 layers
32
+ - Base initialization: `libero_uncond_2cam224.pt`
33
+ - Training batch size: 32
34
+ - Training epochs: 30
35
+ - Selected checkpoint step: 62000
36
+
37
+ ## LIBERO Evaluation
38
+
39
+ Full-suite LIBERO evaluation used 50 trials per task over 40 tasks:
40
+
41
+ | Suite | Successes | Success Rate |
42
+ | --- | ---: | ---: |
43
+ | LIBERO-Spatial | 493 / 500 | 98.60% |
44
+ | LIBERO-Object | 496 / 500 | 99.20% |
45
+ | LIBERO-Goal | 496 / 500 | 99.20% |
46
+ | LIBERO-10 | 477 / 500 | 95.40% |
47
+ | Overall | 1962 / 2000 | 98.10% |
48
+
49
+ The corresponding evaluation records are included under `eval/`.
50
+
51
+ ## Download
52
+
53
+ ```bash
54
+ pip install -U huggingface_hub
55
+
56
+ huggingface-cli download AmberJar/PFD \
57
+ libero_pfd_action512_partial_12x12_step62000.pt \
58
+ config.yaml \
59
+ dataset_stats.json \
60
+ eval/summary.json \
61
+ eval/task_success_rates.csv \
62
+ --local-dir ./checkpoints/pfd_libero_12x12_step62000
63
+ ```
64
+
65
+ ## Evaluation Command
66
+
67
+ From the PFD code repository:
68
+
69
+ ```bash
70
+ export DIFFSYNTH_MODEL_BASE_PATH="$(pwd)/checkpoints"
71
+ export DIFFSYNTH_SKIP_DOWNLOAD=true
72
+ export LIBERO_CONFIG_PATH="$(pwd)/.libero_scratch"
73
+
74
+ python experiments/libero/run_libero_manager.py \
75
+ task=libero_uncond_2cam224_1e-4 \
76
+ model=fastwam_pfd_action512_partial \
77
+ ckpt=./checkpoints/pfd_libero_12x12_step62000/libero_pfd_action512_partial_12x12_step62000.pt \
78
+ EVALUATION.dataset_stats_path=./checkpoints/pfd_libero_12x12_step62000/dataset_stats.json \
79
+ EVALUATION.num_trials=50 \
80
+ MULTIRUN.num_gpus=8 \
81
+ model.pfd.partial_unfreeze.action_last_layers=12 \
82
+ model.pfd.partial_unfreeze.video_last_layers=12
83
+ ```
84
+
85
+ ## Integrity
86
+
87
+ See `SHA256SUMS` and `manifest.json` for file hashes and provenance.
88
+
89
+ ## Citation
90
+
91
+ ```bibtex
92
+ @article{fang2026pfd,
93
+ title={Privileged Foresight Distillation: Zero-Cost Future Correction for World Action Models},
94
+ author={Fang, Pengcheng and Chen, Hongli and Cai, Xiaohao},
95
+ journal={arXiv preprint arXiv:2604.25859},
96
+ year={2026}
97
+ }
98
+ ```
SHA256SUMS ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ 282ea886bc2157ffa909fdb55a723a066eed29bd89e6218a2a094e449f0abd2a libero_pfd_action512_partial_12x12_step62000.pt
2
+ dd82501215d0bf1f6fed0d984a69454fd167b881f58962eeea54f3a111af29e7 config.yaml
3
+ 0934cda73fdc43e462fdb6b5c9049a7e28f0e1ddb71ce4d4a1899c4f57087af7 dataset_stats.json
4
+ bda1c85946cab1d372311e8b998c66c5ee31630b8cdefab3810f04298989dd3f eval/summary.json
5
+ c53494b155be47388e5fd4d043681c0935c38982879765fca5bd8dd816be4acc eval/task_success_rates.csv
config.yaml ADDED
@@ -0,0 +1,223 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ output_dir: ./runs/libero_uncond_2cam224_1e-4/2026-04-22_12x12_h100x2_trainableonly_resume_from2000_nw8_pin_on
2
+ batch_size: 32
3
+ num_workers: 8
4
+ pin_memory: true
5
+ lr_scheduler_type: cosine
6
+ learning_rate: 6.0e-05
7
+ num_epochs: 30
8
+ max_steps: null
9
+ log_every: 10
10
+ save_every: 0
11
+ eval_every: 1000
12
+ eval_num_inference_steps: 10
13
+ eval_enable_video: false
14
+ eval_save_video: false
15
+ eval_enable_action_metrics: true
16
+ pre_save_cleanup: true
17
+ pre_save_cleanup_sleep_seconds: 5.0
18
+ pre_save_cleanup_malloc_trim: true
19
+ gradient_accumulation_steps: 1
20
+ mixed_precision: bf16
21
+ seed: 42
22
+ max_grad_norm: 1.0
23
+ weight_decay: 0.01
24
+ resume: null
25
+ init_checkpoint: ./checkpoints/fastwam_release/libero_uncond_2cam224.pt
26
+ resume_training_state: ./runs/libero_uncond_2cam224_1e-4/2026-04-22_12x12_h100x2_trainableonly_resume_from2000_nw8_pin_on/checkpoints/latest_training.pt
27
+ checkpoint:
28
+ policy: auto
29
+ lightweight_resume_backend: trainable_only
30
+ trainable_only_include_optimizer_state: false
31
+ save_latest: true
32
+ save_best_action_l1: true
33
+ save_best_action_l2: true
34
+ wandb:
35
+ enabled: false
36
+ workspace: null
37
+ project: fast-wam
38
+ name: libero_12x12_trainableonly_resume_from65000_20260425
39
+ group: null
40
+ mode: online
41
+ data:
42
+ train:
43
+ _target_: fastwam.datasets.lerobot.robot_video_dataset.RobotVideoDataset
44
+ dataset_dirs:
45
+ - ./data/libero_mujoco3.3.2/libero_spatial_no_noops_lerobot
46
+ - ./data/libero_mujoco3.3.2/libero_object_no_noops_lerobot
47
+ - ./data/libero_mujoco3.3.2/libero_goal_no_noops_lerobot
48
+ - ./data/libero_mujoco3.3.2/libero_10_no_noops_lerobot
49
+ shape_meta:
50
+ images:
51
+ - key: image
52
+ raw_shape:
53
+ - 3
54
+ - 512
55
+ - 512
56
+ shape:
57
+ - 3
58
+ - 224
59
+ - 224
60
+ - key: wrist_image
61
+ raw_shape:
62
+ - 3
63
+ - 512
64
+ - 512
65
+ shape:
66
+ - 3
67
+ - 224
68
+ - 224
69
+ action:
70
+ - key: default
71
+ raw_shape: 7
72
+ shape: 7
73
+ state:
74
+ - key: default
75
+ raw_shape: 8
76
+ shape: 8
77
+ num_frames: 33
78
+ global_sample_stride: 1
79
+ action_video_freq_ratio: 4
80
+ video_size:
81
+ - 224
82
+ - 448
83
+ camera_key: null
84
+ val_set_proportion: 0.0
85
+ is_training_set: true
86
+ skip_padding_as_possible: false
87
+ concat_multi_camera: horizontal
88
+ processor:
89
+ _target_: fastwam.datasets.lerobot.processors.fastwam_processor.FastWAMProcessor
90
+ shape_meta:
91
+ images:
92
+ - key: image
93
+ raw_shape:
94
+ - 3
95
+ - 512
96
+ - 512
97
+ shape:
98
+ - 3
99
+ - 224
100
+ - 224
101
+ - key: wrist_image
102
+ raw_shape:
103
+ - 3
104
+ - 512
105
+ - 512
106
+ shape:
107
+ - 3
108
+ - 224
109
+ - 224
110
+ action:
111
+ - key: default
112
+ raw_shape: 7
113
+ shape: 7
114
+ state:
115
+ - key: default
116
+ raw_shape: 8
117
+ shape: 8
118
+ num_obs_steps: 33
119
+ num_output_cameras: 2
120
+ action_output_dim: 7
121
+ proprio_output_dim: 8
122
+ delta_action_dim_mask:
123
+ default:
124
+ - true
125
+ - true
126
+ - true
127
+ - true
128
+ - true
129
+ - true
130
+ - false
131
+ action_state_transforms: null
132
+ use_stepwise_action_norm: false
133
+ norm_default_mode: min/max
134
+ norm_exception_mode: null
135
+ action_state_merger:
136
+ _target_: fastwam.datasets.lerobot.transforms.action_state_merger.ConcatLeftAlign
137
+ train_transforms:
138
+ - _target_: fastwam.datasets.lerobot.transforms.image.ToTensor
139
+ - _target_: torchvision.transforms.Resize
140
+ size:
141
+ - 224
142
+ - 224
143
+ val_transforms:
144
+ - _target_: fastwam.datasets.lerobot.transforms.image.ToTensor
145
+ - _target_: torchvision.transforms.Resize
146
+ size:
147
+ - 224
148
+ - 224
149
+ text_embedding_cache_dir: ./data/text_embeds_cache/libero
150
+ context_len: 128
151
+ model:
152
+ _target_: fastwam.runtime.create_fastwam
153
+ model_id: Wan-AI/Wan2.2-TI2V-5B
154
+ tokenizer_model_id: Wan-AI/Wan2.1-T2V-1.3B
155
+ tokenizer_max_len: 128
156
+ load_text_encoder: false
157
+ proprio_dim: 8
158
+ redirect_common_files: true
159
+ mot_checkpoint_mixed_attn: false
160
+ action_dit_pretrained_path: checkpoints/ActionDiT_linear_interp_Wan22_alphascale_1024hdim.pt
161
+ skip_dit_load_from_pretrain: false
162
+ video_dit_config:
163
+ has_image_input: false
164
+ patch_size:
165
+ - 1
166
+ - 2
167
+ - 2
168
+ in_dim: 48
169
+ hidden_dim: 3072
170
+ ffn_dim: 14336
171
+ freq_dim: 256
172
+ text_dim: 4096
173
+ out_dim: 48
174
+ num_heads: 24
175
+ attn_head_dim: 128
176
+ num_layers: 30
177
+ eps: 1.0e-06
178
+ seperated_timestep: true
179
+ require_clip_embedding: false
180
+ require_vae_embedding: false
181
+ fuse_vae_embedding_in_latents: true
182
+ use_gradient_checkpointing: false
183
+ video_attention_mask_mode: first_frame_causal
184
+ action_conditioned: false
185
+ action_dim: 7
186
+ action_group_causal_mask_mode: group_diagonal
187
+ action_dit_config:
188
+ action_dim: 7
189
+ hidden_dim: 1024
190
+ ffn_dim: 4096
191
+ num_heads: 24
192
+ attn_head_dim: 128
193
+ num_layers: 30
194
+ text_dim: 4096
195
+ freq_dim: 256
196
+ eps: 1.0e-06
197
+ use_gradient_checkpointing: false
198
+ video_scheduler:
199
+ train_shift: 5.0
200
+ infer_shift: 5.0
201
+ num_train_timesteps: 1000
202
+ action_scheduler:
203
+ train_shift: 5.0
204
+ infer_shift: 5.0
205
+ num_train_timesteps: 1000
206
+ loss:
207
+ lambda_video: 1.0
208
+ lambda_action: 1.0
209
+ pfd:
210
+ enabled: true
211
+ stage: s1
212
+ training_mode: action512_partial
213
+ adapter:
214
+ type: mlp
215
+ hidden_dim: 512
216
+ depth: 3
217
+ freq_dim: 256
218
+ partial_unfreeze:
219
+ action_last_layers: 12
220
+ video_last_layers: 12
221
+ lambda_gt: 1.0
222
+ lambda_res: 0.5
223
+ lambda_teacher: 0.1
dataset_stats.json ADDED
@@ -0,0 +1,1938 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "state": {
3
+ "default": {
4
+ "stepwise_min": [
5
+ [
6
+ -0.48278069496154785,
7
+ -0.3309336006641388,
8
+ 0.008128181099891663,
9
+ 1.002794623374939,
10
+ -3.6312508583068848,
11
+ -1.842738389968872,
12
+ -0.005453015677630901,
13
+ -0.042015016078948975
14
+ ]
15
+ ],
16
+ "stepwise_max": [
17
+ [
18
+ 0.2103137969970703,
19
+ 0.3904264271259308,
20
+ 1.472778081893921,
21
+ 3.7248642444610596,
22
+ 3.5618896484375,
23
+ 1.3863215446472168,
24
+ 0.04232141748070717,
25
+ 0.0013126095291227102
26
+ ]
27
+ ],
28
+ "global_min": [
29
+ -0.48278069496154785,
30
+ -0.3309336006641388,
31
+ 0.008128181099891663,
32
+ 1.002794623374939,
33
+ -3.6312508583068848,
34
+ -1.842738389968872,
35
+ -0.005453015677630901,
36
+ -0.042015016078948975
37
+ ],
38
+ "global_max": [
39
+ 0.2103137969970703,
40
+ 0.3904264271259308,
41
+ 1.472778081893921,
42
+ 3.7248642444610596,
43
+ 3.5618896484375,
44
+ 1.3863215446472168,
45
+ 0.04232141748070717,
46
+ 0.0013126095291227102
47
+ ],
48
+ "stepwise_q01": [
49
+ [
50
+ -0.48195967078208923,
51
+ -0.3300417959690094,
52
+ 0.008850866928696632,
53
+ 1.0129998922348022,
54
+ -3.619534969329834,
55
+ -1.8389623165130615,
56
+ -0.0013291656505316496,
57
+ -0.04173403978347778
58
+ ]
59
+ ],
60
+ "stepwise_q99": [
61
+ [
62
+ 0.20942535996437073,
63
+ 0.39041632413864136,
64
+ 1.4693706035614014,
65
+ 3.721859931945801,
66
+ 3.5605900287628174,
67
+ 1.3660067319869995,
68
+ 0.04197758436203003,
69
+ 0.0009995142463594675
70
+ ]
71
+ ],
72
+ "global_q01": [
73
+ -0.48195967078208923,
74
+ -0.3300417959690094,
75
+ 0.008850866928696632,
76
+ 1.0129998922348022,
77
+ -3.619534969329834,
78
+ -1.8389623165130615,
79
+ -0.0013291656505316496,
80
+ -0.04173403978347778
81
+ ],
82
+ "global_q99": [
83
+ 0.20942535996437073,
84
+ 0.39041632413864136,
85
+ 1.4693706035614014,
86
+ 3.721859931945801,
87
+ 3.5605900287628174,
88
+ 1.3660067319869995,
89
+ 0.04197758436203003,
90
+ 0.0009995142463594675
91
+ ],
92
+ "stepwise_mean": [
93
+ [
94
+ -0.05243948474526405,
95
+ 0.040308527648448944,
96
+ 0.7768229842185974,
97
+ 2.996931314468384,
98
+ -0.13651959598064423,
99
+ -0.11046146601438522,
100
+ 0.02632352150976658,
101
+ -0.026523752138018608
102
+ ]
103
+ ],
104
+ "stepwise_std": [
105
+ [
106
+ 0.10999669134616852,
107
+ 0.15002696216106415,
108
+ 0.38846009969711304,
109
+ 0.3232516348361969,
110
+ 0.7607998847961426,
111
+ 0.3058409094810486,
112
+ 0.014585155062377453,
113
+ 0.01446242444217205
114
+ ]
115
+ ],
116
+ "global_mean": [
117
+ -0.05243948474526405,
118
+ 0.040308527648448944,
119
+ 0.7768229842185974,
120
+ 2.996931314468384,
121
+ -0.13651959598064423,
122
+ -0.11046146601438522,
123
+ 0.02632352150976658,
124
+ -0.026523752138018608
125
+ ],
126
+ "global_std": [
127
+ 0.10999669134616852,
128
+ 0.15002696216106415,
129
+ 0.38846009969711304,
130
+ 0.3232516348361969,
131
+ 0.7607998847961426,
132
+ 0.3058409094810486,
133
+ 0.014585155062377453,
134
+ 0.01446242444217205
135
+ ]
136
+ }
137
+ },
138
+ "action": {
139
+ "default": {
140
+ "stepwise_min": [
141
+ [
142
+ -0.9375,
143
+ -0.9375,
144
+ -0.9375,
145
+ -0.24214285612106323,
146
+ -0.375,
147
+ -0.3642857074737549,
148
+ 0.0
149
+ ],
150
+ [
151
+ -0.9375,
152
+ -0.9375,
153
+ -0.9375,
154
+ -0.24214285612106323,
155
+ -0.375,
156
+ -0.3642857074737549,
157
+ 0.0
158
+ ],
159
+ [
160
+ -0.9375,
161
+ -0.9375,
162
+ -0.9375,
163
+ -0.24214285612106323,
164
+ -0.375,
165
+ -0.3642857074737549,
166
+ 0.0
167
+ ],
168
+ [
169
+ -0.9375,
170
+ -0.9375,
171
+ -0.9375,
172
+ -0.24214285612106323,
173
+ -0.375,
174
+ -0.3642857074737549,
175
+ 0.0
176
+ ],
177
+ [
178
+ -0.9375,
179
+ -0.9375,
180
+ -0.9375,
181
+ -0.24214285612106323,
182
+ -0.375,
183
+ -0.3642857074737549,
184
+ 0.0
185
+ ],
186
+ [
187
+ -0.9375,
188
+ -0.9375,
189
+ -0.9375,
190
+ -0.24214285612106323,
191
+ -0.375,
192
+ -0.3642857074737549,
193
+ 0.0
194
+ ],
195
+ [
196
+ -0.9375,
197
+ -0.9375,
198
+ -0.9375,
199
+ -0.24214285612106323,
200
+ -0.375,
201
+ -0.3642857074737549,
202
+ 0.0
203
+ ],
204
+ [
205
+ -0.9375,
206
+ -0.9375,
207
+ -0.9375,
208
+ -0.24214285612106323,
209
+ -0.375,
210
+ -0.3642857074737549,
211
+ 0.0
212
+ ],
213
+ [
214
+ -0.9375,
215
+ -0.9375,
216
+ -0.9375,
217
+ -0.24214285612106323,
218
+ -0.375,
219
+ -0.3642857074737549,
220
+ 0.0
221
+ ],
222
+ [
223
+ -0.9375,
224
+ -0.9375,
225
+ -0.9375,
226
+ -0.24214285612106323,
227
+ -0.375,
228
+ -0.3642857074737549,
229
+ 0.0
230
+ ],
231
+ [
232
+ -0.9375,
233
+ -0.9375,
234
+ -0.9375,
235
+ -0.24214285612106323,
236
+ -0.375,
237
+ -0.3642857074737549,
238
+ 0.0
239
+ ],
240
+ [
241
+ -0.9375,
242
+ -0.9375,
243
+ -0.9375,
244
+ -0.24214285612106323,
245
+ -0.375,
246
+ -0.3642857074737549,
247
+ 0.0
248
+ ],
249
+ [
250
+ -0.9375,
251
+ -0.9375,
252
+ -0.9375,
253
+ -0.24214285612106323,
254
+ -0.375,
255
+ -0.3642857074737549,
256
+ 0.0
257
+ ],
258
+ [
259
+ -0.9375,
260
+ -0.9375,
261
+ -0.9375,
262
+ -0.24214285612106323,
263
+ -0.375,
264
+ -0.3642857074737549,
265
+ 0.0
266
+ ],
267
+ [
268
+ -0.9375,
269
+ -0.9375,
270
+ -0.9375,
271
+ -0.24214285612106323,
272
+ -0.375,
273
+ -0.3642857074737549,
274
+ 0.0
275
+ ],
276
+ [
277
+ -0.9375,
278
+ -0.9375,
279
+ -0.9375,
280
+ -0.23678570985794067,
281
+ -0.375,
282
+ -0.3642857074737549,
283
+ 0.0
284
+ ],
285
+ [
286
+ -0.9375,
287
+ -0.9375,
288
+ -0.9375,
289
+ -0.23678570985794067,
290
+ -0.375,
291
+ -0.3642857074737549,
292
+ 0.0
293
+ ],
294
+ [
295
+ -0.9375,
296
+ -0.9375,
297
+ -0.9375,
298
+ -0.23642857372760773,
299
+ -0.375,
300
+ -0.3642857074737549,
301
+ 0.0
302
+ ],
303
+ [
304
+ -0.9375,
305
+ -0.9375,
306
+ -0.9375,
307
+ -0.23642857372760773,
308
+ -0.375,
309
+ -0.3642857074737549,
310
+ 0.0
311
+ ],
312
+ [
313
+ -0.9375,
314
+ -0.9375,
315
+ -0.9375,
316
+ -0.23642857372760773,
317
+ -0.375,
318
+ -0.3642857074737549,
319
+ 0.0
320
+ ],
321
+ [
322
+ -0.9375,
323
+ -0.9375,
324
+ -0.9375,
325
+ -0.23642857372760773,
326
+ -0.375,
327
+ -0.3642857074737549,
328
+ 0.0
329
+ ],
330
+ [
331
+ -0.9375,
332
+ -0.9375,
333
+ -0.9375,
334
+ -0.23642857372760773,
335
+ -0.375,
336
+ -0.3642857074737549,
337
+ 0.0
338
+ ],
339
+ [
340
+ -0.9375,
341
+ -0.9375,
342
+ -0.9375,
343
+ -0.23642857372760773,
344
+ -0.375,
345
+ -0.3642857074737549,
346
+ 0.0
347
+ ],
348
+ [
349
+ -0.9375,
350
+ -0.9375,
351
+ -0.9375,
352
+ -0.23642857372760773,
353
+ -0.375,
354
+ -0.3642857074737549,
355
+ 0.0
356
+ ],
357
+ [
358
+ -0.9375,
359
+ -0.9375,
360
+ -0.9375,
361
+ -0.23642857372760773,
362
+ -0.375,
363
+ -0.3642857074737549,
364
+ 0.0
365
+ ],
366
+ [
367
+ -0.9375,
368
+ -0.9375,
369
+ -0.9375,
370
+ -0.23642857372760773,
371
+ -0.375,
372
+ -0.3642857074737549,
373
+ 0.0
374
+ ],
375
+ [
376
+ -0.9375,
377
+ -0.9375,
378
+ -0.9375,
379
+ -0.23642857372760773,
380
+ -0.375,
381
+ -0.3642857074737549,
382
+ 0.0
383
+ ],
384
+ [
385
+ -0.9375,
386
+ -0.9375,
387
+ -0.9375,
388
+ -0.23642857372760773,
389
+ -0.375,
390
+ -0.3642857074737549,
391
+ 0.0
392
+ ],
393
+ [
394
+ -0.9375,
395
+ -0.9375,
396
+ -0.9375,
397
+ -0.23642857372760773,
398
+ -0.375,
399
+ -0.3642857074737549,
400
+ 0.0
401
+ ],
402
+ [
403
+ -0.9375,
404
+ -0.9375,
405
+ -0.9375,
406
+ -0.23642857372760773,
407
+ -0.375,
408
+ -0.3642857074737549,
409
+ 0.0
410
+ ],
411
+ [
412
+ -0.9375,
413
+ -0.9375,
414
+ -0.9375,
415
+ -0.23642857372760773,
416
+ -0.375,
417
+ -0.3642857074737549,
418
+ 0.0
419
+ ],
420
+ [
421
+ -0.9375,
422
+ -0.9375,
423
+ -0.9375,
424
+ -0.23642857372760773,
425
+ -0.375,
426
+ -0.3642857074737549,
427
+ 0.0
428
+ ]
429
+ ],
430
+ "stepwise_max": [
431
+ [
432
+ 0.9375,
433
+ 0.9375,
434
+ 0.9375,
435
+ 0.3557142913341522,
436
+ 0.375,
437
+ 0.375,
438
+ 1.0
439
+ ],
440
+ [
441
+ 0.9375,
442
+ 0.9375,
443
+ 0.9375,
444
+ 0.3557142913341522,
445
+ 0.375,
446
+ 0.375,
447
+ 1.0
448
+ ],
449
+ [
450
+ 0.9375,
451
+ 0.9375,
452
+ 0.9375,
453
+ 0.3557142913341522,
454
+ 0.375,
455
+ 0.375,
456
+ 1.0
457
+ ],
458
+ [
459
+ 0.9375,
460
+ 0.9375,
461
+ 0.9375,
462
+ 0.3557142913341522,
463
+ 0.375,
464
+ 0.375,
465
+ 1.0
466
+ ],
467
+ [
468
+ 0.9375,
469
+ 0.9375,
470
+ 0.9375,
471
+ 0.3557142913341522,
472
+ 0.375,
473
+ 0.375,
474
+ 1.0
475
+ ],
476
+ [
477
+ 0.9375,
478
+ 0.9375,
479
+ 0.9375,
480
+ 0.3557142913341522,
481
+ 0.375,
482
+ 0.375,
483
+ 1.0
484
+ ],
485
+ [
486
+ 0.9375,
487
+ 0.9375,
488
+ 0.9375,
489
+ 0.3557142913341522,
490
+ 0.375,
491
+ 0.375,
492
+ 1.0
493
+ ],
494
+ [
495
+ 0.9375,
496
+ 0.9375,
497
+ 0.9375,
498
+ 0.3557142913341522,
499
+ 0.375,
500
+ 0.375,
501
+ 1.0
502
+ ],
503
+ [
504
+ 0.9375,
505
+ 0.9375,
506
+ 0.9375,
507
+ 0.3557142913341522,
508
+ 0.375,
509
+ 0.375,
510
+ 1.0
511
+ ],
512
+ [
513
+ 0.9375,
514
+ 0.9375,
515
+ 0.9375,
516
+ 0.3557142913341522,
517
+ 0.375,
518
+ 0.375,
519
+ 1.0
520
+ ],
521
+ [
522
+ 0.9375,
523
+ 0.9375,
524
+ 0.9375,
525
+ 0.3557142913341522,
526
+ 0.375,
527
+ 0.375,
528
+ 1.0
529
+ ],
530
+ [
531
+ 0.9375,
532
+ 0.9375,
533
+ 0.9375,
534
+ 0.3557142913341522,
535
+ 0.375,
536
+ 0.375,
537
+ 1.0
538
+ ],
539
+ [
540
+ 0.9375,
541
+ 0.9375,
542
+ 0.9375,
543
+ 0.3557142913341522,
544
+ 0.375,
545
+ 0.375,
546
+ 1.0
547
+ ],
548
+ [
549
+ 0.9375,
550
+ 0.9375,
551
+ 0.9375,
552
+ 0.3557142913341522,
553
+ 0.375,
554
+ 0.375,
555
+ 1.0
556
+ ],
557
+ [
558
+ 0.9375,
559
+ 0.9375,
560
+ 0.9375,
561
+ 0.3557142913341522,
562
+ 0.375,
563
+ 0.375,
564
+ 1.0
565
+ ],
566
+ [
567
+ 0.9375,
568
+ 0.9375,
569
+ 0.9375,
570
+ 0.3557142913341522,
571
+ 0.375,
572
+ 0.375,
573
+ 1.0
574
+ ],
575
+ [
576
+ 0.9375,
577
+ 0.9375,
578
+ 0.9375,
579
+ 0.3557142913341522,
580
+ 0.375,
581
+ 0.375,
582
+ 1.0
583
+ ],
584
+ [
585
+ 0.9375,
586
+ 0.9375,
587
+ 0.9375,
588
+ 0.3557142913341522,
589
+ 0.375,
590
+ 0.375,
591
+ 1.0
592
+ ],
593
+ [
594
+ 0.9375,
595
+ 0.9375,
596
+ 0.9375,
597
+ 0.3557142913341522,
598
+ 0.375,
599
+ 0.375,
600
+ 1.0
601
+ ],
602
+ [
603
+ 0.9375,
604
+ 0.9375,
605
+ 0.9375,
606
+ 0.3557142913341522,
607
+ 0.375,
608
+ 0.375,
609
+ 1.0
610
+ ],
611
+ [
612
+ 0.9375,
613
+ 0.9375,
614
+ 0.9375,
615
+ 0.3557142913341522,
616
+ 0.375,
617
+ 0.375,
618
+ 1.0
619
+ ],
620
+ [
621
+ 0.9375,
622
+ 0.9375,
623
+ 0.9375,
624
+ 0.3557142913341522,
625
+ 0.375,
626
+ 0.375,
627
+ 1.0
628
+ ],
629
+ [
630
+ 0.9375,
631
+ 0.9375,
632
+ 0.9375,
633
+ 0.3557142913341522,
634
+ 0.375,
635
+ 0.375,
636
+ 1.0
637
+ ],
638
+ [
639
+ 0.9375,
640
+ 0.9375,
641
+ 0.9375,
642
+ 0.3557142913341522,
643
+ 0.375,
644
+ 0.375,
645
+ 1.0
646
+ ],
647
+ [
648
+ 0.9375,
649
+ 0.9375,
650
+ 0.9375,
651
+ 0.3557142913341522,
652
+ 0.375,
653
+ 0.375,
654
+ 1.0
655
+ ],
656
+ [
657
+ 0.9375,
658
+ 0.9375,
659
+ 0.9375,
660
+ 0.3557142913341522,
661
+ 0.375,
662
+ 0.375,
663
+ 1.0
664
+ ],
665
+ [
666
+ 0.9375,
667
+ 0.9375,
668
+ 0.9375,
669
+ 0.3557142913341522,
670
+ 0.375,
671
+ 0.375,
672
+ 1.0
673
+ ],
674
+ [
675
+ 0.9375,
676
+ 0.9375,
677
+ 0.9375,
678
+ 0.3557142913341522,
679
+ 0.375,
680
+ 0.375,
681
+ 1.0
682
+ ],
683
+ [
684
+ 0.9375,
685
+ 0.9375,
686
+ 0.9375,
687
+ 0.3557142913341522,
688
+ 0.375,
689
+ 0.375,
690
+ 1.0
691
+ ],
692
+ [
693
+ 0.9375,
694
+ 0.9375,
695
+ 0.9375,
696
+ 0.3557142913341522,
697
+ 0.375,
698
+ 0.375,
699
+ 1.0
700
+ ],
701
+ [
702
+ 0.9375,
703
+ 0.9375,
704
+ 0.9375,
705
+ 0.3557142913341522,
706
+ 0.375,
707
+ 0.375,
708
+ 1.0
709
+ ],
710
+ [
711
+ 0.9375,
712
+ 0.9375,
713
+ 0.9375,
714
+ 0.3557142913341522,
715
+ 0.375,
716
+ 0.375,
717
+ 1.0
718
+ ]
719
+ ],
720
+ "global_min": [
721
+ -0.9375,
722
+ -0.9375,
723
+ -0.9375,
724
+ -0.24214285612106323,
725
+ -0.375,
726
+ -0.3642857074737549,
727
+ 0.0
728
+ ],
729
+ "global_max": [
730
+ 0.9375,
731
+ 0.9375,
732
+ 0.9375,
733
+ 0.3557142913341522,
734
+ 0.375,
735
+ 0.375,
736
+ 1.0
737
+ ],
738
+ "stepwise_q01": [
739
+ [
740
+ -0.9375,
741
+ -0.9375,
742
+ -0.9375,
743
+ -0.2326499968767166,
744
+ -0.375,
745
+ -0.3642857074737549,
746
+ 0.0
747
+ ],
748
+ [
749
+ -0.9375,
750
+ -0.9375,
751
+ -0.9375,
752
+ -0.2326499968767166,
753
+ -0.375,
754
+ -0.3642857074737549,
755
+ 0.0
756
+ ],
757
+ [
758
+ -0.9375,
759
+ -0.9375,
760
+ -0.9375,
761
+ -0.2326499968767166,
762
+ -0.375,
763
+ -0.3642857074737549,
764
+ 0.0
765
+ ],
766
+ [
767
+ -0.9375,
768
+ -0.9375,
769
+ -0.9375,
770
+ -0.2326499968767166,
771
+ -0.375,
772
+ -0.3642857074737549,
773
+ 0.0
774
+ ],
775
+ [
776
+ -0.9375,
777
+ -0.9375,
778
+ -0.9375,
779
+ -0.2326499968767166,
780
+ -0.375,
781
+ -0.3642857074737549,
782
+ 0.0
783
+ ],
784
+ [
785
+ -0.9375,
786
+ -0.9375,
787
+ -0.9375,
788
+ -0.2326499968767166,
789
+ -0.375,
790
+ -0.3642857074737549,
791
+ 0.0
792
+ ],
793
+ [
794
+ -0.9375,
795
+ -0.9375,
796
+ -0.9375,
797
+ -0.2326499968767166,
798
+ -0.375,
799
+ -0.3642857074737549,
800
+ 0.0
801
+ ],
802
+ [
803
+ -0.9375,
804
+ -0.9375,
805
+ -0.9375,
806
+ -0.2326499968767166,
807
+ -0.375,
808
+ -0.3642857074737549,
809
+ 0.0
810
+ ],
811
+ [
812
+ -0.9375,
813
+ -0.9375,
814
+ -0.9375,
815
+ -0.2326499968767166,
816
+ -0.375,
817
+ -0.3642857074737549,
818
+ 0.0
819
+ ],
820
+ [
821
+ -0.9375,
822
+ -0.9375,
823
+ -0.9375,
824
+ -0.2326499968767166,
825
+ -0.375,
826
+ -0.3642857074737549,
827
+ 0.0
828
+ ],
829
+ [
830
+ -0.9375,
831
+ -0.9375,
832
+ -0.9375,
833
+ -0.2326499968767166,
834
+ -0.375,
835
+ -0.3642857074737549,
836
+ 0.0
837
+ ],
838
+ [
839
+ -0.9375,
840
+ -0.9375,
841
+ -0.9375,
842
+ -0.2326499968767166,
843
+ -0.375,
844
+ -0.3642857074737549,
845
+ 0.0
846
+ ],
847
+ [
848
+ -0.9375,
849
+ -0.9375,
850
+ -0.9375,
851
+ -0.2326499968767166,
852
+ -0.375,
853
+ -0.3642857074737549,
854
+ 0.0
855
+ ],
856
+ [
857
+ -0.9375,
858
+ -0.9375,
859
+ -0.9375,
860
+ -0.2326499968767166,
861
+ -0.375,
862
+ -0.3642857074737549,
863
+ 0.0
864
+ ],
865
+ [
866
+ -0.9375,
867
+ -0.9375,
868
+ -0.9375,
869
+ -0.2326499968767166,
870
+ -0.375,
871
+ -0.3642857074737549,
872
+ 0.0
873
+ ],
874
+ [
875
+ -0.9375,
876
+ -0.9375,
877
+ -0.9375,
878
+ -0.2326499968767166,
879
+ -0.375,
880
+ -0.3642857074737549,
881
+ 0.0
882
+ ],
883
+ [
884
+ -0.9375,
885
+ -0.9375,
886
+ -0.9375,
887
+ -0.2326499968767166,
888
+ -0.375,
889
+ -0.3642857074737549,
890
+ 0.0
891
+ ],
892
+ [
893
+ -0.9375,
894
+ -0.9375,
895
+ -0.9375,
896
+ -0.2326499968767166,
897
+ -0.375,
898
+ -0.3642857074737549,
899
+ 0.0
900
+ ],
901
+ [
902
+ -0.9375,
903
+ -0.9375,
904
+ -0.9375,
905
+ -0.2326499968767166,
906
+ -0.375,
907
+ -0.3642857074737549,
908
+ 0.0
909
+ ],
910
+ [
911
+ -0.9375,
912
+ -0.9375,
913
+ -0.9375,
914
+ -0.2326499968767166,
915
+ -0.375,
916
+ -0.3642857074737549,
917
+ 0.0
918
+ ],
919
+ [
920
+ -0.9375,
921
+ -0.9375,
922
+ -0.9375,
923
+ -0.2326499968767166,
924
+ -0.375,
925
+ -0.3642857074737549,
926
+ 0.0
927
+ ],
928
+ [
929
+ -0.9375,
930
+ -0.9375,
931
+ -0.9375,
932
+ -0.2326499968767166,
933
+ -0.375,
934
+ -0.3642857074737549,
935
+ 0.0
936
+ ],
937
+ [
938
+ -0.9375,
939
+ -0.9375,
940
+ -0.9375,
941
+ -0.2326499968767166,
942
+ -0.375,
943
+ -0.3642857074737549,
944
+ 0.0
945
+ ],
946
+ [
947
+ -0.9375,
948
+ -0.9375,
949
+ -0.9375,
950
+ -0.2326499968767166,
951
+ -0.375,
952
+ -0.3642857074737549,
953
+ 0.0
954
+ ],
955
+ [
956
+ -0.9375,
957
+ -0.9375,
958
+ -0.9375,
959
+ -0.2326499968767166,
960
+ -0.375,
961
+ -0.3642857074737549,
962
+ 0.0
963
+ ],
964
+ [
965
+ -0.9375,
966
+ -0.9375,
967
+ -0.9375,
968
+ -0.2326499968767166,
969
+ -0.375,
970
+ -0.3642857074737549,
971
+ 0.0
972
+ ],
973
+ [
974
+ -0.9375,
975
+ -0.9375,
976
+ -0.9375,
977
+ -0.2326499968767166,
978
+ -0.375,
979
+ -0.3642857074737549,
980
+ 0.0
981
+ ],
982
+ [
983
+ -0.9375,
984
+ -0.9375,
985
+ -0.9375,
986
+ -0.2326499968767166,
987
+ -0.375,
988
+ -0.3642857074737549,
989
+ 0.0
990
+ ],
991
+ [
992
+ -0.9375,
993
+ -0.9375,
994
+ -0.9375,
995
+ -0.2326499968767166,
996
+ -0.375,
997
+ -0.3642857074737549,
998
+ 0.0
999
+ ],
1000
+ [
1001
+ -0.9375,
1002
+ -0.9375,
1003
+ -0.9375,
1004
+ -0.2326499968767166,
1005
+ -0.375,
1006
+ -0.3642857074737549,
1007
+ 0.0
1008
+ ],
1009
+ [
1010
+ -0.9375,
1011
+ -0.9375,
1012
+ -0.9375,
1013
+ -0.2326499968767166,
1014
+ -0.375,
1015
+ -0.3642857074737549,
1016
+ 0.0
1017
+ ],
1018
+ [
1019
+ -0.9375,
1020
+ -0.9375,
1021
+ -0.9375,
1022
+ -0.2326499968767166,
1023
+ -0.375,
1024
+ -0.3642857074737549,
1025
+ 0.0
1026
+ ]
1027
+ ],
1028
+ "stepwise_q99": [
1029
+ [
1030
+ 0.9375,
1031
+ 0.9375,
1032
+ 0.9375,
1033
+ 0.35076430439949036,
1034
+ 0.375,
1035
+ 0.375,
1036
+ 1.0
1037
+ ],
1038
+ [
1039
+ 0.9375,
1040
+ 0.9375,
1041
+ 0.9375,
1042
+ 0.35076430439949036,
1043
+ 0.375,
1044
+ 0.375,
1045
+ 1.0
1046
+ ],
1047
+ [
1048
+ 0.9375,
1049
+ 0.9375,
1050
+ 0.9375,
1051
+ 0.35076430439949036,
1052
+ 0.375,
1053
+ 0.375,
1054
+ 1.0
1055
+ ],
1056
+ [
1057
+ 0.9375,
1058
+ 0.9375,
1059
+ 0.9375,
1060
+ 0.35076430439949036,
1061
+ 0.375,
1062
+ 0.375,
1063
+ 1.0
1064
+ ],
1065
+ [
1066
+ 0.9375,
1067
+ 0.9375,
1068
+ 0.9375,
1069
+ 0.35076430439949036,
1070
+ 0.375,
1071
+ 0.375,
1072
+ 1.0
1073
+ ],
1074
+ [
1075
+ 0.9375,
1076
+ 0.9375,
1077
+ 0.9375,
1078
+ 0.35076430439949036,
1079
+ 0.375,
1080
+ 0.375,
1081
+ 1.0
1082
+ ],
1083
+ [
1084
+ 0.9375,
1085
+ 0.9375,
1086
+ 0.9375,
1087
+ 0.35076430439949036,
1088
+ 0.375,
1089
+ 0.375,
1090
+ 1.0
1091
+ ],
1092
+ [
1093
+ 0.9375,
1094
+ 0.9375,
1095
+ 0.9375,
1096
+ 0.35076430439949036,
1097
+ 0.375,
1098
+ 0.375,
1099
+ 1.0
1100
+ ],
1101
+ [
1102
+ 0.9375,
1103
+ 0.9375,
1104
+ 0.9375,
1105
+ 0.35076430439949036,
1106
+ 0.375,
1107
+ 0.375,
1108
+ 1.0
1109
+ ],
1110
+ [
1111
+ 0.9375,
1112
+ 0.9375,
1113
+ 0.9375,
1114
+ 0.35076430439949036,
1115
+ 0.375,
1116
+ 0.375,
1117
+ 1.0
1118
+ ],
1119
+ [
1120
+ 0.9375,
1121
+ 0.9375,
1122
+ 0.9375,
1123
+ 0.35076430439949036,
1124
+ 0.375,
1125
+ 0.375,
1126
+ 1.0
1127
+ ],
1128
+ [
1129
+ 0.9375,
1130
+ 0.9375,
1131
+ 0.9375,
1132
+ 0.35076430439949036,
1133
+ 0.375,
1134
+ 0.375,
1135
+ 1.0
1136
+ ],
1137
+ [
1138
+ 0.9375,
1139
+ 0.9375,
1140
+ 0.9375,
1141
+ 0.35076430439949036,
1142
+ 0.375,
1143
+ 0.375,
1144
+ 1.0
1145
+ ],
1146
+ [
1147
+ 0.9375,
1148
+ 0.9375,
1149
+ 0.9375,
1150
+ 0.35076430439949036,
1151
+ 0.375,
1152
+ 0.375,
1153
+ 1.0
1154
+ ],
1155
+ [
1156
+ 0.9375,
1157
+ 0.9375,
1158
+ 0.9375,
1159
+ 0.35076430439949036,
1160
+ 0.375,
1161
+ 0.375,
1162
+ 1.0
1163
+ ],
1164
+ [
1165
+ 0.9375,
1166
+ 0.9375,
1167
+ 0.9375,
1168
+ 0.35076430439949036,
1169
+ 0.375,
1170
+ 0.375,
1171
+ 1.0
1172
+ ],
1173
+ [
1174
+ 0.9375,
1175
+ 0.9375,
1176
+ 0.9375,
1177
+ 0.35076430439949036,
1178
+ 0.375,
1179
+ 0.375,
1180
+ 1.0
1181
+ ],
1182
+ [
1183
+ 0.9375,
1184
+ 0.9375,
1185
+ 0.9375,
1186
+ 0.35076430439949036,
1187
+ 0.375,
1188
+ 0.375,
1189
+ 1.0
1190
+ ],
1191
+ [
1192
+ 0.9375,
1193
+ 0.9375,
1194
+ 0.9375,
1195
+ 0.35076430439949036,
1196
+ 0.375,
1197
+ 0.375,
1198
+ 1.0
1199
+ ],
1200
+ [
1201
+ 0.9375,
1202
+ 0.9375,
1203
+ 0.9375,
1204
+ 0.35076430439949036,
1205
+ 0.375,
1206
+ 0.375,
1207
+ 1.0
1208
+ ],
1209
+ [
1210
+ 0.9375,
1211
+ 0.9375,
1212
+ 0.9375,
1213
+ 0.35076430439949036,
1214
+ 0.375,
1215
+ 0.375,
1216
+ 1.0
1217
+ ],
1218
+ [
1219
+ 0.9375,
1220
+ 0.9375,
1221
+ 0.9375,
1222
+ 0.35076430439949036,
1223
+ 0.375,
1224
+ 0.375,
1225
+ 1.0
1226
+ ],
1227
+ [
1228
+ 0.9375,
1229
+ 0.9375,
1230
+ 0.9375,
1231
+ 0.35076430439949036,
1232
+ 0.375,
1233
+ 0.375,
1234
+ 1.0
1235
+ ],
1236
+ [
1237
+ 0.9375,
1238
+ 0.9375,
1239
+ 0.9375,
1240
+ 0.35076430439949036,
1241
+ 0.375,
1242
+ 0.375,
1243
+ 1.0
1244
+ ],
1245
+ [
1246
+ 0.9375,
1247
+ 0.9375,
1248
+ 0.9375,
1249
+ 0.35076430439949036,
1250
+ 0.375,
1251
+ 0.375,
1252
+ 1.0
1253
+ ],
1254
+ [
1255
+ 0.9375,
1256
+ 0.9375,
1257
+ 0.9375,
1258
+ 0.35076430439949036,
1259
+ 0.375,
1260
+ 0.375,
1261
+ 1.0
1262
+ ],
1263
+ [
1264
+ 0.9375,
1265
+ 0.9375,
1266
+ 0.9375,
1267
+ 0.35076430439949036,
1268
+ 0.375,
1269
+ 0.375,
1270
+ 1.0
1271
+ ],
1272
+ [
1273
+ 0.9375,
1274
+ 0.9375,
1275
+ 0.9375,
1276
+ 0.35076430439949036,
1277
+ 0.375,
1278
+ 0.375,
1279
+ 1.0
1280
+ ],
1281
+ [
1282
+ 0.9375,
1283
+ 0.9375,
1284
+ 0.9375,
1285
+ 0.35076430439949036,
1286
+ 0.375,
1287
+ 0.375,
1288
+ 1.0
1289
+ ],
1290
+ [
1291
+ 0.9375,
1292
+ 0.9375,
1293
+ 0.9375,
1294
+ 0.35076430439949036,
1295
+ 0.375,
1296
+ 0.375,
1297
+ 1.0
1298
+ ],
1299
+ [
1300
+ 0.9375,
1301
+ 0.9375,
1302
+ 0.9375,
1303
+ 0.35076430439949036,
1304
+ 0.375,
1305
+ 0.375,
1306
+ 1.0
1307
+ ],
1308
+ [
1309
+ 0.9375,
1310
+ 0.9375,
1311
+ 0.9375,
1312
+ 0.35076430439949036,
1313
+ 0.375,
1314
+ 0.375,
1315
+ 1.0
1316
+ ]
1317
+ ],
1318
+ "global_q01": [
1319
+ -0.9375,
1320
+ -0.9375,
1321
+ -0.9375,
1322
+ -0.2326499968767166,
1323
+ -0.375,
1324
+ -0.3642857074737549,
1325
+ 0.0
1326
+ ],
1327
+ "global_q99": [
1328
+ 0.9375,
1329
+ 0.9375,
1330
+ 0.9375,
1331
+ 0.35076430439949036,
1332
+ 0.375,
1333
+ 0.375,
1334
+ 1.0
1335
+ ],
1336
+ "stepwise_mean": [
1337
+ [
1338
+ 0.07509178668260574,
1339
+ 0.0942603349685669,
1340
+ -0.10477570444345474,
1341
+ -0.00067217304604128,
1342
+ 0.006502428557723761,
1343
+ -0.004753416869789362,
1344
+ 0.5156608819961548
1345
+ ],
1346
+ [
1347
+ 0.0742194727063179,
1348
+ 0.0943378359079361,
1349
+ -0.1036904826760292,
1350
+ -0.0006463322788476944,
1351
+ 0.006517793983221054,
1352
+ -0.004832605365663767,
1353
+ 0.5151447057723999
1354
+ ],
1355
+ [
1356
+ 0.07300770282745361,
1357
+ 0.09434358775615692,
1358
+ -0.10265536606311798,
1359
+ -0.0006129898829385638,
1360
+ 0.006519763730466366,
1361
+ -0.004911691416054964,
1362
+ 0.5146285891532898
1363
+ ],
1364
+ [
1365
+ 0.07130850851535797,
1366
+ 0.09427326172590256,
1367
+ -0.10167480260133743,
1368
+ -0.0005704730865545571,
1369
+ 0.0065028914250433445,
1370
+ -0.004996591247618198,
1371
+ 0.5141124129295349
1372
+ ],
1373
+ [
1374
+ 0.06903649866580963,
1375
+ 0.09413644671440125,
1376
+ -0.10072867572307587,
1377
+ -0.0005176865961402655,
1378
+ 0.006469315383583307,
1379
+ -0.00508821802213788,
1380
+ 0.51359623670578
1381
+ ],
1382
+ [
1383
+ 0.06624068319797516,
1384
+ 0.09398344159126282,
1385
+ -0.09977640211582184,
1386
+ -0.00045814074110239744,
1387
+ 0.006425762083381414,
1388
+ -0.00518264202401042,
1389
+ 0.5130800008773804
1390
+ ],
1391
+ [
1392
+ 0.0630466639995575,
1393
+ 0.09385843575000763,
1394
+ -0.09878652542829514,
1395
+ -0.00039334845496341586,
1396
+ 0.006386647000908852,
1397
+ -0.0052768453024327755,
1398
+ 0.5125638246536255
1399
+ ],
1400
+ [
1401
+ 0.059566859155893326,
1402
+ 0.09379696846008301,
1403
+ -0.09773145616054535,
1404
+ -0.00032902255770750344,
1405
+ 0.006361101288348436,
1406
+ -0.005367835983633995,
1407
+ 0.5120476484298706
1408
+ ],
1409
+ [
1410
+ 0.055894214659929276,
1411
+ 0.09381034225225449,
1412
+ -0.09658002108335495,
1413
+ -0.00026784607325680554,
1414
+ 0.006349041126668453,
1415
+ -0.00545760290697217,
1416
+ 0.5115314722061157
1417
+ ],
1418
+ [
1419
+ 0.05210842192173004,
1420
+ 0.09390032291412354,
1421
+ -0.09531887620687485,
1422
+ -0.00021082813327666372,
1423
+ 0.006355168763548136,
1424
+ -0.005544654093682766,
1425
+ 0.5110152959823608
1426
+ ],
1427
+ [
1428
+ 0.048258569091558456,
1429
+ 0.0940636619925499,
1430
+ -0.09393264353275299,
1431
+ -0.00015976659778971225,
1432
+ 0.006377694196999073,
1433
+ -0.005628861952573061,
1434
+ 0.510499119758606
1435
+ ],
1436
+ [
1437
+ 0.04438157379627228,
1438
+ 0.09429564327001572,
1439
+ -0.0924036055803299,
1440
+ -0.00011604902829276398,
1441
+ 0.006416680291295052,
1442
+ -0.005709674209356308,
1443
+ 0.5099829435348511
1444
+ ],
1445
+ [
1446
+ 0.040517039597034454,
1447
+ 0.09459188580513,
1448
+ -0.09071967005729675,
1449
+ -8.002240065252408e-05,
1450
+ 0.006473012734204531,
1451
+ -0.0057876212522387505,
1452
+ 0.509466826915741
1453
+ ],
1454
+ [
1455
+ 0.0366998165845871,
1456
+ 0.09495285153388977,
1457
+ -0.08885674178600311,
1458
+ -5.331771171768196e-05,
1459
+ 0.006546002812683582,
1460
+ -0.005861989688128233,
1461
+ 0.5089506506919861
1462
+ ],
1463
+ [
1464
+ 0.0329657681286335,
1465
+ 0.09536923468112946,
1466
+ -0.08679967373609543,
1467
+ -3.667259443318471e-05,
1468
+ 0.006634271237999201,
1469
+ -0.005933341570198536,
1470
+ 0.5084344148635864
1471
+ ],
1472
+ [
1473
+ 0.029352379962801933,
1474
+ 0.09583891928195953,
1475
+ -0.08452725410461426,
1476
+ -2.9561884730355814e-05,
1477
+ 0.006736791227012873,
1478
+ -0.006001696456223726,
1479
+ 0.5079182386398315
1480
+ ],
1481
+ [
1482
+ 0.025887737050652504,
1483
+ 0.09636739641427994,
1484
+ -0.08202388137578964,
1485
+ -3.128963726339862e-05,
1486
+ 0.006850850768387318,
1487
+ -0.006065671797841787,
1488
+ 0.5074020624160767
1489
+ ],
1490
+ [
1491
+ 0.02261572703719139,
1492
+ 0.09694879502058029,
1493
+ -0.0792740136384964,
1494
+ -4.325090048951097e-05,
1495
+ 0.006975278723984957,
1496
+ -0.006124515552073717,
1497
+ 0.506885826587677
1498
+ ],
1499
+ [
1500
+ 0.019565243273973465,
1501
+ 0.09757165610790253,
1502
+ -0.07627597451210022,
1503
+ -6.516650319099426e-05,
1504
+ 0.00711056450381875,
1505
+ -0.006178237497806549,
1506
+ 0.5063697099685669
1507
+ ],
1508
+ [
1509
+ 0.01676732860505581,
1510
+ 0.09823115170001984,
1511
+ -0.07303815335035324,
1512
+ -9.670946019468829e-05,
1513
+ 0.007253478746861219,
1514
+ -0.006225932389497757,
1515
+ 0.5058535933494568
1516
+ ],
1517
+ [
1518
+ 0.014247494749724865,
1519
+ 0.098907470703125,
1520
+ -0.06955989450216293,
1521
+ -0.00013448880054056644,
1522
+ 0.007407328579574823,
1523
+ -0.006267812568694353,
1524
+ 0.5053373575210571
1525
+ ],
1526
+ [
1527
+ 0.012000464834272861,
1528
+ 0.09958206862211227,
1529
+ -0.06584414094686508,
1530
+ -0.0001761188468663022,
1531
+ 0.007572730537503958,
1532
+ -0.00630863755941391,
1533
+ 0.5048211812973022
1534
+ ],
1535
+ [
1536
+ 0.010039033368229866,
1537
+ 0.10022272169589996,
1538
+ -0.06189519166946411,
1539
+ -0.00021858196123503149,
1540
+ 0.007748274598270655,
1541
+ -0.006350838113576174,
1542
+ 0.5043050050735474
1543
+ ],
1544
+ [
1545
+ 0.008363992907106876,
1546
+ 0.10080268979072571,
1547
+ -0.05770834535360336,
1548
+ -0.00026283395709469914,
1549
+ 0.007933961227536201,
1550
+ -0.006396607030183077,
1551
+ 0.5037888288497925
1552
+ ],
1553
+ [
1554
+ 0.006966026034206152,
1555
+ 0.10131064057350159,
1556
+ -0.05330001935362816,
1557
+ -0.00030645678634755313,
1558
+ 0.008130470290780067,
1559
+ -0.006444835104048252,
1560
+ 0.5032726526260376
1561
+ ],
1562
+ [
1563
+ 0.00583912618458271,
1564
+ 0.10174597054719925,
1565
+ -0.0486803762614727,
1566
+ -0.0003477988357190043,
1567
+ 0.008339793421328068,
1568
+ -0.0064962487667799,
1569
+ 0.5027629733085632
1570
+ ],
1571
+ [
1572
+ 0.004966165404766798,
1573
+ 0.10210862010717392,
1574
+ -0.043860699981451035,
1575
+ -0.000387750071240589,
1576
+ 0.008558141067624092,
1577
+ -0.006552790757268667,
1578
+ 0.5022681951522827
1579
+ ],
1580
+ [
1581
+ 0.004340581130236387,
1582
+ 0.10240699350833893,
1583
+ -0.03886045888066292,
1584
+ -0.0004262789152562618,
1585
+ 0.008782957680523396,
1586
+ -0.006615782622247934,
1587
+ 0.5017905831336975
1588
+ ],
1589
+ [
1590
+ 0.0039475769735872746,
1591
+ 0.1026383712887764,
1592
+ -0.03369864076375961,
1593
+ -0.00046152572031132877,
1594
+ 0.009012688882648945,
1595
+ -0.0066861677914857864,
1596
+ 0.5013490319252014
1597
+ ],
1598
+ [
1599
+ 0.003766642650589347,
1600
+ 0.10281307995319366,
1601
+ -0.028394747525453568,
1602
+ -0.0004937638877891004,
1603
+ 0.009245368652045727,
1604
+ -0.0067654019221663475,
1605
+ 0.5009921193122864
1606
+ ],
1607
+ [
1608
+ 0.0038002715446054935,
1609
+ 0.10295262932777405,
1610
+ -0.02297969162464142,
1611
+ -0.000524875067640096,
1612
+ 0.00948034506291151,
1613
+ -0.006851763930171728,
1614
+ 0.5007508993148804
1615
+ ],
1616
+ [
1617
+ 0.004019181244075298,
1618
+ 0.10305864363908768,
1619
+ -0.017491087317466736,
1620
+ -0.0005532435025088489,
1621
+ 0.009714934974908829,
1622
+ -0.006944477092474699,
1623
+ 0.5005795955657959
1624
+ ]
1625
+ ],
1626
+ "stepwise_std": [
1627
+ [
1628
+ 0.35524478554725647,
1629
+ 0.37755152583122253,
1630
+ 0.4687630534172058,
1631
+ 0.03886449709534645,
1632
+ 0.06502853333950043,
1633
+ 0.07652278244495392,
1634
+ 0.5014081597328186
1635
+ ],
1636
+ [
1637
+ 0.35528722405433655,
1638
+ 0.37743693590164185,
1639
+ 0.46985360980033875,
1640
+ 0.03892502561211586,
1641
+ 0.06516389548778534,
1642
+ 0.07675494998693466,
1643
+ 0.501423716545105
1644
+ ],
1645
+ [
1646
+ 0.35516324639320374,
1647
+ 0.3772093653678894,
1648
+ 0.4709104001522064,
1649
+ 0.0389784574508667,
1650
+ 0.06527172774076462,
1651
+ 0.07698068022727966,
1652
+ 0.5014386177062988
1653
+ ],
1654
+ [
1655
+ 0.35470232367515564,
1656
+ 0.37677210569381714,
1657
+ 0.4719267785549164,
1658
+ 0.039021965116262436,
1659
+ 0.0653405487537384,
1660
+ 0.07719580829143524,
1661
+ 0.5014529824256897
1662
+ ],
1663
+ [
1664
+ 0.35369622707366943,
1665
+ 0.376038521528244,
1666
+ 0.47290921211242676,
1667
+ 0.039052922278642654,
1668
+ 0.06536615639925003,
1669
+ 0.07739786058664322,
1670
+ 0.5014666318893433
1671
+ ],
1672
+ [
1673
+ 0.35204043984413147,
1674
+ 0.37497878074645996,
1675
+ 0.47387173771858215,
1676
+ 0.039072245359420776,
1677
+ 0.06535857915878296,
1678
+ 0.07758834958076477,
1679
+ 0.5014797449111938
1680
+ ],
1681
+ [
1682
+ 0.34978508949279785,
1683
+ 0.3736053705215454,
1684
+ 0.4748258590698242,
1685
+ 0.039080552756786346,
1686
+ 0.06534324586391449,
1687
+ 0.07776463776826859,
1688
+ 0.5014922022819519
1689
+ ],
1690
+ [
1691
+ 0.34703686833381653,
1692
+ 0.3719497323036194,
1693
+ 0.47577229142189026,
1694
+ 0.03907886520028114,
1695
+ 0.06533455848693848,
1696
+ 0.07792745530605316,
1697
+ 0.5015040636062622
1698
+ ],
1699
+ [
1700
+ 0.34389936923980713,
1701
+ 0.37007132172584534,
1702
+ 0.4767095148563385,
1703
+ 0.039068553596735,
1704
+ 0.0653340294957161,
1705
+ 0.07807470113039017,
1706
+ 0.5015152096748352
1707
+ ],
1708
+ [
1709
+ 0.3404742479324341,
1710
+ 0.36800599098205566,
1711
+ 0.47762835025787354,
1712
+ 0.039051979780197144,
1713
+ 0.06534522771835327,
1714
+ 0.0782046988606453,
1715
+ 0.5015258193016052
1716
+ ],
1717
+ [
1718
+ 0.33682477474212646,
1719
+ 0.3657948970794678,
1720
+ 0.47852176427841187,
1721
+ 0.03903175890445709,
1722
+ 0.06536738574504852,
1723
+ 0.07831671088933945,
1724
+ 0.5015357732772827
1725
+ ],
1726
+ [
1727
+ 0.33300837874412537,
1728
+ 0.36347952485084534,
1729
+ 0.4793775975704193,
1730
+ 0.0390087328851223,
1731
+ 0.06540162116289139,
1732
+ 0.07841045409440994,
1733
+ 0.5015451312065125
1734
+ ],
1735
+ [
1736
+ 0.3290861248970032,
1737
+ 0.3610839545726776,
1738
+ 0.48018524050712585,
1739
+ 0.03898213431239128,
1740
+ 0.06545032560825348,
1741
+ 0.07848568260669708,
1742
+ 0.5015538334846497
1743
+ ],
1744
+ [
1745
+ 0.3251110315322876,
1746
+ 0.358641654253006,
1747
+ 0.48092642426490784,
1748
+ 0.038955286145210266,
1749
+ 0.06551124900579453,
1750
+ 0.07854204624891281,
1751
+ 0.5015619993209839
1752
+ ],
1753
+ [
1754
+ 0.3211345374584198,
1755
+ 0.35618487000465393,
1756
+ 0.48157891631126404,
1757
+ 0.0389283113181591,
1758
+ 0.06558437645435333,
1759
+ 0.07858171314001083,
1760
+ 0.5015695095062256
1761
+ ],
1762
+ [
1763
+ 0.31721803545951843,
1764
+ 0.3537396490573883,
1765
+ 0.482117623090744,
1766
+ 0.038900382816791534,
1767
+ 0.06566666066646576,
1768
+ 0.07860506325960159,
1769
+ 0.5015763640403748
1770
+ ],
1771
+ [
1772
+ 0.3133997619152069,
1773
+ 0.351331502199173,
1774
+ 0.4825165867805481,
1775
+ 0.03887200728058815,
1776
+ 0.06575415283441544,
1777
+ 0.0786113291978836,
1778
+ 0.5015825629234314
1779
+ ],
1780
+ [
1781
+ 0.30974072217941284,
1782
+ 0.34899604320526123,
1783
+ 0.4827553331851959,
1784
+ 0.03884140029549599,
1785
+ 0.06584665179252625,
1786
+ 0.07859846949577332,
1787
+ 0.5015882849693298
1788
+ ],
1789
+ [
1790
+ 0.3062610924243927,
1791
+ 0.3467525243759155,
1792
+ 0.4828227758407593,
1793
+ 0.03880825266242027,
1794
+ 0.06594104319810867,
1795
+ 0.07856539636850357,
1796
+ 0.5015932321548462
1797
+ ],
1798
+ [
1799
+ 0.3029799163341522,
1800
+ 0.3446204960346222,
1801
+ 0.48272934556007385,
1802
+ 0.03877263888716698,
1803
+ 0.06603774428367615,
1804
+ 0.07851279526948929,
1805
+ 0.5015976428985596
1806
+ ],
1807
+ [
1808
+ 0.299914687871933,
1809
+ 0.3426280915737152,
1810
+ 0.4824674129486084,
1811
+ 0.038736529648303986,
1812
+ 0.06613374501466751,
1813
+ 0.07844088226556778,
1814
+ 0.5016013979911804
1815
+ ],
1816
+ [
1817
+ 0.2970617115497589,
1818
+ 0.34079501032829285,
1819
+ 0.48202958703041077,
1820
+ 0.038699567317962646,
1821
+ 0.06622225046157837,
1822
+ 0.07835263013839722,
1823
+ 0.5016045570373535
1824
+ ],
1825
+ [
1826
+ 0.29441922903060913,
1827
+ 0.3391386568546295,
1828
+ 0.48140865564346313,
1829
+ 0.03866279497742653,
1830
+ 0.06630103290081024,
1831
+ 0.07824834436178207,
1832
+ 0.5016071200370789
1833
+ ],
1834
+ [
1835
+ 0.29195436835289,
1836
+ 0.33766019344329834,
1837
+ 0.48059242963790894,
1838
+ 0.03862548992037773,
1839
+ 0.0663711428642273,
1840
+ 0.07812964916229248,
1841
+ 0.5016090273857117
1842
+ ],
1843
+ [
1844
+ 0.289645254611969,
1845
+ 0.33635908365249634,
1846
+ 0.47958284616470337,
1847
+ 0.03858788684010506,
1848
+ 0.06643129885196686,
1849
+ 0.07799877971410751,
1850
+ 0.501610279083252
1851
+ ],
1852
+ [
1853
+ 0.28750044107437134,
1854
+ 0.3352276086807251,
1855
+ 0.4783773422241211,
1856
+ 0.03855103254318237,
1857
+ 0.06647710502147675,
1858
+ 0.07785706222057343,
1859
+ 0.5016109347343445
1860
+ ],
1861
+ [
1862
+ 0.2854923903942108,
1863
+ 0.3342517912387848,
1864
+ 0.47697481513023376,
1865
+ 0.03851429000496864,
1866
+ 0.06651262193918228,
1867
+ 0.07770556211471558,
1868
+ 0.5016109347343445
1869
+ ],
1870
+ [
1871
+ 0.28362545371055603,
1872
+ 0.33341220021247864,
1873
+ 0.47538840770721436,
1874
+ 0.0384775772690773,
1875
+ 0.06653650104999542,
1876
+ 0.07754550129175186,
1877
+ 0.5016103982925415
1878
+ ],
1879
+ [
1880
+ 0.2818942070007324,
1881
+ 0.33271053433418274,
1882
+ 0.4736235439777374,
1883
+ 0.038440391421318054,
1884
+ 0.06654897332191467,
1885
+ 0.07737959921360016,
1886
+ 0.5016092658042908
1887
+ ],
1888
+ [
1889
+ 0.28030455112457275,
1890
+ 0.33213362097740173,
1891
+ 0.4716811776161194,
1892
+ 0.038400888442993164,
1893
+ 0.0665503740310669,
1894
+ 0.07720880955457687,
1895
+ 0.5016077160835266
1896
+ ],
1897
+ [
1898
+ 0.2788531184196472,
1899
+ 0.33166050910949707,
1900
+ 0.4695776402950287,
1901
+ 0.038356442004442215,
1902
+ 0.06654069572687149,
1903
+ 0.07703638821840286,
1904
+ 0.5016058087348938
1905
+ ],
1906
+ [
1907
+ 0.27754729986190796,
1908
+ 0.33128809928894043,
1909
+ 0.4673400819301605,
1910
+ 0.038307879120111465,
1911
+ 0.06652015447616577,
1912
+ 0.07686351984739304,
1913
+ 0.5016037225723267
1914
+ ]
1915
+ ],
1916
+ "global_mean": [
1917
+ 0.03308838978409767,
1918
+ 0.0974213108420372,
1919
+ -0.07474510371685028,
1920
+ -0.00030263594817370176,
1921
+ 0.007302860263735056,
1922
+ -0.005925345700234175,
1923
+ 0.5077238082885742
1924
+ ],
1925
+ "global_std": [
1926
+ 0.3193991482257843,
1927
+ 0.35420864820480347,
1928
+ 0.47778937220573425,
1929
+ 0.03880302980542183,
1930
+ 0.06584133952856064,
1931
+ 0.07789275795221329,
1932
+ 0.5015749335289001
1933
+ ]
1934
+ }
1935
+ },
1936
+ "num_episodes": 1712,
1937
+ "num_transition": 277713
1938
+ }
eval/summary.json ADDED
@@ -0,0 +1,322 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "run_id": "20260425_libero_12x12_bestl2_step62000_h100x1_job799082_retry1",
3
+ "ckpt": "",
4
+ "config": "",
5
+ "suite_stats": {
6
+ "libero_spatial": {
7
+ "total_tasks": 10,
8
+ "total_trials": 500,
9
+ "total_successes": 493,
10
+ "total_time": 4836.672504425049,
11
+ "max_time": 585.3163847923279
12
+ },
13
+ "libero_object": {
14
+ "total_tasks": 10,
15
+ "total_trials": 500,
16
+ "total_successes": 496,
17
+ "total_time": 4990.784248352051,
18
+ "max_time": 538.8516035079956
19
+ },
20
+ "libero_goal": {
21
+ "total_tasks": 10,
22
+ "total_trials": 500,
23
+ "total_successes": 496,
24
+ "total_time": 4303.51744222641,
25
+ "max_time": 613.5926268100739
26
+ },
27
+ "libero_10": {
28
+ "total_tasks": 10,
29
+ "total_trials": 500,
30
+ "total_successes": 477,
31
+ "total_time": 8193.375401258469,
32
+ "max_time": 1134.7978818416595
33
+ }
34
+ },
35
+ "task_results": {
36
+ "libero_spatial_1": {
37
+ "success_rate": 100.0,
38
+ "duration": 475.2741618156433,
39
+ "total_episodes": 50,
40
+ "successes": 50,
41
+ "task_description": "pick up the black bowl next to the ramekin and place it on the plate"
42
+ },
43
+ "libero_spatial_9": {
44
+ "success_rate": 100.0,
45
+ "duration": 521.9268035888672,
46
+ "total_episodes": 50,
47
+ "successes": 50,
48
+ "task_description": "pick up the black bowl on the wooden cabinet and place it on the plate"
49
+ },
50
+ "libero_spatial_4": {
51
+ "success_rate": 96.0,
52
+ "duration": 585.3163847923279,
53
+ "total_episodes": 50,
54
+ "successes": 48,
55
+ "task_description": "pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate"
56
+ },
57
+ "libero_spatial_6": {
58
+ "success_rate": 98.0,
59
+ "duration": 491.91553235054016,
60
+ "total_episodes": 50,
61
+ "successes": 49,
62
+ "task_description": "pick up the black bowl next to the cookie box and place it on the plate"
63
+ },
64
+ "libero_spatial_5": {
65
+ "success_rate": 96.0,
66
+ "duration": 502.826637506485,
67
+ "total_episodes": 50,
68
+ "successes": 48,
69
+ "task_description": "pick up the black bowl on the ramekin and place it on the plate"
70
+ },
71
+ "libero_spatial_2": {
72
+ "success_rate": 100.0,
73
+ "duration": 430.2407646179199,
74
+ "total_episodes": 50,
75
+ "successes": 50,
76
+ "task_description": "pick up the black bowl from table center and place it on the plate"
77
+ },
78
+ "libero_spatial_8": {
79
+ "success_rate": 98.0,
80
+ "duration": 469.4062237739563,
81
+ "total_episodes": 50,
82
+ "successes": 49,
83
+ "task_description": "pick up the black bowl next to the plate and place it on the plate"
84
+ },
85
+ "libero_spatial_0": {
86
+ "success_rate": 100.0,
87
+ "duration": 378.6431043148041,
88
+ "total_episodes": 50,
89
+ "successes": 50,
90
+ "task_description": "pick up the black bowl between the plate and the ramekin and place it on the plate"
91
+ },
92
+ "libero_spatial_3": {
93
+ "success_rate": 100.0,
94
+ "duration": 420.8360643386841,
95
+ "total_episodes": 50,
96
+ "successes": 50,
97
+ "task_description": "pick up the black bowl on the cookie box and place it on the plate"
98
+ },
99
+ "libero_spatial_7": {
100
+ "success_rate": 98.0,
101
+ "duration": 560.2868273258209,
102
+ "total_episodes": 50,
103
+ "successes": 49,
104
+ "task_description": "pick up the black bowl on the stove and place it on the plate"
105
+ },
106
+ "libero_object_1": {
107
+ "success_rate": 100.0,
108
+ "duration": 470.23339223861694,
109
+ "total_episodes": 50,
110
+ "successes": 50,
111
+ "task_description": "pick up the cream cheese and place it in the basket"
112
+ },
113
+ "libero_object_9": {
114
+ "success_rate": 100.0,
115
+ "duration": 461.4433240890503,
116
+ "total_episodes": 50,
117
+ "successes": 50,
118
+ "task_description": "pick up the orange juice and place it in the basket"
119
+ },
120
+ "libero_object_4": {
121
+ "success_rate": 100.0,
122
+ "duration": 511.6103901863098,
123
+ "total_episodes": 50,
124
+ "successes": 50,
125
+ "task_description": "pick up the ketchup and place it in the basket"
126
+ },
127
+ "libero_object_6": {
128
+ "success_rate": 100.0,
129
+ "duration": 525.0326547622681,
130
+ "total_episodes": 50,
131
+ "successes": 50,
132
+ "task_description": "pick up the butter and place it in the basket"
133
+ },
134
+ "libero_object_5": {
135
+ "success_rate": 98.0,
136
+ "duration": 493.3536260128021,
137
+ "total_episodes": 50,
138
+ "successes": 49,
139
+ "task_description": "pick up the tomato sauce and place it in the basket"
140
+ },
141
+ "libero_object_2": {
142
+ "success_rate": 100.0,
143
+ "duration": 458.1524634361267,
144
+ "total_episodes": 50,
145
+ "successes": 50,
146
+ "task_description": "pick up the salad dressing and place it in the basket"
147
+ },
148
+ "libero_object_8": {
149
+ "success_rate": 100.0,
150
+ "duration": 538.8516035079956,
151
+ "total_episodes": 50,
152
+ "successes": 50,
153
+ "task_description": "pick up the chocolate pudding and place it in the basket"
154
+ },
155
+ "libero_object_0": {
156
+ "success_rate": 98.0,
157
+ "duration": 533.2367527484894,
158
+ "total_episodes": 50,
159
+ "successes": 49,
160
+ "task_description": "pick up the alphabet soup and place it in the basket"
161
+ },
162
+ "libero_object_3": {
163
+ "success_rate": 100.0,
164
+ "duration": 478.8888187408447,
165
+ "total_episodes": 50,
166
+ "successes": 50,
167
+ "task_description": "pick up the bbq sauce and place it in the basket"
168
+ },
169
+ "libero_object_7": {
170
+ "success_rate": 96.0,
171
+ "duration": 519.9812226295471,
172
+ "total_episodes": 50,
173
+ "successes": 48,
174
+ "task_description": "pick up the milk and place it in the basket"
175
+ },
176
+ "libero_goal_1": {
177
+ "success_rate": 96.0,
178
+ "duration": 407.42735528945923,
179
+ "total_episodes": 50,
180
+ "successes": 48,
181
+ "task_description": "put the bowl on the stove"
182
+ },
183
+ "libero_goal_9": {
184
+ "success_rate": 98.0,
185
+ "duration": 508.83817052841187,
186
+ "total_episodes": 50,
187
+ "successes": 49,
188
+ "task_description": "put the wine bottle on the rack"
189
+ },
190
+ "libero_goal_4": {
191
+ "success_rate": 100.0,
192
+ "duration": 368.96091961860657,
193
+ "total_episodes": 50,
194
+ "successes": 50,
195
+ "task_description": "put the bowl on top of the cabinet"
196
+ },
197
+ "libero_goal_6": {
198
+ "success_rate": 100.0,
199
+ "duration": 382.50407886505127,
200
+ "total_episodes": 50,
201
+ "successes": 50,
202
+ "task_description": "put the cream cheese in the bowl"
203
+ },
204
+ "libero_goal_5": {
205
+ "success_rate": 100.0,
206
+ "duration": 493.38541531562805,
207
+ "total_episodes": 50,
208
+ "successes": 50,
209
+ "task_description": "push the plate to the front of the stove"
210
+ },
211
+ "libero_goal_2": {
212
+ "success_rate": 98.0,
213
+ "duration": 396.31106972694397,
214
+ "total_episodes": 50,
215
+ "successes": 49,
216
+ "task_description": "put the wine bottle on top of the cabinet"
217
+ },
218
+ "libero_goal_8": {
219
+ "success_rate": 100.0,
220
+ "duration": 340.19046211242676,
221
+ "total_episodes": 50,
222
+ "successes": 50,
223
+ "task_description": "put the bowl on the plate"
224
+ },
225
+ "libero_goal_0": {
226
+ "success_rate": 100.0,
227
+ "duration": 455.5467436313629,
228
+ "total_episodes": 50,
229
+ "successes": 50,
230
+ "task_description": "open the middle drawer of the cabinet"
231
+ },
232
+ "libero_goal_3": {
233
+ "success_rate": 100.0,
234
+ "duration": 613.5926268100739,
235
+ "total_episodes": 50,
236
+ "successes": 50,
237
+ "task_description": "open the top drawer and put the bowl inside"
238
+ },
239
+ "libero_goal_7": {
240
+ "success_rate": 100.0,
241
+ "duration": 336.76060032844543,
242
+ "total_episodes": 50,
243
+ "successes": 50,
244
+ "task_description": "turn on the stove"
245
+ },
246
+ "libero_10_1": {
247
+ "success_rate": 96.0,
248
+ "duration": 834.9772083759308,
249
+ "total_episodes": 50,
250
+ "successes": 48,
251
+ "task_description": "put both the cream cheese box and the butter in the basket"
252
+ },
253
+ "libero_10_9": {
254
+ "success_rate": 98.0,
255
+ "duration": 763.7816498279572,
256
+ "total_episodes": 50,
257
+ "successes": 49,
258
+ "task_description": "put the yellow and white mug in the microwave and close it"
259
+ },
260
+ "libero_10_4": {
261
+ "success_rate": 92.0,
262
+ "duration": 830.1930220127106,
263
+ "total_episodes": 50,
264
+ "successes": 46,
265
+ "task_description": "put the white mug on the left plate and put the yellow and white mug on the right plate"
266
+ },
267
+ "libero_10_6": {
268
+ "success_rate": 84.0,
269
+ "duration": 873.3589758872986,
270
+ "total_episodes": 50,
271
+ "successes": 42,
272
+ "task_description": "put the white mug on the plate and put the chocolate pudding to the right of the plate"
273
+ },
274
+ "libero_10_5": {
275
+ "success_rate": 100.0,
276
+ "duration": 540.4805021286011,
277
+ "total_episodes": 50,
278
+ "successes": 50,
279
+ "task_description": "pick up the book and place it in the back compartment of the caddy"
280
+ },
281
+ "libero_10_2": {
282
+ "success_rate": 100.0,
283
+ "duration": 791.6033418178558,
284
+ "total_episodes": 50,
285
+ "successes": 50,
286
+ "task_description": "turn on the stove and put the moka pot on it"
287
+ },
288
+ "libero_10_8": {
289
+ "success_rate": 94.0,
290
+ "duration": 1134.7978818416595,
291
+ "total_episodes": 50,
292
+ "successes": 47,
293
+ "task_description": "put both moka pots on the stove"
294
+ },
295
+ "libero_10_0": {
296
+ "success_rate": 96.0,
297
+ "duration": 897.22452044487,
298
+ "total_episodes": 50,
299
+ "successes": 48,
300
+ "task_description": "put both the alphabet soup and the tomato sauce in the basket"
301
+ },
302
+ "libero_10_3": {
303
+ "success_rate": 94.0,
304
+ "duration": 788.8660531044006,
305
+ "total_episodes": 50,
306
+ "successes": 47,
307
+ "task_description": "put the black bowl in the bottom drawer of the cabinet and close it"
308
+ },
309
+ "libero_10_7": {
310
+ "success_rate": 100.0,
311
+ "duration": 738.0922458171844,
312
+ "total_episodes": 50,
313
+ "successes": 50,
314
+ "task_description": "put both the alphabet soup and the cream cheese box in the basket"
315
+ }
316
+ },
317
+ "overall": {
318
+ "average_success_rate": 98.1,
319
+ "total_time": 22324.349596261978,
320
+ "average_task_time": 558.1087399065494
321
+ }
322
+ }
eval/task_success_rates.csv ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Task,Description,Success Rate (%)
2
+ libero_10_0,put both the alphabet soup and the tomato sauce in the basket,96.00
3
+ libero_10_1,put both the cream cheese box and the butter in the basket,96.00
4
+ libero_10_2,turn on the stove and put the moka pot on it,100.00
5
+ libero_10_3,put the black bowl in the bottom drawer of the cabinet and close it,94.00
6
+ libero_10_4,put the white mug on the left plate and put the yellow and white mug on the right plate,92.00
7
+ libero_10_5,pick up the book and place it in the back compartment of the caddy,100.00
8
+ libero_10_6,put the white mug on the plate and put the chocolate pudding to the right of the plate,84.00
9
+ libero_10_7,put both the alphabet soup and the cream cheese box in the basket,100.00
10
+ libero_10_8,put both moka pots on the stove,94.00
11
+ libero_10_9,put the yellow and white mug in the microwave and close it,98.00
12
+ libero_goal_0,open the middle drawer of the cabinet,100.00
13
+ libero_goal_1,put the bowl on the stove,96.00
14
+ libero_goal_2,put the wine bottle on top of the cabinet,98.00
15
+ libero_goal_3,open the top drawer and put the bowl inside,100.00
16
+ libero_goal_4,put the bowl on top of the cabinet,100.00
17
+ libero_goal_5,push the plate to the front of the stove,100.00
18
+ libero_goal_6,put the cream cheese in the bowl,100.00
19
+ libero_goal_7,turn on the stove,100.00
20
+ libero_goal_8,put the bowl on the plate,100.00
21
+ libero_goal_9,put the wine bottle on the rack,98.00
22
+ libero_object_0,pick up the alphabet soup and place it in the basket,98.00
23
+ libero_object_1,pick up the cream cheese and place it in the basket,100.00
24
+ libero_object_2,pick up the salad dressing and place it in the basket,100.00
25
+ libero_object_3,pick up the bbq sauce and place it in the basket,100.00
26
+ libero_object_4,pick up the ketchup and place it in the basket,100.00
27
+ libero_object_5,pick up the tomato sauce and place it in the basket,98.00
28
+ libero_object_6,pick up the butter and place it in the basket,100.00
29
+ libero_object_7,pick up the milk and place it in the basket,96.00
30
+ libero_object_8,pick up the chocolate pudding and place it in the basket,100.00
31
+ libero_object_9,pick up the orange juice and place it in the basket,100.00
32
+ libero_spatial_0,pick up the black bowl between the plate and the ramekin and place it on the plate,100.00
33
+ libero_spatial_1,pick up the black bowl next to the ramekin and place it on the plate,100.00
34
+ libero_spatial_2,pick up the black bowl from table center and place it on the plate,100.00
35
+ libero_spatial_3,pick up the black bowl on the cookie box and place it on the plate,100.00
36
+ libero_spatial_4,pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate,96.00
37
+ libero_spatial_5,pick up the black bowl on the ramekin and place it on the plate,96.00
38
+ libero_spatial_6,pick up the black bowl next to the cookie box and place it on the plate,98.00
39
+ libero_spatial_7,pick up the black bowl on the stove and place it on the plate,98.00
40
+ libero_spatial_8,pick up the black bowl next to the plate and place it on the plate,98.00
41
+ libero_spatial_9,pick up the black bowl on the wooden cabinet and place it on the plate,100.00
libero_pfd_action512_partial_12x12_step62000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:282ea886bc2157ffa909fdb55a723a066eed29bd89e6218a2a094e449f0abd2a
3
+ size 12044590898
manifest.json ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "release_id": "pfd-libero-12x12-step62000",
3
+ "recorded_at": "2026-06-05",
4
+ "code_repository": "https://github.com/PengchengFang-cs/PFD",
5
+ "paper": "https://arxiv.org/abs/2604.25859",
6
+ "model": {
7
+ "task": "libero_uncond_2cam224_1e-4",
8
+ "config_name": "fastwam_pfd_action512_partial",
9
+ "pfd_enabled": true,
10
+ "pfd_stage": "s1",
11
+ "pfd_training_mode": "action512_partial",
12
+ "partial_unfreeze": {
13
+ "action_last_layers": 12,
14
+ "video_last_layers": 12
15
+ },
16
+ "selected_checkpoint_step": 62000,
17
+ "base_initialization": "libero_uncond_2cam224.pt"
18
+ },
19
+ "training": {
20
+ "source_run_dir": "/iridisfs/scratch/pf2m24/projects/FastWAM/runs/libero_uncond_2cam224_1e-4/2026-04-22_12x12_h100x2_trainableonly_resume_from2000_nw8_pin_on",
21
+ "batch_size": 32,
22
+ "num_epochs": 30,
23
+ "max_steps": null,
24
+ "eval_every": 1000,
25
+ "mixed_precision": "bf16"
26
+ },
27
+ "evaluation": {
28
+ "run_id": "20260425_libero_12x12_bestl2_step62000_h100x1_job799082_retry1",
29
+ "result_dir": "/iridisfs/scratch/pf2m24/projects/FastWAM/evaluate_results/libero/20260425_libero_12x12_bestl2_step62000_h100x1_job799082_retry1",
30
+ "num_trials_per_task": 50,
31
+ "suites": {
32
+ "libero_spatial": {
33
+ "successes": 493,
34
+ "episodes": 500,
35
+ "success_rate": 0.986
36
+ },
37
+ "libero_object": {
38
+ "successes": 496,
39
+ "episodes": 500,
40
+ "success_rate": 0.992
41
+ },
42
+ "libero_goal": {
43
+ "successes": 496,
44
+ "episodes": 500,
45
+ "success_rate": 0.992
46
+ },
47
+ "libero_10": {
48
+ "successes": 477,
49
+ "episodes": 500,
50
+ "success_rate": 0.954
51
+ }
52
+ },
53
+ "overall": {
54
+ "successes": 1962,
55
+ "episodes": 2000,
56
+ "success_rate": 0.981
57
+ }
58
+ },
59
+ "files": [
60
+ {
61
+ "path": "libero_pfd_action512_partial_12x12_step62000.pt",
62
+ "size_bytes": 12044590898,
63
+ "sha256": "282ea886bc2157ffa909fdb55a723a066eed29bd89e6218a2a094e449f0abd2a",
64
+ "source": "/iridisfs/scratch/pf2m24/projects/FastWAM/runs/libero_uncond_2cam224_1e-4/2026-04-22_12x12_h100x2_trainableonly_resume_from2000_nw8_pin_on/checkpoints/best_action_l2_step62000_full_eval_20260424_job799082.pt"
65
+ },
66
+ {
67
+ "path": "config.yaml",
68
+ "sha256": "dd82501215d0bf1f6fed0d984a69454fd167b881f58962eeea54f3a111af29e7"
69
+ },
70
+ {
71
+ "path": "dataset_stats.json",
72
+ "sha256": "0934cda73fdc43e462fdb6b5c9049a7e28f0e1ddb71ce4d4a1899c4f57087af7"
73
+ },
74
+ {
75
+ "path": "eval/summary.json",
76
+ "sha256": "bda1c85946cab1d372311e8b998c66c5ee31630b8cdefab3810f04298989dd3f"
77
+ },
78
+ {
79
+ "path": "eval/task_success_rates.csv",
80
+ "sha256": "c53494b155be47388e5fd4d043681c0935c38982879765fca5bd8dd816be4acc"
81
+ }
82
+ ]
83
+ }