zhouhongyi commited on
Commit
6d0892a
·
verified ·
1 Parent(s): 5292b8f

Upload 22 files

Browse files
.hydra/config.yaml ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ datamodule:
2
+ transforms:
3
+ combine_goal_obs: false
4
+ move_axis: false
5
+ bytes_to_string: true
6
+ adjust_type: null
7
+ add_robot_information: true
8
+ language_encoders:
9
+ _target_: flower_vla.agents.lang_encoders.florence_tokens.TokenVLM
10
+ _recursive_: false
11
+ model_name: microsoft/Florence-2-large
12
+ _target_: flower_vla.dataset.datamodule.UhaDataModule
13
+ _recursive_: false
14
+ num_workers: ${num_workers}
15
+ batch_size: ${batch_size}
16
+ pin_memory: ${pin_memory}
17
+ drop_last: ${drop_last}
18
+ datasets:
19
+ DATA_NAME: ${DATA_NAME}
20
+ DATA_PATH: gs://gresearch/robotics
21
+ load_camera_views: ${load_camera_views}
22
+ dataset_size_limit: ${dataset_size_limit}
23
+ action_proprio_normalization_type: bounds
24
+ proprio_obs_key: proprio
25
+ interleaved_dataset_cfg:
26
+ shuffle_buffer_size: ${shuffle_buffer_size}
27
+ balance_weights: true
28
+ traj_transform_kwargs:
29
+ goal_relabeling_strategy: ${goal_relabeling_strategy}
30
+ goal_relabeling_kwargs:
31
+ goal_relabeling_kwargs:
32
+ min_bound: 20
33
+ max_bound: 50
34
+ frame_diff: 3
35
+ window_size: ${obs_seq_len}
36
+ action_horizon: ${act_seq_len}
37
+ max_action_dim: ${act_dim}
38
+ max_proprio_dim: ${max_proprio_dim}
39
+ subsample_length: ${subsample_length}
40
+ skip_unlabeled: ${skip_unlabeled}
41
+ frame_transform_kwargs:
42
+ image_augment_kwargs:
43
+ primary:
44
+ random_resized_crop:
45
+ scale:
46
+ - 0.8
47
+ - 1.0
48
+ ratio:
49
+ - 0.9
50
+ - 1.1
51
+ augment_order:
52
+ - random_resized_crop
53
+ secondary:
54
+ random_resized_crop:
55
+ scale:
56
+ - 0.8
57
+ - 1.0
58
+ ratio:
59
+ - 0.9
60
+ - 1.1
61
+ augment_order:
62
+ - random_resized_crop
63
+ wrist:
64
+ random_brightness:
65
+ - 0.1
66
+ augment_order:
67
+ - random_brightness
68
+ resize_size:
69
+ primary:
70
+ - 224
71
+ - 224
72
+ secondary:
73
+ - 224
74
+ - 224
75
+ wrist:
76
+ - 224
77
+ - 224
78
+ resize_size_future_obs:
79
+ primary:
80
+ - 112
81
+ - 112
82
+ secondary:
83
+ - 112
84
+ - 112
85
+ wrist:
86
+ - 112
87
+ - 112
88
+ num_parallel_calls: 64
89
+ traj_transform_threads: 12
90
+ traj_read_threads: 12
91
+ trainer:
92
+ agent:
93
+ _target_: flower_vla.agents.vlp_ddp_wrapper.DDPAgentWrapper
94
+ _recursive_: false
95
+ obs_modalities: ${obs_modalities}
96
+ goal_modalities: ${goal_modalities}
97
+ img_modalities: ${img_modalities}
98
+ lang_modalities: ${lang_modalities}
99
+ target_modality: ${target_modality}
100
+ agent:
101
+ _target_: flower_vla.agents.vlp.VLP
102
+ _recursive_: false
103
+ obs_modalities: ${obs_modalities}
104
+ goal_modalities: ${goal_modalities}
105
+ img_modalities: ${img_modalities}
106
+ lang_modalities: ${lang_modalities}
107
+ target_modality: ${target_modality}
108
+ vlm_path: microsoft/Florence-2-large
109
+ freeze_florence: false
110
+ freeze_vision_tower: false
111
+ freeze_embeddings_only: false
112
+ use_second_view: ${use_second_view}
113
+ token_dropout: 0.1
114
+ cfg_dropout: 0.0
115
+ second_view_key: ${second_view_key}
116
+ use_third_view: ${use_third_view}
117
+ third_view_key: ${third_view_key}
118
+ multistep: ${act_seq_len}
119
+ lowdim_obs_dim: ${obs_dim}
120
+ action_dim: ${act_dim}
121
+ act_window_size: ${act_seq_len}
122
+ use_causal_attention: true
123
+ update_w_bound: ${update_w_bound}
124
+ use_proprio: ${use_proprio}
125
+ mp_tokenizer:
126
+ _target_: flower_vla.agents.vlp_models.bspline_tokenizer.BSpline_Tokenizer
127
+ _recursive_: false
128
+ num_dof: ${act_dim}
129
+ num_basis: ${num_basis}
130
+ duration: 1.0
131
+ seq_len: ${act_seq_len}
132
+ vocab_size: ${vocab_size}
133
+ degree_p: ${degree_p}
134
+ gripper_zero_order: ${gripper_zero_order}
135
+ gripper_dof: ${gripper_dof}
136
+ gripper_indices: ${gripper_indices}
137
+ w_max_bound: ${w_max_bound}
138
+ w_min_bound: ${w_min_bound}
139
+ init_cond_order: 0
140
+ end_cond_order: 0
141
+ _target_: flower_vla.trainers.vlp_trainer.AccelerateTrainer
142
+ _recursive_: false
143
+ pre_compute_w_bound: ${pre_compute_w_bound}
144
+ pre_compute_w_bound_steps: ${pre_compute_w_bound_steps}
145
+ use_torch_compile: false
146
+ single_optimizer: true
147
+ learning_rate_vlm: 2.0e-05
148
+ use_lr_scheduler: true
149
+ beta_vlm_1: 0.9
150
+ beta_vlm_2: 0.999
151
+ weight_decay:
152
+ transformer_weight_decay: 0.0
153
+ vlm_weight_decay: 0.0
154
+ vlm_lr_scheduler:
155
+ _target_: flower_vla.utils.lr_schedulers.TriStageLRScheduler
156
+ init_lr_scale: 1.0
157
+ final_lr_scale: 1.0
158
+ phase_ratio: (0.0, 1.0, 0.0)
159
+ total_steps: 60000
160
+ eval_every_n_steps: ${eval_every_n_steps}
161
+ save_every_n_steps: ${save_every_n_steps}
162
+ max_train_steps: ${max_train_steps}
163
+ max_eval_steps: ${max_eval_steps}
164
+ use_ema: false
165
+ decay: ${decay}
166
+ rampup_ratio: ${rampup_ratio}
167
+ update_ema_every_n_steps: ${update_ema_every_n_steps}
168
+ batch_size: ${batch_size}
169
+ obs_modalities: ${obs_modalities}
170
+ goal_modalities: ${goal_modalities}
171
+ img_modalities: ${img_modalities}
172
+ lang_modalities: ${lang_modalities}
173
+ target_modality: ${target_modality}
174
+ DATA_NAME: aloha_right_left_transfer
175
+ wandb:
176
+ name: Causal_Seq50_basis10_${now:%H-%M-%S}
177
+ group: Franka_REAL_${now:%Y-%m-%d}
178
+ project: Aloha_Right_Left_Transfer
179
+ entity: zhouhongyi
180
+ mode: null
181
+ log_dir: logs/
182
+ obs_seq_len: 1
183
+ goal_window_size: 1
184
+ seed: 42
185
+ obs_dim: 16
186
+ goal_dim: 512
187
+ update_ema_every_n_steps: 1
188
+ decay: 0.999
189
+ rampup_ratio: 0.001
190
+ goal_relabeling_strategy: null
191
+ subsample_length: null
192
+ skip_unlabeled: true
193
+ load_camera_views:
194
+ - primary
195
+ - secondary
196
+ - wrist
197
+ obs_modalities: observation
198
+ goal_modalities: task
199
+ img_modalities:
200
+ - image_primary
201
+ - image_secondary
202
+ - image_wrist
203
+ lang_modalities:
204
+ - language_instruction
205
+ target_modality: action
206
+ use_proprio: false
207
+ drop_last: true
208
+ pin_memory: true
209
+ num_workers: 0
210
+ use_second_view: true
211
+ second_view_key: image_secondary
212
+ use_third_view: true
213
+ third_view_key: image_wrist
214
+ pre_compute_w_bound: false
215
+ pre_compute_w_bound_steps: 100000
216
+ update_w_bound: true
217
+ w_max_bound: 2.5
218
+ w_min_bound: -2.5
219
+ act_seq_len: 50
220
+ num_basis: 10
221
+ vocab_size: 256
222
+ degree_p: 4
223
+ gripper_zero_order: false
224
+ gripper_dof: 0
225
+ gripper_indices:
226
+ - 6
227
+ - 13
228
+ gradient_accumulation_steps: 1
229
+ find_unused_parameters: true
230
+ static_graph: false
231
+ act_dim: 14
232
+ max_proprio_dim: 16
233
+ max_train_steps: 400000
234
+ max_eval_steps: 100
235
+ eval_every_n_steps: 500
236
+ save_every_n_steps: 5000
237
+ shuffle_buffer_size: 45000
238
+ batch_size: 48
239
+ dataset_size_limit: null
.hydra/hydra.yaml ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ hydra:
2
+ run:
3
+ dir: ${log_dir}/runs/${now:%Y-%m-%d}/${now:%H-%M-%S}
4
+ sweep:
5
+ dir: ${log_dir}/runs/${now:%Y-%m-%d}/${now:%H-%M-%S}
6
+ subdir: ${hydra.job.num}
7
+ launcher:
8
+ _target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher
9
+ sweeper:
10
+ _target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper
11
+ max_batch_size: null
12
+ help:
13
+ app_name: ${hydra.job.name}
14
+ header: '${hydra.help.app_name} is powered by Hydra.
15
+
16
+ '
17
+ footer: 'Powered by Hydra (https://hydra.cc)
18
+
19
+ Use --hydra-help to view Hydra specific help
20
+
21
+ '
22
+ template: '${hydra.help.header}
23
+
24
+ == Configuration groups ==
25
+
26
+ Compose your configuration from those groups (group=option)
27
+
28
+
29
+ $APP_CONFIG_GROUPS
30
+
31
+
32
+ == Config ==
33
+
34
+ Override anything in the config (foo.bar=value)
35
+
36
+
37
+ $CONFIG
38
+
39
+
40
+ ${hydra.help.footer}
41
+
42
+ '
43
+ hydra_help:
44
+ template: 'Hydra (${hydra.runtime.version})
45
+
46
+ See https://hydra.cc for more info.
47
+
48
+
49
+ == Flags ==
50
+
51
+ $FLAGS_HELP
52
+
53
+
54
+ == Configuration groups ==
55
+
56
+ Compose your configuration from those groups (For example, append hydra/job_logging=disabled
57
+ to command line)
58
+
59
+
60
+ $HYDRA_CONFIG_GROUPS
61
+
62
+
63
+ Use ''--cfg hydra'' to Show the Hydra config.
64
+
65
+ '
66
+ hydra_help: ???
67
+ hydra_logging:
68
+ version: 1
69
+ formatters:
70
+ simple:
71
+ format: '[%(asctime)s][HYDRA] %(message)s'
72
+ handlers:
73
+ console:
74
+ class: logging.StreamHandler
75
+ formatter: simple
76
+ stream: ext://sys.stdout
77
+ root:
78
+ level: INFO
79
+ handlers:
80
+ - console
81
+ loggers:
82
+ logging_example:
83
+ level: DEBUG
84
+ disable_existing_loggers: false
85
+ job_logging:
86
+ version: 1
87
+ formatters:
88
+ simple:
89
+ format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s'
90
+ handlers:
91
+ console:
92
+ class: logging.StreamHandler
93
+ formatter: simple
94
+ stream: ext://sys.stdout
95
+ file:
96
+ class: logging.FileHandler
97
+ formatter: simple
98
+ filename: ${hydra.job.name}.log
99
+ root:
100
+ level: INFO
101
+ handlers:
102
+ - console
103
+ - file
104
+ disable_existing_loggers: false
105
+ env: {}
106
+ searchpath: []
107
+ callbacks: {}
108
+ output_subdir: .hydra
109
+ overrides:
110
+ hydra: []
111
+ task: []
112
+ job:
113
+ name: training
114
+ override_dirname: ''
115
+ id: ???
116
+ num: ???
117
+ config_name: training_real_aloha.yaml
118
+ env_set: {}
119
+ env_copy: []
120
+ config:
121
+ override_dirname:
122
+ kv_sep: '='
123
+ item_sep: ','
124
+ exclude_keys: []
125
+ runtime:
126
+ version: 1.1.1
127
+ cwd: /home/zhou/Codes/vlp_corl25/vla_mp
128
+ config_sources:
129
+ - path: hydra.conf
130
+ schema: pkg
131
+ provider: hydra
132
+ - path: /home/zhou/Codes/vlp_corl25/vla_mp/conf
133
+ schema: file
134
+ provider: main
135
+ - path: ''
136
+ schema: structured
137
+ provider: schema
138
+ choices:
139
+ trainer: vlp_trainer
140
+ trainer/agent: vlp
141
+ datamodule: oxe_data
142
+ datamodule/language_encoders: florence
143
+ datamodule/transforms: oxe_no_remapping
144
+ hydra/env: default
145
+ hydra/callbacks: null
146
+ hydra/job_logging: default
147
+ hydra/hydra_logging: default
148
+ hydra/hydra_help: default
149
+ hydra/help: default
150
+ hydra/sweeper: basic
151
+ hydra/launcher: basic
152
+ hydra/output: default
153
+ verbose: false
.hydra/overrides.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ []
checkpoint_10000/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:653bbf57b7685bae3d10ab49d6001fae7aa1b8d78b02b38842827770650cc98b
3
+ size 1553613204
checkpoint_10000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8148b9c38f2f48c6fcbdf669b50a6ccfc3cec43e5e5cf491ab85f9d214f3d7d5
3
+ size 3106635726
checkpoint_10000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42b3c357a7204147eb9aef2bf1fb48e2558f7eb91f8f789e12e1212129544927
3
+ size 15516
checkpoint_10000/random_states_1.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc15ff4ae61ef465421488881bb2b706a99bcdd119107e8085d821bcd500672d
3
+ size 15644
checkpoint_10000/random_states_2.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca3aa1c255e20b36553933fd17ff3bc34efa60d821ec6f0e8f1207328074ac6d
3
+ size 15516
checkpoint_10000/random_states_3.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35252e74f2360b49020c75e9059f15d0d0f50df1e5b8c61a3a1feb1f833719ae
3
+ size 15580
checkpoint_10000/random_states_4.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1daf9d375a56bbf8c00ed47a4d10fb00376eb94abcf55bca5ddda9720f853a59
3
+ size 15580
checkpoint_10000/random_states_5.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:503febac82261fdc3a4c9c0d6e22eb15c2c6904e8cf79d1a04b1e5943de446f7
3
+ size 15580
checkpoint_10000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:673eaceedf150be0d5d38f7bb933bc59cae3b494bc3de4a0e4368aad8c5c42ce
3
+ size 1256
checkpoint_5000/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b75418a592d2810a041d3e9c3c44611eca2a721f638bbdb98afee8e12ffafe0
3
+ size 1553613204
checkpoint_5000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9ec7174642ffd8ee129f31a56672b0f806ea564700d7424385d1c8503c9baeb
3
+ size 3106635726
checkpoint_5000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b741376a9efe75bb7a31f8b47b629ef0ab7c896eaf75e520b632b26d9b51ea26
3
+ size 15516
checkpoint_5000/random_states_1.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4637642b1a28e7f703a17c5a1fededcd5359e30aea7f9e2084e346b1336e9dc8
3
+ size 15644
checkpoint_5000/random_states_2.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b35b5d09ce5bcd2f3da879358da7ed858990fd3d0a5d91b84f8ca2c14bcd1610
3
+ size 15516
checkpoint_5000/random_states_3.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50f7ffbf0f39828705fa2e2786ecd96e7b1cd59d1289477b63f3dffb781665a4
3
+ size 15580
checkpoint_5000/random_states_4.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d693b8f8391834f2cfc0d1c2730a271c5fd850911e61b5f84cee64eaeccc34e
3
+ size 15580
checkpoint_5000/random_states_5.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1f8bc22e86d981013cb5990c18b070b82a8ef3d50d189c32cbfdda3355674d1
3
+ size 15580
checkpoint_5000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f32c21440846376ff23ec47b65055a106bb3e55ff0f56b37e8b1a8c8def4fe6e
3
+ size 1256
dataset_statistics_7ff1699aae8e76d63d7a0b4b4b234a73b16a7df6574a1da4bd769893edfa7d26.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"action": {"mean": [-0.09980551898479462, -0.7855625748634338, 1.2624194622039795, -0.03944704681634903, -0.34413042664527893, 0.33048224449157715, 0.40334537625312805, 0.07670194655656815, -0.0887017771601677, 0.7883964776992798, 0.06364128738641739, -0.5776045918464661, 0.21130876243114471, 0.2664165794849396], "std": [0.08050194382667542, 0.20292383432388306, 0.10817132145166397, 0.05838508903980255, 0.2088155299425125, 0.3349650502204895, 0.39498281478881836, 0.14862872660160065, 0.6699551939964294, 0.459709107875824, 0.26898688077926636, 0.39960718154907227, 0.37265732884407043, 0.5169549584388733], "max": [0.10737866163253784, -0.09357283264398575, 1.5033012628555298, 0.058291271328926086, 0.6258642077445984, 1.306951642036438, 1.1351457834243774, 0.6519418358802795, 0.8130098581314087, 1.526310920715332, 1.1919031143188477, 1.366776943206787, 1.2563302516937256, 1.320757508277893], "min": [-0.3436117172241211, -1.1351457834243774, 0.6550098061561584, -0.34821364283561707, -0.7271069288253784, -0.08283496648073196, -0.6181942820549011, -0.48166999220848083, -1.667437195777893, -0.7148350477218628, -0.9694758653640747, -1.2041749954223633, -0.6550098061561584, -0.7623884677886963], "p99": [0.06289321184158325, -0.28685441613197327, 1.41586434841156, 0.0475534051656723, 0.3765309420228103, 1.1738481092453052, 1.0983302593231201, 0.5307573676109314, 0.6718835830688477, 1.5002332925796509, 0.7761942744255066, 0.5951845645904541, 1.0986830759048511, 1.2486604452133179], "p01": [-0.3206019997596741, -1.118272066116333, 0.8264628481864928, -0.25039167881011964, -0.6795535087585449, -0.061359234154224396, -0.5767768025398254, -0.3497476279735565, -1.6260197162628174, -0.04295146465301514, -0.52001953125, -1.0848772096633912, -0.49087387323379517, -0.7409127354621887]}, "num_transitions": 35178, "num_trajectories": 52, "proprio": {"mean": [-0.10121026635169983, -0.7844730615615845, 1.246608018875122, -0.0409359484910965, -0.35148757696151733, 0.32990169525146484, 0.22357597947120667, 0.07812093198299408, -0.12076649069786072, 0.772532045841217, 0.06426404416561127, -0.583050549030304, 0.21019193530082703, 0.0971749871969223], "std": [0.08043123036623001, 0.2005949318408966, 0.10898596048355103, 0.06003936007618904, 0.21178223192691803, 0.3343738913536072, 0.5264418125152588, 0.14978328347206116, 0.6600867509841919, 0.4669239819049835, 0.26905491948127747, 0.4049088656902313, 0.3731350600719452, 0.6083250045776367], "max": [0.11044661700725555, -0.09970875084400177, 1.494097352027893, 0.05982525274157524, 0.630466103553772, 1.3023496866226196, 1.1338573694229126, 0.6550098061561584, 0.780796229839325, 1.512505054473877, 1.1919031143188477, 1.3683109283447266, 1.2547962665557861, 1.3202457427978516], "min": [-0.34514567255973816, -1.1290098428726196, 0.6243302226066589, -0.3528155982494354, -0.7424467206001282, -0.08590292930603027, -0.7455589771270752, -0.48166999220848083, -1.656699299812317, -0.7455146908760071, -0.9694758653640747, -1.2164467573165894, -0.6580777764320374, -0.8180433511734009], "p99": [0.061359234154224396, -0.27458256483078003, 1.3974565267562866, 0.052155349403619766, 0.3891555869579463, 1.1726669406890968, 1.097615122795105, 0.5322913527488708, 0.6366020441055298, 1.4894953966140747, 0.7731263637542725, 0.5921165943145752, 1.0956151056289722, 1.2477613687515259], "p01": [-0.3129321038722992, -1.1090681552886963, 0.8222137093544006, -0.25310683250427246, -0.6887574195861816, -0.06289321184158325, -0.6627196669578552, -0.34821364283561707, -1.6183497905731201, -0.17794176936149597, -0.52001953125, -1.0925471353530884, -0.49087387323379517, -0.7921559810638428]}}