Datasets:
ArXiv:
DOI:
License:
Add deterministic benchmark splits
#3
by neashton - opened
- .gitattributes +1 -0
- README.md +38 -0
- splits/README.md +216 -0
- splits/README.pdf +3 -0
- splits/README.tex +317 -0
- splits/chamfer_metrics.csv +501 -0
- splits/compute_chamfer_splits.py +735 -0
- splits/compute_image_metrics.py +122 -0
- splits/create_example_figures.py +251 -0
- splits/download_hf_inputs.py +193 -0
- splits/generate_splits.py +512 -0
- splits/geometry_score_examples.png +3 -0
- splits/image_metrics.csv +501 -0
- splits/manifest.json +3061 -0
- splits/parameter_geometry_metrics.csv +501 -0
- splits/split_diagnostics.png +3 -0
- splits/visualize_splits.py +113 -0
- splits/wake_score_examples.png +3 -0
.gitattributes
CHANGED
|
@@ -7707,3 +7707,4 @@ run_377/volume_377.vtu filter=lfs diff=lfs merge=lfs -text
|
|
| 7707 |
*.vtp filter=lfs diff=lfs merge=lfs -text
|
| 7708 |
*.vtu filter=lfs diff=lfs merge=lfs -text
|
| 7709 |
*.stl filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 7707 |
*.vtp filter=lfs diff=lfs merge=lfs -text
|
| 7708 |
*.vtu filter=lfs diff=lfs merge=lfs -text
|
| 7709 |
*.stl filter=lfs diff=lfs merge=lfs -text
|
| 7710 |
+
splits/README.pdf filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -52,6 +52,43 @@ In addition we provide:
|
|
| 52 |
* stl : folder containing stl files that were used as inputs to the OpenFOAM process
|
| 53 |
* openfoam-casesetup.tgz : complete OpenFOAM setup that can be used to extend or reproduce the dataset
|
| 54 |
* validation : folder containing full outputs from all four mesh levels that were used to validate the methodology
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 55 |
|
| 56 |
Downloads
|
| 57 |
--------------
|
|
@@ -113,6 +150,7 @@ This dataset is provided under the CC BY SA 4.0 license, please see LICENSE.txt
|
|
| 113 |
|
| 114 |
version history:
|
| 115 |
---------------
|
|
|
|
| 116 |
* 15/02/2025 - files uploaded to HuggingFace
|
| 117 |
* 12/11/2024 - added validation folder that contains the full output from all four mesh levels that were used to validate the methodology used.
|
| 118 |
* 04/08/2024 - updates to the file description and arxiv paper
|
|
|
|
| 52 |
* stl : folder containing stl files that were used as inputs to the OpenFOAM process
|
| 53 |
* openfoam-casesetup.tgz : complete OpenFOAM setup that can be used to extend or reproduce the dataset
|
| 54 |
* validation : folder containing full outputs from all four mesh levels that were used to validate the methodology
|
| 55 |
+
* [`splits/`](splits/): deterministic benchmark manifests, methods documentation, derived metrics, diagnostic figures, and generation code
|
| 56 |
+
|
| 57 |
+
## Recommended dataset splits
|
| 58 |
+
|
| 59 |
+
AhmedML provides eight deterministic train/validation/test split families in
|
| 60 |
+
[`splits/manifest.json`](splits/manifest.json). Identifiers correspond to the
|
| 61 |
+
top-level `run_N` directories.
|
| 62 |
+
|
| 63 |
+
| Split | Type | Train | Validation | Test | Intended evaluation |
|
| 64 |
+
|---|---:|---:|---:|---:|---|
|
| 65 |
+
| `full` | In-distribution | 400 | 50 | 50 | Seed-42 public baseline |
|
| 66 |
+
| `medium` | In-distribution | 133 | 50 | 50 | Intermediate data efficiency |
|
| 67 |
+
| `scarce` | In-distribution | 67 | 50 | 50 | Low-data evaluation |
|
| 68 |
+
| `super_scarce` | In-distribution | 11 | 50 | 50 | Extreme low-data evaluation |
|
| 69 |
+
| `geometry` | OOD | 350 | 50 | 100 | STL-surface geometry extrapolation |
|
| 70 |
+
| `high_drag` | OOD | 350 | 50 | 100 | High-drag extrapolation |
|
| 71 |
+
| `low_drag` | OOD | 350 | 50 | 100 | Low-drag extrapolation |
|
| 72 |
+
| `image_wake` | OOD | 350 | 50 | 100 | Image-derived wake extrapolation |
|
| 73 |
+
|
| 74 |
+
The `full` assignment follows the established seed-42 AhmedML baseline used by
|
| 75 |
+
Noether. The reduced-data training sets are strictly nested and share the same
|
| 76 |
+
validation and test cases. For the OOD families, validation is selected from
|
| 77 |
+
the training-side population, while the held-out extreme is reserved for final
|
| 78 |
+
testing.
|
| 79 |
+
|
| 80 |
+
Download only the split package with:
|
| 81 |
+
|
| 82 |
+
```bash
|
| 83 |
+
hf download neashton/ahmedml \
|
| 84 |
+
--type dataset \
|
| 85 |
+
--include "splits/**" \
|
| 86 |
+
--local-dir ./ahmedml
|
| 87 |
+
```
|
| 88 |
+
|
| 89 |
+
Complete definitions, construction methods, missing-data treatment,
|
| 90 |
+
diagnostic figures, and reproducibility instructions are provided in
|
| 91 |
+
[`splits/README.md`](splits/README.md).
|
| 92 |
|
| 93 |
Downloads
|
| 94 |
--------------
|
|
|
|
| 150 |
|
| 151 |
version history:
|
| 152 |
---------------
|
| 153 |
+
* 17/08/2026 - Added deterministic benchmark train/validation/test splits, including nested data-efficiency and out-of-distribution evaluation protocols.
|
| 154 |
* 15/02/2025 - files uploaded to HuggingFace
|
| 155 |
* 12/11/2024 - added validation folder that contains the full output from all four mesh levels that were used to validate the methodology used.
|
| 156 |
* 04/08/2024 - updates to the file description and arxiv paper
|
splits/README.md
ADDED
|
@@ -0,0 +1,216 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# AhmedML dataset splits
|
| 2 |
+
|
| 3 |
+
This directory provides deterministic train/validation/test assignments for the
|
| 4 |
+
[AhmedML](https://huggingface.co/datasets/neashton/ahmedml) dataset. The
|
| 5 |
+
authoritative assignments are stored in [`manifest.json`](manifest.json) as a
|
| 6 |
+
flat JSON object. Keys follow the pattern `{split_name}_{train,val,test}`, and
|
| 7 |
+
each value is a numerically sorted list of identifiers matching the top-level
|
| 8 |
+
`run_N` directories.
|
| 9 |
+
|
| 10 |
+
AhmedML contains 500 Ahmed-body variants, indexed from `run_1` to `run_500`.
|
| 11 |
+
The aggregate force and moment table contains all 500 runs. The aggregate
|
| 12 |
+
geometry-parameter table contains 499 rows because `run_500` is absent; the
|
| 13 |
+
treatment of this missing row is described below.
|
| 14 |
+
|
| 15 |
+
## Splits at a glance
|
| 16 |
+
|
| 17 |
+
| Split | Type | Train | Validation | Test | Intended evaluation |
|
| 18 |
+
|---|---:|---:|---:|---:|---|
|
| 19 |
+
| `full` | In-distribution | 400 | 50 | 50 | Seed-42 public baseline |
|
| 20 |
+
| `medium` | In-distribution | 133 | 50 | 50 | Intermediate data efficiency |
|
| 21 |
+
| `scarce` | In-distribution | 67 | 50 | 50 | Low-data evaluation |
|
| 22 |
+
| `super_scarce` | In-distribution | 11 | 50 | 50 | Extreme low-data evaluation |
|
| 23 |
+
| `geometry` | OOD | 350 | 50 | 100 | STL-surface geometry extrapolation |
|
| 24 |
+
| `high_drag` | OOD | 350 | 50 | 100 | High-drag extrapolation |
|
| 25 |
+
| `low_drag` | OOD | 350 | 50 | 100 | Low-drag extrapolation |
|
| 26 |
+
| `image_wake` | OOD | 350 | 50 | 100 | Image-derived wake extrapolation |
|
| 27 |
+
|
| 28 |
+
The data-efficiency training sets form a strict nested sequence:
|
| 29 |
+
|
| 30 |
+
`super_scarce_train ⊂ scarce_train ⊂ medium_train ⊂ full_train`
|
| 31 |
+
|
| 32 |
+
They use the same validation and test assignments. For every
|
| 33 |
+
out-of-distribution (OOD) family, validation is sampled from the training-side
|
| 34 |
+
population; the held-out extreme is reserved for final testing.
|
| 35 |
+
|
| 36 |
+
## Using the committed manifest
|
| 37 |
+
|
| 38 |
+
Normal benchmark use requires only the committed manifest. Regenerating the
|
| 39 |
+
splits is not required.
|
| 40 |
+
|
| 41 |
+
```python
|
| 42 |
+
import json
|
| 43 |
+
from pathlib import Path
|
| 44 |
+
|
| 45 |
+
manifest = json.loads(Path("splits/manifest.json").read_text())
|
| 46 |
+
|
| 47 |
+
train_ids = manifest["geometry_train"]
|
| 48 |
+
val_ids = manifest["geometry_val"]
|
| 49 |
+
test_ids = manifest["geometry_test"]
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
Change the `geometry` prefix to `full`, `medium`, `scarce`,
|
| 53 |
+
`super_scarce`, `high_drag`, `low_drag`, or `image_wake` to select another
|
| 54 |
+
family.
|
| 55 |
+
|
| 56 |
+
Download only the split package with:
|
| 57 |
+
|
| 58 |
+
```bash
|
| 59 |
+
hf download neashton/ahmedml \
|
| 60 |
+
--type dataset \
|
| 61 |
+
--include "splits/**" \
|
| 62 |
+
--local-dir ./ahmedml
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
Validation data may be used for model and hyperparameter selection. Test data
|
| 66 |
+
should be reserved for final evaluation and should not inform normalization,
|
| 67 |
+
feature design, or repeated visual inspection during development.
|
| 68 |
+
|
| 69 |
+
## Construction principles
|
| 70 |
+
|
| 71 |
+
1. **Stable public baseline.** The `full` family preserves the established
|
| 72 |
+
seed-42 AhmedML assignment used by
|
| 73 |
+
[Noether](https://github.com/Emmi-AI/noether/blob/main/src/noether/data/datasets/cfd/caeml/ahmedml/split.py).
|
| 74 |
+
2. **In-distribution validation.** OOD validation cases are selected from the
|
| 75 |
+
training-side population rather than the extreme test region.
|
| 76 |
+
3. **Nested data-efficiency subsets.** Smaller training sets are strict
|
| 77 |
+
subsets of larger sets, with validation and test held fixed.
|
| 78 |
+
4. **Direct geometry comparison.** The geometry OOD score is computed from STL
|
| 79 |
+
surfaces rather than inferred only from geometry parameters.
|
| 80 |
+
5. **Dataset-defined physical quantities.** Drag families use the published
|
| 81 |
+
constant-reference-area force table.
|
| 82 |
+
6. **Flow-structure information.** The image-wake family uses fixed `UxMean`
|
| 83 |
+
views rather than an integrated coefficient.
|
| 84 |
+
7. **Auditability.** The manifest is distributed with the derived metrics,
|
| 85 |
+
scripts, figures, LaTeX source, and PDF methods report used to document it.
|
| 86 |
+
|
| 87 |
+
## Split definitions
|
| 88 |
+
|
| 89 |
+
### `full`
|
| 90 |
+
|
| 91 |
+
The baseline is a seeded random partition over all 500 run identifiers. It
|
| 92 |
+
constructs `torch.randperm(500)` with seed 42, maps the result to identifiers
|
| 93 |
+
`1..500`, assigns 400 cases to training, 50 to validation, and 50 to testing,
|
| 94 |
+
then sorts each stored list numerically. The committed identifiers match
|
| 95 |
+
Noether's public `AhmedMLDefaultSplitIDs` assignment.
|
| 96 |
+
|
| 97 |
+
### `medium`, `scarce`, and `super_scarce`
|
| 98 |
+
|
| 99 |
+
These families retain `full_val` and `full_test` while reducing the training
|
| 100 |
+
population to 133, 67, and 11 cases. A greedy max-min procedure constructs one
|
| 101 |
+
nested ordering in standardized force/geometry feature space using `cd`, `cl`,
|
| 102 |
+
and the available aggregate geometry parameters.
|
| 103 |
+
|
| 104 |
+
`geo_parameters_all.csv` has no row for `run_500`. For this ordering only, its
|
| 105 |
+
geometry features are set to the corresponding column means. The treatment is
|
| 106 |
+
recorded in [`parameter_geometry_metrics.csv`](parameter_geometry_metrics.csv).
|
| 107 |
+
The force, geometry OOD, and image-wake definitions do not use this imputation.
|
| 108 |
+
|
| 109 |
+
### `geometry`
|
| 110 |
+
|
| 111 |
+
The geometry family uses [`chamfer_metrics.csv`](chamfer_metrics.csv). Each
|
| 112 |
+
`run_N/ahmed_N.stl` surface is sampled with 4,096 deterministic area-weighted
|
| 113 |
+
points. Point clouds remain in the shared dataset coordinate frame and are
|
| 114 |
+
scaled by the global median STL bounding-box diagonal. Pairwise surface
|
| 115 |
+
difference is measured with symmetric Chamfer RMS distance.
|
| 116 |
+
|
| 117 |
+
For each run, the OOD score is the mean distance to its ten nearest neighbouring
|
| 118 |
+
geometries. The 100 highest-scoring cases form `geometry_test`; 50 validation
|
| 119 |
+
cases are deterministically selected from the complementary population, leaving
|
| 120 |
+
350 training cases.
|
| 121 |
+
|
| 122 |
+
### `high_drag` and `low_drag`
|
| 123 |
+
|
| 124 |
+
These families rank all cases by `cd` from the root-level `force_mom_all.csv`,
|
| 125 |
+
which uses a constant reference area. `high_drag` holds out the largest 100
|
| 126 |
+
values, while `low_drag` holds out the smallest 100. Validation is sampled from
|
| 127 |
+
the complementary population in both cases.
|
| 128 |
+
|
| 129 |
+
### `image_wake`
|
| 130 |
+
|
| 131 |
+
The image-wake score uses four published `UxMean` PNGs for each run: the `Y-4`
|
| 132 |
+
centreline or near-centreline image and the near-base `X-14`, `X-15`, and `X-16`
|
| 133 |
+
cross-plane images. A fixed lower-flow-region colour/intensity measure is
|
| 134 |
+
computed for each image and combined across the centreline and near-base views.
|
| 135 |
+
The 100 largest scores form `image_wake_test`. All 500 committed scores are
|
| 136 |
+
direct observations.
|
| 137 |
+
|
| 138 |
+

|
| 139 |
+
|
| 140 |
+

|
| 141 |
+
|
| 142 |
+

|
| 143 |
+
|
| 144 |
+
## Reproducibility
|
| 145 |
+
|
| 146 |
+
The committed [`manifest.json`](manifest.json) is the source of truth. The
|
| 147 |
+
commands below are provided to audit or rebuild the artifacts. They were
|
| 148 |
+
prepared against AhmedML revision
|
| 149 |
+
`29135130ea70a842ad84ae2c90248d2ba70a7a69`.
|
| 150 |
+
|
| 151 |
+
Install the lightweight generation and plotting dependencies:
|
| 152 |
+
|
| 153 |
+
```bash
|
| 154 |
+
python3 -m pip install numpy matplotlib pillow
|
| 155 |
+
```
|
| 156 |
+
|
| 157 |
+
From the dataset repository root, download the aggregate source tables and
|
| 158 |
+
regenerate the manifest and diagnostic plot:
|
| 159 |
+
|
| 160 |
+
```bash
|
| 161 |
+
python3 splits/download_hf_inputs.py --output-dir data
|
| 162 |
+
python3 splits/generate_splits.py
|
| 163 |
+
python3 splits/visualize_splits.py
|
| 164 |
+
```
|
| 165 |
+
|
| 166 |
+
The commands above use the committed Chamfer and image metrics. To recompute
|
| 167 |
+
those metrics and recreate the example figures, keep large STL and PNG inputs
|
| 168 |
+
outside the repository:
|
| 169 |
+
|
| 170 |
+
```bash
|
| 171 |
+
ASSET_ROOT=../ahmedml_hf_assets
|
| 172 |
+
|
| 173 |
+
python3 splits/download_hf_inputs.py --output-dir "$ASSET_ROOT" \
|
| 174 |
+
--include-stls --include-wake-images --workers 6
|
| 175 |
+
|
| 176 |
+
python3 splits/compute_chamfer_splits.py --data-root "$ASSET_ROOT" \
|
| 177 |
+
--output-dir /tmp/ahmedml_chamfer_4096 --samples 4096 \
|
| 178 |
+
--workers 16 --sample-workers 2 --runs all \
|
| 179 |
+
--base-manifest splits/manifest.json
|
| 180 |
+
|
| 181 |
+
cp /tmp/ahmedml_chamfer_4096/chamfer_metrics.csv \
|
| 182 |
+
splits/chamfer_metrics.csv
|
| 183 |
+
|
| 184 |
+
python3 splits/compute_image_metrics.py --data-root "$ASSET_ROOT" \
|
| 185 |
+
--output splits/image_metrics.csv
|
| 186 |
+
|
| 187 |
+
AHMEDML_DATA_ROOT="$ASSET_ROOT" python3 splits/generate_splits.py
|
| 188 |
+
AHMEDML_DATA_ROOT="$ASSET_ROOT" python3 splits/visualize_splits.py
|
| 189 |
+
python3 splits/create_example_figures.py --asset-root "$ASSET_ROOT" \
|
| 190 |
+
--force-root "$ASSET_ROOT"
|
| 191 |
+
```
|
| 192 |
+
|
| 193 |
+
Full Chamfer recomputation additionally requires SciPy and trimesh:
|
| 194 |
+
|
| 195 |
+
```bash
|
| 196 |
+
python3 -m pip install scipy trimesh
|
| 197 |
+
```
|
| 198 |
+
|
| 199 |
+
Rebuild the PDF methods report with:
|
| 200 |
+
|
| 201 |
+
```bash
|
| 202 |
+
latexmk -pdf -cd splits/README.tex
|
| 203 |
+
```
|
| 204 |
+
|
| 205 |
+
The generated manifest remains a flat mapping such as:
|
| 206 |
+
|
| 207 |
+
```json
|
| 208 |
+
{
|
| 209 |
+
"full_train": ["run_1", "run_2"],
|
| 210 |
+
"full_val": ["run_24"],
|
| 211 |
+
"full_test": ["run_4"]
|
| 212 |
+
}
|
| 213 |
+
```
|
| 214 |
+
|
| 215 |
+
The shortened lists above illustrate the format only; use the committed
|
| 216 |
+
manifest for the complete assignments.
|
splits/README.pdf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c76c2a37fff6118d81a1310da4a24fc751d0ed6a5c5a688d615d219933d39721
|
| 3 |
+
size 1268353
|
splits/README.tex
ADDED
|
@@ -0,0 +1,317 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
\documentclass[10pt]{article}
|
| 2 |
+
|
| 3 |
+
\usepackage[margin=0.72in]{geometry}
|
| 4 |
+
\usepackage{booktabs}
|
| 5 |
+
\usepackage{caption}
|
| 6 |
+
\usepackage{enumitem}
|
| 7 |
+
\usepackage{float}
|
| 8 |
+
\usepackage[T1]{fontenc}
|
| 9 |
+
\usepackage{graphicx}
|
| 10 |
+
\usepackage{hyperref}
|
| 11 |
+
\usepackage{microtype}
|
| 12 |
+
\usepackage{tabularx}
|
| 13 |
+
\usepackage{xcolor}
|
| 14 |
+
|
| 15 |
+
\hypersetup{
|
| 16 |
+
colorlinks=true,
|
| 17 |
+
linkcolor=blue!55!black,
|
| 18 |
+
urlcolor=blue!55!black,
|
| 19 |
+
citecolor=blue!55!black
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
\setlength{\parindent}{0pt}
|
| 23 |
+
\setlength{\parskip}{0.55em}
|
| 24 |
+
\setlength{\emergencystretch}{2em}
|
| 25 |
+
\setlist[itemize]{leftmargin=1.35em, itemsep=0.22em, topsep=0.25em}
|
| 26 |
+
\captionsetup{font=small, labelfont=bf}
|
| 27 |
+
|
| 28 |
+
\newcommand{\code}[1]{\texttt{#1}}
|
| 29 |
+
\newcommand{\splitkey}[1]{\texttt{#1}}
|
| 30 |
+
|
| 31 |
+
\title{\vspace{-1.2em}\textbf{AhmedML Dataset Splits}}
|
| 32 |
+
\author{}
|
| 33 |
+
\date{}
|
| 34 |
+
|
| 35 |
+
\begin{document}
|
| 36 |
+
\maketitle
|
| 37 |
+
\vspace{-2.0em}
|
| 38 |
+
|
| 39 |
+
Deterministic train/validation/test splits for the
|
| 40 |
+
\href{https://huggingface.co/datasets/neashton/ahmedml}{AhmedML} dataset
|
| 41 |
+
\cite{ahmedml_dataset}. The split manifest is stored at
|
| 42 |
+
\code{splits/manifest.json} as a flat JSON object with keys named
|
| 43 |
+
\code{\{split\_name\}\_\{train,val,test\}} and case IDs that match the
|
| 44 |
+
on-disk run directories.
|
| 45 |
+
|
| 46 |
+
AhmedML contains 500 geometric variations of the Ahmed car body. The public
|
| 47 |
+
force/moment table contains all 500 runs. This split package intentionally does
|
| 48 |
+
not store the large per-run STL or PNG assets. The committed lightweight
|
| 49 |
+
artifacts are the manifest, derived Chamfer/image metrics, scripts, and
|
| 50 |
+
diagnostic figures; the aggregate source tables remain at the dataset root.
|
| 51 |
+
The geometry split is generated from STL-surface Chamfer scores in
|
| 52 |
+
\code{splits/chamfer\_metrics.csv}. The image-wake split is generated
|
| 53 |
+
from \code{UxMean} Y-4 centreline and near-base X-slice PNG scores in
|
| 54 |
+
\code{splits/image\_metrics.csv}. The geometry-parameter table contains 499 rows;
|
| 55 |
+
run 500 is absent from that file, so the generator mean-imputes its geometry
|
| 56 |
+
parameters only for the nested data-efficiency ordering and records this in
|
| 57 |
+
\code{splits/parameter\_geometry\_metrics.csv}.
|
| 58 |
+
|
| 59 |
+
\section*{Splits at a glance}
|
| 60 |
+
|
| 61 |
+
\begin{tabularx}{\textwidth}{@{}l l r r r X@{}}
|
| 62 |
+
\toprule
|
| 63 |
+
Split & Type & Train & Val & Test & What it tests \\
|
| 64 |
+
\midrule
|
| 65 |
+
\splitkey{full} & In-dist & 400 & 50 & 50 & Noether-compatible seed-42 random baseline split \\
|
| 66 |
+
\splitkey{medium} & In-dist & 133 & 50 & 50 & Data efficiency, 1/3 of \splitkey{full} training data \\
|
| 67 |
+
\splitkey{scarce} & In-dist & 67 & 50 & 50 & Data efficiency, 1/6 of \splitkey{full} training data \\
|
| 68 |
+
\splitkey{super\_scarce} & In-dist & 11 & 50 & 50 & Extreme data efficiency, 1/36 of \splitkey{full} training data \\
|
| 69 |
+
\splitkey{geometry} & OOD & 350 & 50 & 100 & STL-shape extrapolation using the top 20\% local Chamfer-isolation score \\
|
| 70 |
+
\splitkey{high\_drag} & OOD & 350 & 50 & 100 & High-drag extrapolation using the top 20\% \code{cd} \\
|
| 71 |
+
\splitkey{low\_drag} & OOD & 350 & 50 & 100 & Low-drag extrapolation using the bottom 20\% \code{cd} \\
|
| 72 |
+
\splitkey{image\_wake} & OOD & 350 & 50 & 100 & Image-derived wake extrapolation using the top 20\% \code{UxMean} Y-4 plus near-base X-slice score \\
|
| 73 |
+
\bottomrule
|
| 74 |
+
\end{tabularx}
|
| 75 |
+
|
| 76 |
+
\textbf{Difficulty ladders:}
|
| 77 |
+
\begin{itemize}
|
| 78 |
+
\item Data efficiency: \splitkey{full} < \splitkey{medium} < \splitkey{scarce} < \splitkey{super\_scarce}, with fixed validation/test sets.
|
| 79 |
+
\item OOD regimes: \splitkey{geometry}, \splitkey{high\_drag}, \splitkey{low\_drag}, and \splitkey{image\_wake}.
|
| 80 |
+
\end{itemize}
|
| 81 |
+
|
| 82 |
+
\section*{Which split should I use?}
|
| 83 |
+
|
| 84 |
+
\begin{itemize}
|
| 85 |
+
\item \textbf{Simple baseline or literature compatibility}: \splitkey{full}
|
| 86 |
+
\item \textbf{Data efficiency study}: compare \splitkey{super\_scarce}, \splitkey{scarce}, \splitkey{medium}, and \splitkey{full}
|
| 87 |
+
\item \textbf{Geometry extrapolation}: \splitkey{geometry}
|
| 88 |
+
\item \textbf{Targeted coefficient extrapolation}: \splitkey{high\_drag} or \splitkey{low\_drag}
|
| 89 |
+
\item \textbf{Image-derived wake extrapolation}: \splitkey{image\_wake}
|
| 90 |
+
\end{itemize}
|
| 91 |
+
|
| 92 |
+
\section*{Using the committed splits}
|
| 93 |
+
|
| 94 |
+
For standard benchmark use, consume the committed manifest at
|
| 95 |
+
\code{splits/manifest.json}; no regeneration is required. The manifest is the
|
| 96 |
+
source of truth for all split membership and contains one train, validation,
|
| 97 |
+
and test key for each split listed above.
|
| 98 |
+
|
| 99 |
+
\begin{verbatim}
|
| 100 |
+
import json
|
| 101 |
+
from pathlib import Path
|
| 102 |
+
|
| 103 |
+
manifest = json.loads(Path("splits/manifest.json").read_text())
|
| 104 |
+
|
| 105 |
+
train_ids = manifest["geometry_train"]
|
| 106 |
+
val_ids = manifest["geometry_val"]
|
| 107 |
+
test_ids = manifest["geometry_test"]
|
| 108 |
+
\end{verbatim}
|
| 109 |
+
|
| 110 |
+
Change the \code{geometry} prefix to \code{full}, \code{medium},
|
| 111 |
+
\code{scarce}, \code{super\_scarce}, \code{high\_drag}, \code{low\_drag}, or
|
| 112 |
+
\code{image\_wake} to select a different split. Each value is a sorted list of
|
| 113 |
+
\code{run\_N} directory names that match the dataset case folders.
|
| 114 |
+
|
| 115 |
+
\section*{Design principles}
|
| 116 |
+
|
| 117 |
+
\begin{itemize}
|
| 118 |
+
\item \textbf{Validation is always in-distribution with train.} For OOD splits, validation is drawn from the training-side population, not from the held-out extreme test region.
|
| 119 |
+
\item \textbf{Keep the public baseline stable.} \splitkey{full} matches Noether's AhmedML seed-42 split: 400 train, 50 validation, and 50 test.
|
| 120 |
+
\item \textbf{Use the source data for each regime.} Drag-regime splits use \code{force\_mom\_all.csv}; geometry-regime splits use externally downloaded STL files and \code{splits/chamfer\_metrics.csv}; image-regime splits use externally downloaded \code{UxMean} PNG files and \code{splits/image\_metrics.csv}.
|
| 121 |
+
\item \textbf{Nested data-efficiency subsets.} \splitkey{super\_scarce\_train} is a strict subset of \splitkey{scarce\_train}, \splitkey{scarce\_train} is a strict subset of \splitkey{medium\_train}, and \splitkey{medium\_train} is a strict subset of \splitkey{full\_train}.
|
| 122 |
+
\item \textbf{Test set integrity.} Test cases should not be used for hyperparameter tuning, model selection, normalization fitting, or visual inspection-driven iteration.
|
| 123 |
+
\end{itemize}
|
| 124 |
+
|
| 125 |
+
\section*{Split details}
|
| 126 |
+
|
| 127 |
+
\subsection*{\splitkey{full}}
|
| 128 |
+
|
| 129 |
+
The default public split is a seeded random split over all 500 run IDs, not a
|
| 130 |
+
physics-stratified split. It constructs \code{torch.randperm(500)} with seed
|
| 131 |
+
42, shifts the IDs to \code{1..500}, then assigns the first 400 IDs to train,
|
| 132 |
+
the next 50 to validation, and the final 50 to test. The case IDs are sorted
|
| 133 |
+
before being stored in the manifest. These IDs match the public
|
| 134 |
+
\href{https://github.com/Emmi-AI/noether/blob/main/src/noether/data/datasets/cfd/caeml/ahmedml/split.py}{AhmedMLDefaultSplitIDs}
|
| 135 |
+
implementation in Noether \cite{noether_split}.
|
| 136 |
+
|
| 137 |
+
\subsection*{\splitkey{medium}, \splitkey{scarce}, and \splitkey{super\_scarce}}
|
| 138 |
+
|
| 139 |
+
Same validation/test as \splitkey{full}, but the training set is a nested
|
| 140 |
+
force- and geometry-diverse subset of \splitkey{full\_train}: 133 cases for
|
| 141 |
+
\splitkey{medium}, 67 cases for \splitkey{scarce}, and 11 cases for
|
| 142 |
+
\splitkey{super\_scarce}. The subset order is a greedy max-min selection in
|
| 143 |
+
standardized force/geometry feature space using \code{cd}, \code{cl}, and all
|
| 144 |
+
available geometry parameters.
|
| 145 |
+
|
| 146 |
+
\subsection*{\splitkey{geometry}}
|
| 147 |
+
|
| 148 |
+
The geometry split is an STL-surface OOD split. Each \code{run\_N/ahmed\_N.stl}
|
| 149 |
+
is sampled with 4096 deterministic area-weighted surface points. The sampled
|
| 150 |
+
point clouds are compared using symmetric Chamfer RMS distance after scaling by
|
| 151 |
+
the global median STL bounding-box diagonal. The geometry score is the mean
|
| 152 |
+
Chamfer distance to the 10 nearest neighboring runs:
|
| 153 |
+
|
| 154 |
+
\begin{verbatim}
|
| 155 |
+
geometry_score_i = mean_10_nearest_neighbors(chamfer_distance_i)
|
| 156 |
+
\end{verbatim}
|
| 157 |
+
|
| 158 |
+
The top 20\% of runs by this local-isolation score form the OOD test set.
|
| 159 |
+
Validation is sampled from the remaining training-side pool:
|
| 160 |
+
|
| 161 |
+
\begin{verbatim}
|
| 162 |
+
geometry_test = top_20_percent_i(geometry_score_i)
|
| 163 |
+
geometry_pool = all_runs - geometry_test
|
| 164 |
+
geometry_val = deterministic_random_sample(geometry_pool, round(0.125 * |geometry_pool|))
|
| 165 |
+
geometry_train = geometry_pool - geometry_val
|
| 166 |
+
\end{verbatim}
|
| 167 |
+
|
| 168 |
+
In the current metrics, the most locally isolated STL cases include
|
| 169 |
+
\splitkey{run\_52}, \splitkey{run\_153}, \splitkey{run\_244},
|
| 170 |
+
\splitkey{run\_480}, \splitkey{run\_410}, \splitkey{run\_96},
|
| 171 |
+
\splitkey{run\_431}, and \splitkey{run\_91}. Figure~\ref{fig:diagnostics}
|
| 172 |
+
shows the geometry split against the Chamfer score used to define the holdout.
|
| 173 |
+
Figure~\ref{fig:geometry_examples} shows a low-score and high-score geometry
|
| 174 |
+
example, with both STLs projected in the same coordinate frame.
|
| 175 |
+
|
| 176 |
+
\begin{figure}[H]
|
| 177 |
+
\centering
|
| 178 |
+
\includegraphics[width=0.96\textwidth]{geometry_score_examples.png}
|
| 179 |
+
\caption{Geometry-score examples for \splitkey{geometry}. The low-score case is \splitkey{run\_71} with Chamfer score 0.010996, \code{Cd}=0.2846, and \code{Cl}=0.4048. The high-score case is \splitkey{run\_52} with Chamfer score 0.018450, \code{Cd}=0.4319, and \code{Cl}=0.0288. The lower panels overlay the low-score and high-score STL vertex projections in a common coordinate frame.}
|
| 180 |
+
\label{fig:geometry_examples}
|
| 181 |
+
\end{figure}
|
| 182 |
+
|
| 183 |
+
\subsection*{\splitkey{high\_drag} and \splitkey{low\_drag}}
|
| 184 |
+
|
| 185 |
+
Both splits sort all 500 cases by drag coefficient \code{cd}.
|
| 186 |
+
\splitkey{high\_drag} holds out the top 20\% by \code{cd};
|
| 187 |
+
\splitkey{low\_drag} holds out the bottom 20\% by \code{cd}. In both cases,
|
| 188 |
+
train/validation are sampled from the complementary 80\% so validation remains
|
| 189 |
+
in-distribution with training. Figure~\ref{fig:diagnostics} shows these
|
| 190 |
+
holdouts across run IDs.
|
| 191 |
+
|
| 192 |
+
In the current CSV, the highest-drag runs include \splitkey{run\_362},
|
| 193 |
+
\splitkey{run\_205}, \splitkey{run\_284}, \splitkey{run\_280}, and
|
| 194 |
+
\splitkey{run\_315}. The lowest-drag runs include \splitkey{run\_390},
|
| 195 |
+
\splitkey{run\_238}, \splitkey{run\_122}, \splitkey{run\_117}, and
|
| 196 |
+
\splitkey{run\_10}.
|
| 197 |
+
|
| 198 |
+
\subsection*{\splitkey{image\_wake}}
|
| 199 |
+
|
| 200 |
+
The image-wake split is computed from downloaded \code{UxMean} PNGs under an
|
| 201 |
+
external asset directory with \code{run\_N/images/UxMean} subfolders. Each run contributes the \code{Y-4}
|
| 202 |
+
centreline/near-centreline side image plus three near-base cross-plane images:
|
| 203 |
+
\code{X-14}, \code{X-15}, and \code{X-16}. For each image, the script scores
|
| 204 |
+
the lower flow region using a reproducible color-intensity measure, then
|
| 205 |
+
combines the \code{Y-4} score with the mean near-base X score. The top 20\% of
|
| 206 |
+
runs by this image score form the OOD test set, and validation is sampled from
|
| 207 |
+
the complementary training-side pool. Figure~\ref{fig:diagnostics} shows both
|
| 208 |
+
the score used to define \splitkey{image\_wake} and the same split colored on
|
| 209 |
+
drag coefficient.
|
| 210 |
+
|
| 211 |
+
In the current metrics, the highest image-wake scores include
|
| 212 |
+
\splitkey{run\_280}, \splitkey{run\_205}, \splitkey{run\_284},
|
| 213 |
+
\splitkey{run\_309}, \splitkey{run\_315}, \splitkey{run\_362},
|
| 214 |
+
\splitkey{run\_171}, and \splitkey{run\_295}.
|
| 215 |
+
Figure~\ref{fig:wake_examples} compares the lowest and highest image-wake
|
| 216 |
+
score cases using the \code{Y-4} centreline image and a nearer-base \code{X-14}
|
| 217 |
+
image from the same PNG source used by the score.
|
| 218 |
+
|
| 219 |
+
\begin{figure}[H]
|
| 220 |
+
\centering
|
| 221 |
+
\includegraphics[width=0.96\textwidth]{wake_score_examples.png}
|
| 222 |
+
\caption{Image-wake examples for \splitkey{image\_wake}. The low-score case is \splitkey{run\_318} with image score 0.3353, \code{Cd}=0.3871, and \code{Cl}=-0.2007. The high-score case is \splitkey{run\_280} with image score 0.3889, \code{Cd}=0.4921, and \code{Cl}=0.7001. The top row shows \code{Y-4}, which captures the centreline wake, and the bottom row shows the nearer-base \code{X-14} slice.}
|
| 223 |
+
\label{fig:wake_examples}
|
| 224 |
+
\end{figure}
|
| 225 |
+
|
| 226 |
+
\begin{figure}[H]
|
| 227 |
+
\centering
|
| 228 |
+
\includegraphics[width=0.96\textwidth]{split_diagnostics.png}
|
| 229 |
+
\caption{AhmedML split diagnostics. The panels show the full random baseline, high-drag holdout, low-drag holdout, STL-Chamfer geometry holdout, image-wake holdout, and image-wake split colored on \code{Cd}. The x-axis is run ID, and points are colored by each split's train, validation, and test partitions.}
|
| 230 |
+
\label{fig:diagnostics}
|
| 231 |
+
\end{figure}
|
| 232 |
+
|
| 233 |
+
\section*{Repeatability and transparency}
|
| 234 |
+
|
| 235 |
+
The committed manifest is intended for normal use. The commands below are for
|
| 236 |
+
auditing the split construction, recreating the figures, or refreshing the
|
| 237 |
+
artifacts after changing the source data.
|
| 238 |
+
|
| 239 |
+
From a clean split-package checkout, download \code{force\_mom\_all.csv},
|
| 240 |
+
\code{geo\_parameters\_all.csv}, STLs, and the \code{UxMean} PNGs needed for
|
| 241 |
+
the image-wake split into a directory outside this repository, then regenerate
|
| 242 |
+
the metrics, manifest, and diagnostic plot:
|
| 243 |
+
|
| 244 |
+
\begin{verbatim}
|
| 245 |
+
ASSET_ROOT=../ahmedml_hf_assets
|
| 246 |
+
|
| 247 |
+
python3 splits/download_hf_inputs.py --output-dir "$ASSET_ROOT" \
|
| 248 |
+
--include-stls --include-wake-images --workers 6
|
| 249 |
+
python3 splits/compute_chamfer_splits.py --data-root "$ASSET_ROOT" \
|
| 250 |
+
--output-dir /tmp/ahmedml_chamfer_4096 --samples 4096 \
|
| 251 |
+
--workers 16 --sample-workers 2 --runs all \
|
| 252 |
+
--base-manifest splits/manifest.json
|
| 253 |
+
cp /tmp/ahmedml_chamfer_4096/chamfer_metrics.csv \
|
| 254 |
+
splits/chamfer_metrics.csv
|
| 255 |
+
python3 splits/compute_image_metrics.py --data-root "$ASSET_ROOT" \
|
| 256 |
+
--output splits/image_metrics.csv
|
| 257 |
+
AHMEDML_DATA_ROOT="$ASSET_ROOT" python3 splits/generate_splits.py
|
| 258 |
+
AHMEDML_DATA_ROOT="$ASSET_ROOT" python3 splits/visualize_splits.py
|
| 259 |
+
python3 splits/create_example_figures.py --asset-root "$ASSET_ROOT" \
|
| 260 |
+
--force-root "$ASSET_ROOT"
|
| 261 |
+
\end{verbatim}
|
| 262 |
+
|
| 263 |
+
Full report regeneration then uses:
|
| 264 |
+
|
| 265 |
+
\begin{verbatim}
|
| 266 |
+
latexmk -pdf -cd splits/README.tex
|
| 267 |
+
\end{verbatim}
|
| 268 |
+
|
| 269 |
+
For an existing dataset checkout, set \code{AHMEDML\_DATA\_ROOT} to the
|
| 270 |
+
directory containing \code{force\_mom\_all.csv} and
|
| 271 |
+
\code{geo\_parameters\_all.csv}. Set \code{AHMEDML\_ASSET\_ROOT}, or pass
|
| 272 |
+
\code{--asset-root}, to the directory containing the \code{run\_*/} STL and
|
| 273 |
+
PNG assets. Large reconstruction inputs should remain outside the repository.
|
| 274 |
+
The split directory contains only lightweight derived artifacts.
|
| 275 |
+
|
| 276 |
+
The committed source artifacts were generated against:
|
| 277 |
+
|
| 278 |
+
\begin{verbatim}
|
| 279 |
+
force_mom_all.csv
|
| 280 |
+
geo_parameters_all.csv
|
| 281 |
+
<asset-root>/run_*/ahmed_*.stl
|
| 282 |
+
<asset-root>/run_*/images/UxMean/*.png
|
| 283 |
+
splits/chamfer_metrics.csv
|
| 284 |
+
splits/image_metrics.csv
|
| 285 |
+
splits/parameter_geometry_metrics.csv
|
| 286 |
+
splits/geometry_score_examples.png
|
| 287 |
+
splits/wake_score_examples.png
|
| 288 |
+
splits/manifest.json
|
| 289 |
+
\end{verbatim}
|
| 290 |
+
|
| 291 |
+
\section*{Manifest format}
|
| 292 |
+
|
| 293 |
+
\begin{verbatim}
|
| 294 |
+
{
|
| 295 |
+
"full_train": ["run_1", "run_2", "..."],
|
| 296 |
+
"full_val": ["run_24", "..."],
|
| 297 |
+
"full_test": ["run_4", "..."],
|
| 298 |
+
"scarce_train": ["run_10", "..."]
|
| 299 |
+
}
|
| 300 |
+
\end{verbatim}
|
| 301 |
+
|
| 302 |
+
Case IDs match on-disk directory names and are sorted numerically by run number.
|
| 303 |
+
|
| 304 |
+
{\small
|
| 305 |
+
\begin{thebibliography}{9}
|
| 306 |
+
\bibitem{ahmedml_dataset}
|
| 307 |
+
AhmedML dataset. \url{https://huggingface.co/datasets/neashton/ahmedml}.
|
| 308 |
+
|
| 309 |
+
\bibitem{ahmedml_paper}
|
| 310 |
+
AhmedML paper. \url{https://arxiv.org/abs/2407.20801}.
|
| 311 |
+
|
| 312 |
+
\bibitem{noether_split}
|
| 313 |
+
Noether AhmedML split. \url{https://github.com/Emmi-AI/noether/blob/main/src/noether/data/datasets/cfd/caeml/ahmedml/split.py}.
|
| 314 |
+
\end{thebibliography}
|
| 315 |
+
}
|
| 316 |
+
|
| 317 |
+
\end{document}
|
splits/chamfer_metrics.csv
ADDED
|
@@ -0,0 +1,501 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
run,nearest_neighbor_chamfer,mean_10_nn_chamfer,mean_all_chamfer,medoid_chamfer,medoid_run,ood_score
|
| 2 |
+
1,0.010357541032135487,0.013690590858459473,0.04865063726902008,0.041591912508010864,169,0.013690590858459473
|
| 3 |
+
2,0.010572250001132488,0.01343235932290554,0.03794974461197853,0.029901612550020218,169,0.01343235932290554
|
| 4 |
+
3,0.010504302568733692,0.012163753621280193,0.037171244621276855,0.022878078743815422,169,0.012163753621280193
|
| 5 |
+
4,0.010876658372581005,0.013760733418166637,0.03628207743167877,0.025077423080801964,169,0.013760733418166637
|
| 6 |
+
5,0.010261986404657364,0.012191282585263252,0.04276628792285919,0.030164038762450218,169,0.012191282585263252
|
| 7 |
+
6,0.010317728854715824,0.0132074523717165,0.038106419146060944,0.023702824488282204,169,0.0132074523717165
|
| 8 |
+
7,0.010882643051445484,0.01363408099859953,0.03732367604970932,0.024635054171085358,169,0.01363408099859953
|
| 9 |
+
8,0.012281513772904873,0.01408781111240387,0.051625486463308334,0.048639047890901566,169,0.01408781111240387
|
| 10 |
+
9,0.010721694678068161,0.014059314504265785,0.037872955203056335,0.028307748958468437,169,0.014059314504265785
|
| 11 |
+
10,0.010494369082152843,0.012107549235224724,0.04571130499243736,0.03461304306983948,169,0.012107549235224724
|
| 12 |
+
11,0.012996241450309753,0.01513952948153019,0.05261416733264923,0.04217882454395294,169,0.01513952948153019
|
| 13 |
+
12,0.013580425642430782,0.015355152077972889,0.05337259918451309,0.04756633937358856,169,0.015355152077972889
|
| 14 |
+
13,0.0105053149163723,0.012279432266950607,0.03849048539996147,0.024683142080903053,169,0.012279432266950607
|
| 15 |
+
14,0.01269200723618269,0.01443398930132389,0.043210823088884354,0.03342215344309807,169,0.01443398930132389
|
| 16 |
+
15,0.011775338090956211,0.012955335900187492,0.04627624526619911,0.041541747748851776,169,0.012955335900187492
|
| 17 |
+
16,0.01204174105077982,0.013836881145834923,0.0331878699362278,0.015999268740415573,169,0.013836881145834923
|
| 18 |
+
17,0.0135778384283185,0.014551326632499695,0.05271439254283905,0.0488915741443634,169,0.014551326632499695
|
| 19 |
+
18,0.01009734719991684,0.013269489631056786,0.04005815088748932,0.028368905186653137,169,0.013269489631056786
|
| 20 |
+
19,0.011944156140089035,0.013226459734141827,0.043656084686517715,0.034411072731018066,169,0.013226459734141827
|
| 21 |
+
20,0.008670798502862453,0.01183275319635868,0.04752139747142792,0.03644845634698868,169,0.01183275319635868
|
| 22 |
+
21,0.011288318783044815,0.012375659309327602,0.04465587064623833,0.03644150495529175,169,0.012375659309327602
|
| 23 |
+
22,0.01161975972354412,0.014294112101197243,0.052143555134534836,0.04341302439570427,169,0.014294112101197243
|
| 24 |
+
23,0.01237957552075386,0.013178272172808647,0.033675894141197205,0.02162639982998371,169,0.013178272172808647
|
| 25 |
+
24,0.012088504619896412,0.013226171024143696,0.03498808294534683,0.017937999218702316,169,0.013226171024143696
|
| 26 |
+
25,0.011386222206056118,0.014233790338039398,0.03792916238307953,0.028757574036717415,169,0.014233790338039398
|
| 27 |
+
26,0.011593397706747055,0.01263403333723545,0.03614781051874161,0.026515241712331772,169,0.01263403333723545
|
| 28 |
+
27,0.011937460862100124,0.013041362166404724,0.03602125123143196,0.021866142749786377,169,0.013041362166404724
|
| 29 |
+
28,0.011014118790626526,0.012982293963432312,0.039214491844177246,0.0297342948615551,169,0.012982293963432312
|
| 30 |
+
29,0.011058664880692959,0.012772219255566597,0.031558580696582794,0.016012709587812424,169,0.012772219255566597
|
| 31 |
+
30,0.009448019787669182,0.013106688857078552,0.04876336827874184,0.0371667742729187,169,0.013106688857078552
|
| 32 |
+
31,0.011207286268472672,0.013107895851135254,0.03260891139507294,0.017815928906202316,169,0.013107895851135254
|
| 33 |
+
32,0.01158224418759346,0.013211511075496674,0.04152649641036987,0.028362911194562912,169,0.013211511075496674
|
| 34 |
+
33,0.010825266130268574,0.012831151485443115,0.0444299541413784,0.03455822914838791,169,0.012831151485443115
|
| 35 |
+
34,0.01304931752383709,0.014198176562786102,0.04586717113852501,0.03888543322682381,169,0.014198176562786102
|
| 36 |
+
35,0.010504302568733692,0.012299222871661186,0.036144278943538666,0.02077951282262802,169,0.012299222871661186
|
| 37 |
+
36,0.008670798502862453,0.01176187302917242,0.04794199764728546,0.03677923232316971,169,0.01176187302917242
|
| 38 |
+
37,0.010840436443686485,0.012705137953162193,0.033628467470407486,0.0189947709441185,169,0.012705137953162193
|
| 39 |
+
38,0.012929731979966164,0.015548719093203545,0.045399293303489685,0.04049326106905937,169,0.015548719093203545
|
| 40 |
+
39,0.011465747840702534,0.013341772370040417,0.03276221454143524,0.02040562406182289,169,0.013341772370040417
|
| 41 |
+
40,0.011984668672084808,0.013245761394500732,0.04245888814330101,0.03140959143638611,169,0.013245761394500732
|
| 42 |
+
41,0.010640677064657211,0.013269199058413506,0.03302765637636185,0.019320117309689522,169,0.013269199058413506
|
| 43 |
+
42,0.012296306900680065,0.013638103380799294,0.033628910779953,0.021866878494620323,169,0.013638103380799294
|
| 44 |
+
43,0.010353878140449524,0.011631451547145844,0.05218033865094185,0.0411733016371727,169,0.011631451547145844
|
| 45 |
+
44,0.010414063930511475,0.013264410197734833,0.03247341141104698,0.01936945505440235,169,0.013264410197734833
|
| 46 |
+
45,0.009908991865813732,0.011614302173256874,0.04611575976014137,0.03783326968550682,169,0.011614302173256874
|
| 47 |
+
46,0.01060036476701498,0.012924512848258018,0.03914544731378555,0.02927315980195999,169,0.012924512848258018
|
| 48 |
+
47,0.011697300709784031,0.013774638064205647,0.04154588282108307,0.028770368546247482,169,0.013774638064205647
|
| 49 |
+
48,0.010871578939259052,0.011911588720977306,0.04977167770266533,0.03849468752741814,169,0.011911588720977306
|
| 50 |
+
49,0.011416839435696602,0.013558918610215187,0.033581025898456573,0.016955574974417686,169,0.013558918610215187
|
| 51 |
+
50,0.013092942535877228,0.014531808905303478,0.05154316499829292,0.04892740026116371,169,0.014531808905303478
|
| 52 |
+
51,0.012127816677093506,0.014281360432505608,0.0461912676692009,0.03805425763130188,169,0.014281360432505608
|
| 53 |
+
52,0.0153756532818079,0.018450217321515083,0.05257749930024147,0.04406584054231644,169,0.018450217321515083
|
| 54 |
+
53,0.01052606850862503,0.013883814215660095,0.03767555207014084,0.02358272112905979,169,0.013883814215660095
|
| 55 |
+
54,0.014489120803773403,0.01624922826886177,0.05832618474960327,0.05610630288720131,169,0.01624922826886177
|
| 56 |
+
55,0.01131670642644167,0.014787177555263042,0.04689197614789009,0.03541342914104462,169,0.014787177555263042
|
| 57 |
+
56,0.011664236895740032,0.014596186578273773,0.03776883706450462,0.023870833218097687,169,0.014596186578273773
|
| 58 |
+
57,0.01068926602602005,0.012761947698891163,0.033345483243465424,0.019629035145044327,169,0.012761947698891163
|
| 59 |
+
58,0.010844903998076916,0.013804329559206963,0.03768566995859146,0.028450194746255875,169,0.013804329559206963
|
| 60 |
+
59,0.01230448205024004,0.014481755904853344,0.04620562493801117,0.04204600676894188,169,0.014481755904853344
|
| 61 |
+
60,0.013804234564304352,0.01571488007903099,0.04984140396118164,0.046769287437200546,169,0.01571488007903099
|
| 62 |
+
61,0.013420493341982365,0.014750729314982891,0.03528792783617973,0.022745948284864426,169,0.014750729314982891
|
| 63 |
+
62,0.010008202865719795,0.014413413591682911,0.03926493227481842,0.028023121878504753,169,0.014413413591682911
|
| 64 |
+
63,0.013189896941184998,0.0159463994204998,0.04469246417284012,0.03353248909115791,169,0.0159463994204998
|
| 65 |
+
64,0.01202941033989191,0.013417975977063179,0.04617421701550484,0.04235498234629631,169,0.013417975977063179
|
| 66 |
+
65,0.013628000393509865,0.01529519073665142,0.04180057346820831,0.03489040210843086,169,0.01529519073665142
|
| 67 |
+
66,0.01146139856427908,0.013638284988701344,0.04044078290462494,0.029659828171133995,169,0.013638284988701344
|
| 68 |
+
67,0.012673024088144302,0.013638140633702278,0.03510800004005432,0.019506491720676422,169,0.013638140633702278
|
| 69 |
+
68,0.010334083810448647,0.013120383024215698,0.034227512776851654,0.018188098445534706,169,0.013120383024215698
|
| 70 |
+
69,0.01121639832854271,0.01239126455038786,0.04262060672044754,0.030516376718878746,169,0.01239126455038786
|
| 71 |
+
70,0.011909627355635166,0.013376638293266296,0.03207401931285858,0.016526056453585625,169,0.013376638293266296
|
| 72 |
+
71,0.009886077605187893,0.010995633900165558,0.040852680802345276,0.028874173760414124,169,0.010995633900165558
|
| 73 |
+
72,0.012350335717201233,0.013219550251960754,0.04106033220887184,0.03495529666543007,169,0.013219550251960754
|
| 74 |
+
73,0.01166579220443964,0.013555760495364666,0.032679907977581024,0.014466953463852406,169,0.013555760495364666
|
| 75 |
+
74,0.012409050017595291,0.01435908954590559,0.03573538735508919,0.02096012979745865,169,0.01435908954590559
|
| 76 |
+
75,0.012423854321241379,0.014121102169156075,0.04910758510231972,0.04462150111794472,169,0.014121102169156075
|
| 77 |
+
76,0.010733268223702908,0.01399337686598301,0.03870641440153122,0.024843085557222366,169,0.01399337686598301
|
| 78 |
+
77,0.012551328167319298,0.014366689138114452,0.04228929802775383,0.034665945917367935,169,0.014366689138114452
|
| 79 |
+
78,0.01060737669467926,0.013147721998393536,0.05095382779836655,0.04326262325048447,169,0.013147721998393536
|
| 80 |
+
79,0.01148789469152689,0.013093968853354454,0.033699095249176025,0.01663936860859394,169,0.013093968853354454
|
| 81 |
+
80,0.011426065117120743,0.01334718894213438,0.03650535270571709,0.02748291566967964,169,0.01334718894213438
|
| 82 |
+
81,0.009900936856865883,0.013265612535178661,0.04821401089429855,0.03683061897754669,169,0.013265612535178661
|
| 83 |
+
82,0.009966660290956497,0.013194538652896881,0.050037894397974014,0.03987065702676773,169,0.013194538652896881
|
| 84 |
+
83,0.010662689805030823,0.0127017293125391,0.04164646565914154,0.030833769589662552,169,0.0127017293125391
|
| 85 |
+
84,0.0093757975846529,0.012615008279681206,0.04807910695672035,0.03666431084275246,169,0.012615008279681206
|
| 86 |
+
85,0.010912708938121796,0.013369726948440075,0.041920870542526245,0.03141314908862114,169,0.013369726948440075
|
| 87 |
+
86,0.012249528430402279,0.013400924392044544,0.035127848386764526,0.022340185940265656,169,0.013400924392044544
|
| 88 |
+
87,0.011106611229479313,0.012902927584946156,0.04596449062228203,0.04080753028392792,169,0.012902927584946156
|
| 89 |
+
88,0.011770924553275108,0.012861068360507488,0.037088971585035324,0.026686634868383408,169,0.012861068360507488
|
| 90 |
+
89,0.00986604206264019,0.011088532395660877,0.0389346107840538,0.02632840909063816,169,0.011088532395660877
|
| 91 |
+
90,0.011495009064674377,0.013715717010200024,0.04029598832130432,0.02929885871708393,169,0.013715717010200024
|
| 92 |
+
91,0.015154455788433552,0.01645401492714882,0.049716390669345856,0.04483016952872276,169,0.01645401492714882
|
| 93 |
+
92,0.012690131552517414,0.015601078979671001,0.03642088547348976,0.022994497790932655,169,0.015601078979671001
|
| 94 |
+
93,0.010127785615622997,0.013854896649718285,0.05737109109759331,0.04727990925312042,169,0.013854896649718285
|
| 95 |
+
94,0.011426065117120743,0.0134203489869833,0.03795648738741875,0.030324328690767288,169,0.0134203489869833
|
| 96 |
+
95,0.0093757975846529,0.012697160243988037,0.045601826161146164,0.033690761774778366,169,0.012697160243988037
|
| 97 |
+
96,0.011923435144126415,0.016629505902528763,0.056065432727336884,0.047692399471998215,169,0.016629505902528763
|
| 98 |
+
97,0.011058664880692959,0.01329448539763689,0.032006919384002686,0.016896458342671394,169,0.01329448539763689
|
| 99 |
+
98,0.01138075441122055,0.015385940670967102,0.05146330967545509,0.04310939460992813,169,0.015385940670967102
|
| 100 |
+
99,0.013045013882219791,0.013653993606567383,0.03851466253399849,0.026293626055121422,169,0.013653993606567383
|
| 101 |
+
100,0.012302204966545105,0.014130542986094952,0.035762690007686615,0.022860191762447357,169,0.014130542986094952
|
| 102 |
+
101,0.011945460923016071,0.014006802812218666,0.037765637040138245,0.02936636470258236,169,0.014006802812218666
|
| 103 |
+
102,0.011421266943216324,0.013197961263358593,0.03592289984226227,0.024019083008170128,169,0.013197961263358593
|
| 104 |
+
103,0.010169126093387604,0.012749174609780312,0.03907473757863045,0.025423632934689522,169,0.012749174609780312
|
| 105 |
+
104,0.013960035517811775,0.01524632703512907,0.0428694486618042,0.03195544332265854,169,0.01524632703512907
|
| 106 |
+
105,0.011309154331684113,0.013272625394165516,0.04414605349302292,0.03513475880026817,169,0.013272625394165516
|
| 107 |
+
106,0.012887483462691307,0.014263750985264778,0.038466136902570724,0.02893574722111225,169,0.014263750985264778
|
| 108 |
+
107,0.010418248362839222,0.0132241640239954,0.03534715250134468,0.0219224002212286,169,0.0132241640239954
|
| 109 |
+
108,0.0104298647493124,0.012546275742352009,0.040524281561374664,0.02821986749768257,169,0.012546275742352009
|
| 110 |
+
109,0.012536444701254368,0.01516571082174778,0.04296722635626793,0.038234226405620575,169,0.01516571082174778
|
| 111 |
+
110,0.011395121924579144,0.013311405666172504,0.051051679998636246,0.04025038704276085,169,0.013311405666172504
|
| 112 |
+
111,0.011449193581938744,0.012998444959521294,0.04522872343659401,0.03472425043582916,169,0.012998444959521294
|
| 113 |
+
112,0.01023749727755785,0.013374252244830132,0.04694291576743126,0.039650995284318924,169,0.013374252244830132
|
| 114 |
+
113,0.010959742590785027,0.012853287160396576,0.03630496934056282,0.027408868074417114,169,0.012853287160396576
|
| 115 |
+
114,0.009379418566823006,0.011747343465685844,0.03851553052663803,0.02557600662112236,169,0.011747343465685844
|
| 116 |
+
115,0.011733079329133034,0.014642896130681038,0.043246395885944366,0.03311732038855553,169,0.014642896130681038
|
| 117 |
+
116,0.009472950361669064,0.011532251723110676,0.05319765955209732,0.04259821027517319,169,0.011532251723110676
|
| 118 |
+
117,0.010769214481115341,0.013947260566055775,0.039033327251672745,0.025379430502653122,169,0.013947260566055775
|
| 119 |
+
118,0.010147248394787312,0.014274662360548973,0.03791704773902893,0.02775842696428299,169,0.014274662360548973
|
| 120 |
+
119,0.0116241704672575,0.01297819148749113,0.03310256078839302,0.01670643500983715,169,0.01297819148749113
|
| 121 |
+
120,0.012180589139461517,0.013908512890338898,0.05003681778907776,0.04666405916213989,169,0.013908512890338898
|
| 122 |
+
121,0.009688323363661766,0.011229127645492554,0.0555601567029953,0.044923458248376846,169,0.011229127645492554
|
| 123 |
+
122,0.011216823942959309,0.01337288785725832,0.05122964084148407,0.04427093639969826,169,0.01337288785725832
|
| 124 |
+
123,0.010497553274035454,0.01319989562034607,0.04904099926352501,0.03820788487792015,169,0.01319989562034607
|
| 125 |
+
124,0.011543292552232742,0.013738933019340038,0.035421013832092285,0.019722042605280876,169,0.013738933019340038
|
| 126 |
+
125,0.012112629599869251,0.013487784191966057,0.033748809248209,0.017572980374097824,169,0.013487784191966057
|
| 127 |
+
126,0.009981540963053703,0.013028053566813469,0.0378197506070137,0.025524163618683815,169,0.013028053566813469
|
| 128 |
+
127,0.010737120173871517,0.01280774176120758,0.03183222934603691,0.01633126102387905,169,0.01280774176120758
|
| 129 |
+
128,0.01081155240535736,0.012716777622699738,0.04658561199903488,0.039348237216472626,169,0.012716777622699738
|
| 130 |
+
129,0.011384904384613037,0.013501519337296486,0.04408008232712746,0.03414246067404747,169,0.013501519337296486
|
| 131 |
+
130,0.012546095997095108,0.014109174720942974,0.04149055480957031,0.03058960847556591,169,0.014109174720942974
|
| 132 |
+
131,0.010902199894189835,0.013576202094554901,0.033703405410051346,0.018634911626577377,169,0.013576202094554901
|
| 133 |
+
132,0.01020148303359747,0.014086559414863586,0.04268839582800865,0.03205270692706108,169,0.014086559414863586
|
| 134 |
+
133,0.00999896414577961,0.01319984532892704,0.04648995399475098,0.035612281411886215,169,0.01319984532892704
|
| 135 |
+
134,0.010713523253798485,0.012850928120315075,0.033944107592105865,0.020060069859027863,169,0.012850928120315075
|
| 136 |
+
135,0.014568226411938667,0.016313280910253525,0.038877952843904495,0.027980564162135124,169,0.016313280910253525
|
| 137 |
+
136,0.011958618648350239,0.01275539118796587,0.04051323980093002,0.033278461545705795,169,0.01275539118796587
|
| 138 |
+
137,0.01021519210189581,0.012098973616957664,0.033313363790512085,0.016026752069592476,169,0.012098973616957664
|
| 139 |
+
138,0.011580163612961769,0.012987379916012287,0.04385480657219887,0.034075044095516205,169,0.012987379916012287
|
| 140 |
+
139,0.010937022045254707,0.012945261783897877,0.04624579846858978,0.037750598043203354,169,0.012945261783897877
|
| 141 |
+
140,0.011381213553249836,0.01305419486016035,0.05109994858503342,0.047309860587120056,169,0.01305419486016035
|
| 142 |
+
141,0.010733268223702908,0.014084281399846077,0.037378884851932526,0.022426651790738106,169,0.014084281399846077
|
| 143 |
+
142,0.011734024621546268,0.013068070635199547,0.032459963113069534,0.015457697212696075,169,0.013068070635199547
|
| 144 |
+
143,0.011101428419351578,0.013097638264298439,0.03390609100461006,0.021419335156679153,169,0.013097638264298439
|
| 145 |
+
144,0.009687993675470352,0.012539966031908989,0.03301824629306793,0.016582172363996506,169,0.012539966031908989
|
| 146 |
+
145,0.011292792856693268,0.01634063944220543,0.05055556818842888,0.04004611447453499,169,0.01634063944220543
|
| 147 |
+
146,0.012077175080776215,0.014003257267177105,0.038964878767728806,0.030319588258862495,169,0.014003257267177105
|
| 148 |
+
147,0.012714485637843609,0.013663055375218391,0.03288885951042175,0.015630880370736122,169,0.013663055375218391
|
| 149 |
+
148,0.011552558280527592,0.012877839617431164,0.04266992583870888,0.03384780511260033,169,0.012877839617431164
|
| 150 |
+
149,0.010763539001345634,0.01323053427040577,0.03194791451096535,0.017586681991815567,169,0.01323053427040577
|
| 151 |
+
150,0.012582026422023773,0.013508206233382225,0.03606696426868439,0.021826153621077538,169,0.013508206233382225
|
| 152 |
+
151,0.009468693286180496,0.012768697924911976,0.03970818594098091,0.025727666914463043,169,0.012768697924911976
|
| 153 |
+
152,0.011852406896650791,0.014661249704658985,0.05484653264284134,0.04569438472390175,169,0.014661249704658985
|
| 154 |
+
153,0.014044462703168392,0.017248934134840965,0.05234399065375328,0.04853992909193039,169,0.017248934134840965
|
| 155 |
+
154,0.010357541032135487,0.014068993739783764,0.04956459254026413,0.04308084771037102,169,0.014068993739783764
|
| 156 |
+
155,0.013366189785301685,0.013893465511500835,0.04672841727733612,0.042694538831710815,169,0.013893465511500835
|
| 157 |
+
156,0.010643171146512032,0.014249448664486408,0.03719017282128334,0.026420580223202705,169,0.014249448664486408
|
| 158 |
+
157,0.011591088958084583,0.013503086753189564,0.04370786249637604,0.03306364268064499,169,0.013503086753189564
|
| 159 |
+
158,0.00989616010338068,0.013056893832981586,0.03297286853194237,0.015695571899414062,169,0.013056893832981586
|
| 160 |
+
159,0.011586766690015793,0.013472901657223701,0.035449519753456116,0.024902580305933952,169,0.013472901657223701
|
| 161 |
+
160,0.013098944909870625,0.013816324062645435,0.034029796719551086,0.01615544594824314,169,0.013816324062645435
|
| 162 |
+
161,0.010500910691916943,0.013050666078925133,0.04874369129538536,0.03736964240670204,169,0.013050666078925133
|
| 163 |
+
162,0.01118577178567648,0.014528946951031685,0.04310831055045128,0.03884045034646988,169,0.014528946951031685
|
| 164 |
+
163,0.012011677958071232,0.01341983862221241,0.05134465545415878,0.042513590306043625,169,0.01341983862221241
|
| 165 |
+
164,0.013405879959464073,0.014905637130141258,0.04514201730489731,0.036239515990018845,169,0.014905637130141258
|
| 166 |
+
165,0.009494186379015446,0.012052798643708229,0.041412971913814545,0.028616128489375114,169,0.012052798643708229
|
| 167 |
+
166,0.012127816677093506,0.014019397087395191,0.04333943873643875,0.034706249833106995,169,0.014019397087395191
|
| 168 |
+
167,0.010303272865712643,0.014194652438163757,0.055221423506736755,0.04468696936964989,169,0.014194652438163757
|
| 169 |
+
168,0.012286652810871601,0.013381886295974255,0.033620502799749374,0.02210846357047558,169,0.013381886295974255
|
| 170 |
+
169,0.011941477656364441,0.013881554827094078,0.03089011088013649,0.0,169,0.013881554827094078
|
| 171 |
+
170,0.010902199894189835,0.013418538495898247,0.03387140855193138,0.01865852251648903,169,0.013418538495898247
|
| 172 |
+
171,0.011853178963065147,0.013395830988883972,0.042039621621370316,0.030933812260627747,169,0.013395830988883972
|
| 173 |
+
172,0.011416839435696602,0.01397701632231474,0.03271806985139847,0.016180023550987244,169,0.01397701632231474
|
| 174 |
+
173,0.009966660290956497,0.013320195488631725,0.05213264748454094,0.04265931248664856,169,0.013320195488631725
|
| 175 |
+
174,0.012661087326705456,0.013532793149352074,0.036370061337947845,0.021564219146966934,169,0.013532793149352074
|
| 176 |
+
175,0.010404961183667183,0.012791653163731098,0.041372835636138916,0.030284907668828964,169,0.012791653163731098
|
| 177 |
+
176,0.010008202865719795,0.014492213726043701,0.041207801550626755,0.0305919349193573,169,0.014492213726043701
|
| 178 |
+
177,0.011185373179614544,0.0126521410420537,0.03745856136083603,0.02843787893652916,169,0.0126521410420537
|
| 179 |
+
178,0.010978900827467442,0.013392655178904533,0.04593479633331299,0.03497040644288063,169,0.013392655178904533
|
| 180 |
+
179,0.010919999331235886,0.013185019604861736,0.03245563432574272,0.013809571042656898,169,0.013185019604861736
|
| 181 |
+
180,0.013240884989500046,0.014226404950022697,0.04969528689980507,0.04548085853457451,169,0.014226404950022697
|
| 182 |
+
181,0.010844903998076916,0.01364889182150364,0.035884786397218704,0.02572653815150261,169,0.01364889182150364
|
| 183 |
+
182,0.013776145875453949,0.014983209781348705,0.04398051276803017,0.037584658712148666,169,0.014983209781348705
|
| 184 |
+
183,0.013187915086746216,0.014454295858740807,0.037279848009347916,0.025696279481053352,169,0.014454295858740807
|
| 185 |
+
184,0.011271454393863678,0.01350544672459364,0.041451554745435715,0.03617127612233162,169,0.01350544672459364
|
| 186 |
+
185,0.010734915733337402,0.013494430109858513,0.04081443324685097,0.030338963493704796,169,0.013494430109858513
|
| 187 |
+
186,0.011435337364673615,0.013222220353782177,0.035462502390146255,0.02654467150568962,169,0.013222220353782177
|
| 188 |
+
187,0.011552011594176292,0.012920239940285683,0.03630758449435234,0.02515203133225441,169,0.012920239940285683
|
| 189 |
+
188,0.010317728854715824,0.013369647786021233,0.037483301013708115,0.022090032696723938,169,0.013369647786021233
|
| 190 |
+
189,0.011646714061498642,0.013204103335738182,0.03476595878601074,0.021336575970053673,169,0.013204103335738182
|
| 191 |
+
190,0.011852406896650791,0.013308001682162285,0.04922044277191162,0.03965584188699722,169,0.013308001682162285
|
| 192 |
+
191,0.010966521687805653,0.012762469239532948,0.04048958793282509,0.03342781960964203,169,0.012762469239532948
|
| 193 |
+
192,0.010937022045254707,0.012231101281940937,0.04593294486403465,0.03725199028849602,169,0.012231101281940937
|
| 194 |
+
193,0.012152441777288914,0.01398825366050005,0.042736880481243134,0.0297350212931633,169,0.01398825366050005
|
| 195 |
+
194,0.011314183473587036,0.013666284270584583,0.05048230290412903,0.03960035368800163,169,0.013666284270584583
|
| 196 |
+
195,0.011593335308134556,0.012917488813400269,0.03615304082632065,0.026454085484147072,169,0.012917488813400269
|
| 197 |
+
196,0.010664497502148151,0.013268372043967247,0.034644268453121185,0.024839861318469048,169,0.013268372043967247
|
| 198 |
+
197,0.011326564475893974,0.013753116130828857,0.038378432393074036,0.03084961511194706,169,0.013753116130828857
|
| 199 |
+
198,0.011593335308134556,0.013276025652885437,0.03795047104358673,0.029317693784832954,169,0.013276025652885437
|
| 200 |
+
199,0.011761326342821121,0.01400902308523655,0.04065585136413574,0.030628984794020653,169,0.01400902308523655
|
| 201 |
+
200,0.013906985521316528,0.015549525618553162,0.05047433078289032,0.04199850931763649,169,0.015549525618553162
|
| 202 |
+
201,0.011149405501782894,0.012744681909680367,0.04228198528289795,0.03451281040906906,169,0.012744681909680367
|
| 203 |
+
202,0.009785549715161324,0.011674960143864155,0.038871996104717255,0.025036128237843513,169,0.011674960143864155
|
| 204 |
+
203,0.011374140158295631,0.013030394911766052,0.0320621132850647,0.017362434417009354,169,0.013030394911766052
|
| 205 |
+
204,0.01175325270742178,0.014249923638999462,0.03540676832199097,0.01935802958905697,169,0.014249923638999462
|
| 206 |
+
205,0.010500910691916943,0.01384368073195219,0.04924718290567398,0.03789524734020233,169,0.01384368073195219
|
| 207 |
+
206,0.011900225654244423,0.015052398666739464,0.0529504120349884,0.04871596023440361,169,0.015052398666739464
|
| 208 |
+
207,0.010588170029222965,0.013083333149552345,0.04133707284927368,0.028324075043201447,169,0.013083333149552345
|
| 209 |
+
208,0.010773645713925362,0.012463981285691261,0.04106004536151886,0.028805816546082497,169,0.012463981285691261
|
| 210 |
+
209,0.011704918928444386,0.013949602842330933,0.033992912620306015,0.018555646762251854,169,0.013949602842330933
|
| 211 |
+
210,0.010404402390122414,0.01244891993701458,0.04090415686368942,0.03225989267230034,169,0.01244891993701458
|
| 212 |
+
211,0.012556365691125393,0.01468233298510313,0.05480525642633438,0.05208421126008034,169,0.01468233298510313
|
| 213 |
+
212,0.011279853992164135,0.013348126783967018,0.03437398374080658,0.020899901166558266,169,0.013348126783967018
|
| 214 |
+
213,0.011254072189331055,0.012846795842051506,0.03449279069900513,0.023174021393060684,169,0.012846795842051506
|
| 215 |
+
214,0.012093866243958473,0.013572569005191326,0.03532348573207855,0.025463581085205078,169,0.013572569005191326
|
| 216 |
+
215,0.011309154331684113,0.01417281199246645,0.0460660457611084,0.03799126297235489,169,0.01417281199246645
|
| 217 |
+
216,0.013556423597037792,0.014698070473968983,0.049830250442028046,0.04471948742866516,169,0.014698070473968983
|
| 218 |
+
217,0.01132768951356411,0.013261961750686169,0.05096665769815445,0.04057219251990318,169,0.013261961750686169
|
| 219 |
+
218,0.0111992247402668,0.013286024332046509,0.03954698145389557,0.028011495247483253,169,0.013286024332046509
|
| 220 |
+
219,0.01031485851854086,0.012021840550005436,0.032195452600717545,0.017869608476758003,169,0.012021840550005436
|
| 221 |
+
220,0.011118012480437756,0.013005584478378296,0.04258975014090538,0.030280034989118576,169,0.013005584478378296
|
| 222 |
+
221,0.01060844399034977,0.013753250241279602,0.04978196322917938,0.041274622082710266,169,0.013753250241279602
|
| 223 |
+
222,0.012399422004818916,0.013856127858161926,0.04006905108690262,0.030034715309739113,169,0.013856127858161926
|
| 224 |
+
223,0.012180589139461517,0.01464275736361742,0.050883948802948,0.04768113046884537,169,0.01464275736361742
|
| 225 |
+
224,0.010737120173871517,0.013661992736160755,0.03230005130171776,0.016684923321008682,169,0.013661992736160755
|
| 226 |
+
225,0.01118577178567648,0.014370235614478588,0.04185624420642853,0.03696420043706894,169,0.014370235614478588
|
| 227 |
+
226,0.011775338090956211,0.012903176248073578,0.04528892785310745,0.040637001395225525,169,0.012903176248073578
|
| 228 |
+
227,0.011723962612450123,0.014032225124537945,0.036280617117881775,0.028414545580744743,169,0.014032225124537945
|
| 229 |
+
228,0.010898694396018982,0.012462596409022808,0.04677361622452736,0.035694871097803116,169,0.012462596409022808
|
| 230 |
+
229,0.011871467344462872,0.014979556202888489,0.041836824268102646,0.035438526421785355,169,0.014979556202888489
|
| 231 |
+
230,0.010629886761307716,0.01241560559719801,0.04484602063894272,0.032876092940568924,169,0.01241560559719801
|
| 232 |
+
231,0.01084572821855545,0.013536319136619568,0.036565739661455154,0.02608935907483101,169,0.013536319136619568
|
| 233 |
+
232,0.009468693286180496,0.01335203181952238,0.041276995092630386,0.02834169752895832,169,0.01335203181952238
|
| 234 |
+
233,0.009688323363661766,0.01193708460777998,0.055913716554641724,0.045428838580846786,169,0.01193708460777998
|
| 235 |
+
234,0.010404402390122414,0.01215923298150301,0.042591895908117294,0.03439779579639435,169,0.01215923298150301
|
| 236 |
+
235,0.011250641196966171,0.013431185856461525,0.03315375745296478,0.017821624875068665,169,0.013431185856461525
|
| 237 |
+
236,0.011402510106563568,0.013259418308734894,0.036382585763931274,0.020800350233912468,169,0.013259418308734894
|
| 238 |
+
237,0.011215117760002613,0.014091539196670055,0.03316781297326088,0.01575203612446785,169,0.014091539196670055
|
| 239 |
+
238,0.011338780634105206,0.013788002543151379,0.03968018293380737,0.026850352063775063,169,0.013788002543151379
|
| 240 |
+
239,0.011914322152733803,0.014257891103625298,0.03895558416843414,0.030869802460074425,169,0.014257891103625298
|
| 241 |
+
240,0.011900225654244423,0.01452569104731083,0.050763122737407684,0.04636944830417633,169,0.01452569104731083
|
| 242 |
+
241,0.009687993675470352,0.01267771702259779,0.03335162624716759,0.01758125238120556,169,0.01267771702259779
|
| 243 |
+
242,0.011502745561301708,0.014636045321822166,0.04077209532260895,0.031163720414042473,169,0.014636045321822166
|
| 244 |
+
243,0.011712696403265,0.014891425147652626,0.043310243636369705,0.03803133964538574,169,0.014891425147652626
|
| 245 |
+
244,0.013015382923185825,0.01707320287823677,0.04477338865399361,0.03923424333333969,169,0.01707320287823677
|
| 246 |
+
245,0.011580163612961769,0.01340417005121708,0.04257560521364212,0.03189106285572052,169,0.01340417005121708
|
| 247 |
+
246,0.010433965362608433,0.013321056962013245,0.03774134814739227,0.02268543653190136,169,0.013321056962013245
|
| 248 |
+
247,0.011025742627680302,0.012925359420478344,0.03331631422042847,0.01699744164943695,169,0.012925359420478344
|
| 249 |
+
248,0.012116420082747936,0.01328594982624054,0.03273608908057213,0.016844933852553368,169,0.01328594982624054
|
| 250 |
+
249,0.014047614298760891,0.016055945307016373,0.05421910807490349,0.0452127680182457,169,0.016055945307016373
|
| 251 |
+
250,0.011985601857304573,0.013645539991557598,0.04376092180609703,0.0379464365541935,169,0.013645539991557598
|
| 252 |
+
251,0.010621599853038788,0.011806212365627289,0.04074833542108536,0.028166409581899643,169,0.011806212365627289
|
| 253 |
+
252,0.011984668672084808,0.013859391212463379,0.044709473848342896,0.03504008427262306,169,0.013859391212463379
|
| 254 |
+
253,0.014048502780497074,0.01578037068247795,0.05172326788306236,0.045805756002664566,169,0.01578037068247795
|
| 255 |
+
254,0.010847714729607105,0.014215665869414806,0.03705144301056862,0.0243845172226429,169,0.014215665869414806
|
| 256 |
+
255,0.010629886761307716,0.012572130188345909,0.04484247788786888,0.03311479836702347,169,0.012572130188345909
|
| 257 |
+
256,0.010835663415491581,0.013756836764514446,0.03514743968844414,0.020892217755317688,169,0.013756836764514446
|
| 258 |
+
257,0.010701730847358704,0.012353919446468353,0.04134836792945862,0.028551368042826653,169,0.012353919446468353
|
| 259 |
+
258,0.0106181176379323,0.012380838394165039,0.045042283833026886,0.03322942182421684,169,0.012380838394165039
|
| 260 |
+
259,0.010492865927517414,0.011924775317311287,0.051020462065935135,0.040196944028139114,169,0.011924775317311287
|
| 261 |
+
260,0.011263162828981876,0.012754641473293304,0.034599419683218,0.0231328122317791,169,0.012754641473293304
|
| 262 |
+
261,0.012209488078951836,0.01378460694104433,0.044566329568624496,0.03772500529885292,169,0.01378460694104433
|
| 263 |
+
262,0.009379418566823006,0.011495020240545273,0.03889671340584755,0.026163702830672264,169,0.011495020240545273
|
| 264 |
+
263,0.011518187820911407,0.013949600979685783,0.03681936487555504,0.028149288147687912,169,0.013949600979685783
|
| 265 |
+
264,0.0106181176379323,0.012015251442790031,0.04292134568095207,0.03117644600570202,169,0.012015251442790031
|
| 266 |
+
265,0.011027345433831215,0.012771273963153362,0.03366134688258171,0.01708228327333927,169,0.012771273963153362
|
| 267 |
+
266,0.011999454349279404,0.015297437086701393,0.054215483367443085,0.050546418875455856,169,0.015297437086701393
|
| 268 |
+
267,0.012770552188158035,0.013634378090500832,0.03186166286468506,0.012836679816246033,169,0.013634378090500832
|
| 269 |
+
268,0.01184145174920559,0.01414093654602766,0.03743555396795273,0.029257316142320633,169,0.01414093654602766
|
| 270 |
+
269,0.012451263144612312,0.014083700254559517,0.04816661775112152,0.037338968366384506,169,0.014083700254559517
|
| 271 |
+
270,0.010716166347265244,0.0125215919688344,0.031957585364580154,0.017772184684872627,169,0.0125215919688344
|
| 272 |
+
271,0.012766929343342781,0.014348057098686695,0.04647931829094887,0.040372334420681,169,0.014348057098686695
|
| 273 |
+
272,0.011101428419351578,0.012598857283592224,0.03435538709163666,0.02300589345395565,169,0.012598857283592224
|
| 274 |
+
273,0.011292792856693268,0.01587289571762085,0.05092231184244156,0.04084803909063339,169,0.01587289571762085
|
| 275 |
+
274,0.010418248362839222,0.013520397245883942,0.03546997159719467,0.02225872501730919,169,0.013520397245883942
|
| 276 |
+
275,0.011674921028316021,0.013833025470376015,0.04200941324234009,0.03708752617239952,169,0.013833025470376015
|
| 277 |
+
276,0.0115562304854393,0.014109927229583263,0.0393529012799263,0.02967974916100502,169,0.014109927229583263
|
| 278 |
+
277,0.010147248394787312,0.014034828171133995,0.03763913735747337,0.027820425108075142,169,0.014034828171133995
|
| 279 |
+
278,0.01279937569051981,0.013704325072467327,0.03687933087348938,0.023071374744176865,169,0.013704325072467327
|
| 280 |
+
279,0.009771635755896568,0.012723475694656372,0.043593693524599075,0.031952738761901855,169,0.012723475694656372
|
| 281 |
+
280,0.010898694396018982,0.013816501013934612,0.047700121998786926,0.0368560329079628,169,0.013816501013934612
|
| 282 |
+
281,0.011194635182619095,0.012918124906718731,0.037855420261621475,0.02674740180373192,169,0.012918124906718731
|
| 283 |
+
282,0.010973755270242691,0.012561110779643059,0.04970328137278557,0.04216810688376427,169,0.012561110779643059
|
| 284 |
+
283,0.011093860492110252,0.01270564179867506,0.038491856306791306,0.024157822132110596,169,0.01270564179867506
|
| 285 |
+
284,0.011784722097218037,0.013356024399399757,0.03411378338932991,0.018084228038787842,169,0.013356024399399757
|
| 286 |
+
285,0.011014118790626526,0.012760041281580925,0.03950611501932144,0.030720040202140808,169,0.012760041281580925
|
| 287 |
+
286,0.010769214481115341,0.014049530029296875,0.0383586548268795,0.023915987461805344,169,0.014049530029296875
|
| 288 |
+
287,0.01160685159265995,0.012895124964416027,0.03774568811058998,0.030350415036082268,169,0.012895124964416027
|
| 289 |
+
288,0.013216843828558922,0.01465779822319746,0.05148077756166458,0.0472051277756691,169,0.01465779822319746
|
| 290 |
+
289,0.01082831621170044,0.013497253879904747,0.03924482688307762,0.025891505181789398,169,0.013497253879904747
|
| 291 |
+
290,0.010734915733337402,0.013525607995688915,0.040771592408418655,0.030581749975681305,169,0.013525607995688915
|
| 292 |
+
291,0.01242693979293108,0.01481783390045166,0.045619718730449677,0.03363559767603874,169,0.01481783390045166
|
| 293 |
+
292,0.01049918681383133,0.012741724029183388,0.035414036363363266,0.01822204701602459,169,0.012741724029183388
|
| 294 |
+
293,0.012842979282140732,0.014050936326384544,0.04137042164802551,0.0322289913892746,169,0.014050936326384544
|
| 295 |
+
294,0.010404961183667183,0.012477436102926731,0.04301716387271881,0.03303366154432297,169,0.012477436102926731
|
| 296 |
+
295,0.011879093945026398,0.01442691683769226,0.038327816873788834,0.031135180965065956,169,0.01442691683769226
|
| 297 |
+
296,0.012667828239500523,0.014976921491324902,0.055398453027009964,0.04485822096467018,169,0.014976921491324902
|
| 298 |
+
297,0.01111126970499754,0.015619230456650257,0.05308528244495392,0.0446740984916687,169,0.015619230456650257
|
| 299 |
+
298,0.010713523253798485,0.012582868337631226,0.03402352333068848,0.0204630009829998,169,0.012582868337631226
|
| 300 |
+
299,0.011384904384613037,0.013018171302974224,0.04196666181087494,0.03222380205988884,169,0.013018171302974224
|
| 301 |
+
300,0.011106611229479313,0.013038167729973793,0.04772979021072388,0.04318398982286453,169,0.013038167729973793
|
| 302 |
+
301,0.011261088773608208,0.015199368819594383,0.05374119430780411,0.0443667471408844,169,0.015199368819594383
|
| 303 |
+
302,0.01021083164960146,0.012359409593045712,0.05561232939362526,0.044815871864557266,169,0.012359409593045712
|
| 304 |
+
303,0.009908991865813732,0.011942187324166298,0.043877702206373215,0.03525780513882637,169,0.011942187324166298
|
| 305 |
+
304,0.011524110101163387,0.012652851641178131,0.0403379462659359,0.03254327550530434,169,0.012652851641178131
|
| 306 |
+
305,0.012192179448902607,0.01390791218727827,0.04607390612363815,0.04234132170677185,169,0.01390791218727827
|
| 307 |
+
306,0.012624957598745823,0.01399662159383297,0.04154222086071968,0.032618198543787,169,0.01399662159383297
|
| 308 |
+
307,0.011299783363938332,0.012552117928862572,0.037130337208509445,0.02253635600209236,169,0.012552117928862572
|
| 309 |
+
308,0.009472950361669064,0.011533142998814583,0.052787113934755325,0.0423688068985939,169,0.011533142998814583
|
| 310 |
+
309,0.014249342493712902,0.015293577685952187,0.04698023200035095,0.04291485622525215,169,0.015293577685952187
|
| 311 |
+
310,0.011149944737553596,0.013293052092194557,0.039458323270082474,0.029361853376030922,169,0.013293052092194557
|
| 312 |
+
311,0.011713121086359024,0.013825195841491222,0.03903516009449959,0.028414130210876465,169,0.013825195841491222
|
| 313 |
+
312,0.010572250001132488,0.013059193268418312,0.03662726283073425,0.027917927131056786,169,0.013059193268418312
|
| 314 |
+
313,0.011585571803152561,0.01343546248972416,0.041047997772693634,0.028444934636354446,169,0.01343546248972416
|
| 315 |
+
314,0.01111126970499754,0.014760300517082214,0.04933532699942589,0.04042944684624672,169,0.014760300517082214
|
| 316 |
+
315,0.013681606389582157,0.014804547652602196,0.036404289305210114,0.02405526302754879,169,0.014804547652602196
|
| 317 |
+
316,0.010353878140449524,0.01204890850931406,0.05171237140893936,0.04103763401508331,169,0.01204890850931406
|
| 318 |
+
317,0.011279853992164135,0.013072160072624683,0.03387465327978134,0.02117427997291088,169,0.013072160072624683
|
| 319 |
+
318,0.01253793016076088,0.015375259332358837,0.03979242220520973,0.030357925221323967,169,0.015375259332358837
|
| 320 |
+
319,0.011914322152733803,0.01513690035790205,0.041032783687114716,0.033024031668901443,169,0.01513690035790205
|
| 321 |
+
320,0.012958399020135403,0.014284281060099602,0.04854034259915352,0.04392723739147186,169,0.014284281060099602
|
| 322 |
+
321,0.01256552990525961,0.014354756101965904,0.03495242819190025,0.0248173326253891,169,0.014354756101965904
|
| 323 |
+
322,0.010172235779464245,0.013537396676838398,0.035071298480033875,0.01956842839717865,169,0.013537396676838398
|
| 324 |
+
323,0.01217289175838232,0.015161019749939442,0.04367910325527191,0.03919535130262375,169,0.015161019749939442
|
| 325 |
+
324,0.011131348088383675,0.013504673726856709,0.052435293793678284,0.04254194349050522,169,0.013504673726856709
|
| 326 |
+
325,0.010640677064657211,0.013547057285904884,0.03401171416044235,0.020462622866034508,169,0.013547057285904884
|
| 327 |
+
326,0.01100219041109085,0.012872489169239998,0.032631535083055496,0.017018219456076622,169,0.012872489169239998
|
| 328 |
+
327,0.011241653002798557,0.012129148468375206,0.04455023631453514,0.03307415544986725,169,0.012129148468375206
|
| 329 |
+
328,0.011647050268948078,0.013645490631461143,0.03970686346292496,0.032666027545928955,169,0.013645490631461143
|
| 330 |
+
329,0.010721694678068161,0.013667549006640911,0.036653079092502594,0.025668881833553314,169,0.013667549006640911
|
| 331 |
+
330,0.010294605977833271,0.013467902317643166,0.04521763324737549,0.03391348943114281,169,0.013467902317643166
|
| 332 |
+
331,0.011215117760002613,0.013440619222819805,0.03278433531522751,0.016197016462683678,169,0.013440619222819805
|
| 333 |
+
332,0.011264560744166374,0.012990276329219341,0.03428316488862038,0.021313704550266266,169,0.012990276329219341
|
| 334 |
+
333,0.012929731979966164,0.01568654365837574,0.04359880089759827,0.038480885326862335,169,0.01568654365837574
|
| 335 |
+
334,0.012304640375077724,0.014982655644416809,0.0558706633746624,0.05315463989973068,169,0.014982655644416809
|
| 336 |
+
335,0.012872176244854927,0.01596795581281185,0.04035651311278343,0.029504546895623207,169,0.01596795581281185
|
| 337 |
+
336,0.011101034469902515,0.013886317610740662,0.03754707798361778,0.028799667954444885,169,0.013886317610740662
|
| 338 |
+
337,0.011724203824996948,0.013455711305141449,0.04276690632104874,0.03626361861824989,169,0.013455711305141449
|
| 339 |
+
338,0.01068926602602005,0.013964165933430195,0.03484465926885605,0.022344250231981277,169,0.013964165933430195
|
| 340 |
+
339,0.011256986297667027,0.015392757952213287,0.047873176634311676,0.03624037653207779,169,0.015392757952213287
|
| 341 |
+
340,0.010969149880111217,0.012846079654991627,0.034604113548994064,0.016947701573371887,169,0.012846079654991627
|
| 342 |
+
341,0.012304640375077724,0.01415590476244688,0.05288112536072731,0.049649760127067566,169,0.01415590476244688
|
| 343 |
+
342,0.011502745561301708,0.014348392374813557,0.03836114704608917,0.02763376384973526,169,0.014348392374813557
|
| 344 |
+
343,0.013473669067025185,0.014655254781246185,0.05079434812068939,0.044735733419656754,169,0.014655254781246185
|
| 345 |
+
344,0.011208008043467999,0.013098162598907948,0.031128644943237305,0.013973859138786793,169,0.013098162598907948
|
| 346 |
+
345,0.010763539001345634,0.013808119110763073,0.03266981616616249,0.018334975466132164,169,0.013808119110763073
|
| 347 |
+
346,0.010716166347265244,0.012592824175953865,0.03193604573607445,0.017114853486418724,169,0.012592824175953865
|
| 348 |
+
347,0.012302204966545105,0.013252618722617626,0.03356850892305374,0.01824871636927128,169,0.013252618722617626
|
| 349 |
+
348,0.009596102871000767,0.013385375030338764,0.039268333464860916,0.025245755910873413,169,0.013385375030338764
|
| 350 |
+
349,0.014256675727665424,0.015240371227264404,0.05306882783770561,0.04996904358267784,169,0.015240371227264404
|
| 351 |
+
350,0.011674921028316021,0.01347727607935667,0.042439017444849014,0.036980386823415756,169,0.01347727607935667
|
| 352 |
+
351,0.011474885046482086,0.013437802903354168,0.0592280775308609,0.048896778374910355,169,0.013437802903354168
|
| 353 |
+
352,0.010744956322014332,0.01232806034386158,0.04719338193535805,0.039135608822107315,169,0.01232806034386158
|
| 354 |
+
353,0.012013934552669525,0.01328761875629425,0.045754339545965195,0.0417117103934288,169,0.01328761875629425
|
| 355 |
+
354,0.009722290560603142,0.011722131632268429,0.038862645626068115,0.02624615654349327,169,0.011722131632268429
|
| 356 |
+
355,0.010303272865712643,0.014427637681365013,0.058610949665308,0.048269122838974,169,0.014427637681365013
|
| 357 |
+
356,0.010294605977833271,0.012516127899289131,0.04643803834915161,0.03512959182262421,169,0.012516127899289131
|
| 358 |
+
357,0.01239160168915987,0.014501561410725117,0.039593953639268875,0.02644091099500656,169,0.014501561410725117
|
| 359 |
+
358,0.013519312255084515,0.014223639853298664,0.04677971452474594,0.040047094225883484,169,0.014223639853298664
|
| 360 |
+
359,0.010585015639662743,0.012606780044734478,0.03524170070886612,0.01953369937837124,169,0.012606780044734478
|
| 361 |
+
360,0.010919999331235886,0.01306373905390501,0.03361029550433159,0.017061803489923477,169,0.01306373905390501
|
| 362 |
+
361,0.012484819628298283,0.014820491895079613,0.05054266005754471,0.040529705584049225,169,0.014820491895079613
|
| 363 |
+
362,0.011999454349279404,0.014920206740498543,0.054000504314899445,0.050823621451854706,169,0.014920206740498543
|
| 364 |
+
363,0.01290583610534668,0.013919848017394543,0.0331302210688591,0.018562424927949905,169,0.013919848017394543
|
| 365 |
+
364,0.012582404538989067,0.01501145027577877,0.04325275123119354,0.03590875864028931,169,0.01501145027577877
|
| 366 |
+
365,0.01021519210189581,0.012530295178294182,0.033557113260030746,0.01685057021677494,169,0.012530295178294182
|
| 367 |
+
366,0.01189735159277916,0.01296002883464098,0.04239292070269585,0.0379229411482811,169,0.01296002883464098
|
| 368 |
+
367,0.012009236961603165,0.013409510254859924,0.03311298042535782,0.016662130132317543,169,0.013409510254859924
|
| 369 |
+
368,0.010852149687707424,0.012518242001533508,0.03331515192985535,0.01931639201939106,169,0.012518242001533508
|
| 370 |
+
369,0.010645338334143162,0.013527944684028625,0.03738512471318245,0.022130673751235008,169,0.013527944684028625
|
| 371 |
+
370,0.012168092653155327,0.013566744513809681,0.038858089596033096,0.031534746289253235,169,0.013566744513809681
|
| 372 |
+
371,0.011254072189331055,0.013185888528823853,0.03479038178920746,0.022767961025238037,169,0.013185888528823853
|
| 373 |
+
372,0.010835663415491581,0.013771791942417622,0.03414636477828026,0.01903950236737728,169,0.013771791942417622
|
| 374 |
+
373,0.011749468743801117,0.012823881581425667,0.03183409944176674,0.014446389861404896,169,0.012823881581425667
|
| 375 |
+
374,0.012556365691125393,0.014065970666706562,0.05184389278292656,0.0488707609474659,169,0.014065970666706562
|
| 376 |
+
375,0.012902868911623955,0.014970242977142334,0.04165992513298988,0.030973339453339577,169,0.014970242977142334
|
| 377 |
+
376,0.011830451898276806,0.013627223670482635,0.03686891868710518,0.028846431523561478,169,0.013627223670482635
|
| 378 |
+
377,0.010664497502148151,0.013226961717009544,0.0355469174683094,0.026578662917017937,169,0.013226961717009544
|
| 379 |
+
378,0.012152480892837048,0.013518902473151684,0.03525332361459732,0.019831296056509018,169,0.013518902473151684
|
| 380 |
+
379,0.011435337364673615,0.013270871713757515,0.0362459197640419,0.028474286198616028,169,0.013270871713757515
|
| 381 |
+
380,0.01284860260784626,0.01427440159022808,0.04558807611465454,0.0346531942486763,169,0.01427440159022808
|
| 382 |
+
381,0.00997646152973175,0.012371323071420193,0.032385360449552536,0.015307781286537647,169,0.012371323071420193
|
| 383 |
+
382,0.013737078756093979,0.01617712900042534,0.041486166417598724,0.030546698719263077,169,0.01617712900042534
|
| 384 |
+
383,0.010876658372581005,0.01353788934648037,0.035648148506879807,0.025036590173840523,169,0.01353788934648037
|
| 385 |
+
384,0.011958618648350239,0.012710563838481903,0.04036254063248634,0.03271256014704704,169,0.012710563838481903
|
| 386 |
+
385,0.0128812026232481,0.0141056003049016,0.053287796676158905,0.042226776480674744,169,0.0141056003049016
|
| 387 |
+
386,0.01023749727755785,0.013071788474917412,0.05088447034358978,0.044489964842796326,169,0.013071788474917412
|
| 388 |
+
387,0.012253457680344582,0.013351500034332275,0.0343947596848011,0.019790131598711014,169,0.013351500034332275
|
| 389 |
+
388,0.01060737669467926,0.012527463026344776,0.04877273365855217,0.04097197949886322,169,0.012527463026344776
|
| 390 |
+
389,0.010643171146512032,0.013898898847401142,0.03631775826215744,0.024825120344758034,169,0.013898898847401142
|
| 391 |
+
390,0.009771635755896568,0.012238021939992905,0.04323168843984604,0.03173412010073662,169,0.012238021939992905
|
| 392 |
+
391,0.01193608995527029,0.014044588431715965,0.03772968053817749,0.028422044590115547,169,0.014044588431715965
|
| 393 |
+
392,0.011793768033385277,0.01313529908657074,0.03806609287858009,0.030496101826429367,169,0.01313529908657074
|
| 394 |
+
393,0.01148789469152689,0.01308235339820385,0.033183395862579346,0.015516383573412895,169,0.01308235339820385
|
| 395 |
+
394,0.012744762934744358,0.015058371238410473,0.044011324644088745,0.03576405346393585,169,0.015058371238410473
|
| 396 |
+
395,0.010293045081198215,0.012216633185744286,0.039328910410404205,0.02862493321299553,169,0.012216633185744286
|
| 397 |
+
396,0.010172235779464245,0.012786383740603924,0.03360748291015625,0.016711728647351265,169,0.012786383740603924
|
| 398 |
+
397,0.011129582300782204,0.012871727347373962,0.042603909969329834,0.03256916254758835,169,0.012871727347373962
|
| 399 |
+
398,0.009785549715161324,0.011759649962186813,0.03985002636909485,0.0268724225461483,169,0.011759649962186813
|
| 400 |
+
399,0.009596102871000767,0.014139826409518719,0.04005825147032738,0.026860535144805908,169,0.014139826409518719
|
| 401 |
+
400,0.011700201779603958,0.013475763611495495,0.03371121734380722,0.02359761670231819,169,0.013475763611495495
|
| 402 |
+
401,0.010261986404657364,0.012031346559524536,0.04011647775769234,0.026644228026270866,169,0.012031346559524536
|
| 403 |
+
402,0.011449193581938744,0.012839250266551971,0.04728670418262482,0.03784340247511864,169,0.012839250266551971
|
| 404 |
+
403,0.011941477656364441,0.013127408921718597,0.03200003132224083,0.011941477656364441,169,0.013127408921718597
|
| 405 |
+
404,0.014568226411938667,0.016187746077775955,0.03973543271422386,0.03033081255853176,169,0.016187746077775955
|
| 406 |
+
405,0.010662689805030823,0.012342896312475204,0.04192105680704117,0.031320057809352875,169,0.012342896312475204
|
| 407 |
+
406,0.011062847450375557,0.012749915011227131,0.03801323473453522,0.029659781605005264,169,0.012749915011227131
|
| 408 |
+
407,0.011062847450375557,0.012949889525771141,0.037674058228731155,0.028814004734158516,169,0.012949889525771141
|
| 409 |
+
408,0.010414063930511475,0.013115162029862404,0.03219809755682945,0.01804395206272602,169,0.013115162029862404
|
| 410 |
+
409,0.01344795897603035,0.016309278085827827,0.04495489224791527,0.03290826082229614,169,0.016309278085827827
|
| 411 |
+
410,0.013592495582997799,0.016851071268320084,0.04120953753590584,0.03554894030094147,169,0.016851071268320084
|
| 412 |
+
411,0.01172932144254446,0.015955111011862755,0.05069011077284813,0.04260530322790146,169,0.015955111011862755
|
| 413 |
+
412,0.010533158667385578,0.012732614763081074,0.04298386350274086,0.03557179123163223,169,0.012732614763081074
|
| 414 |
+
413,0.012536444701254368,0.01508051436394453,0.044687606394290924,0.040021952241659164,169,0.01508051436394453
|
| 415 |
+
414,0.009722290560603142,0.012455372139811516,0.03903847560286522,0.026695434004068375,169,0.012455372139811516
|
| 416 |
+
415,0.011871467344462872,0.014389729127287865,0.03998595103621483,0.03251646086573601,169,0.014389729127287865
|
| 417 |
+
416,0.01060844399034977,0.013991735875606537,0.047929998487234116,0.039323173463344574,169,0.013991735875606537
|
| 418 |
+
417,0.01116905640810728,0.012517529539763927,0.03815656900405884,0.028111614286899567,169,0.012517529539763927
|
| 419 |
+
418,0.010537550784647465,0.012231585569679737,0.03855698183178902,0.025055645033717155,169,0.012231585569679737
|
| 420 |
+
419,0.01202941033989191,0.01332334615290165,0.049178726971149445,0.04547365754842758,169,0.01332334615290165
|
| 421 |
+
420,0.011376433074474335,0.013042221777141094,0.03176899999380112,0.013143966905772686,169,0.013042221777141094
|
| 422 |
+
421,0.01386694610118866,0.014952793717384338,0.03946322575211525,0.029929067939519882,169,0.014952793717384338
|
| 423 |
+
422,0.009981540963053703,0.01385992020368576,0.038756947964429855,0.02637789398431778,169,0.01385992020368576
|
| 424 |
+
423,0.011326564475893974,0.014314940199255943,0.038698531687259674,0.03102252632379532,169,0.014314940199255943
|
| 425 |
+
424,0.01049918681383133,0.012104692868888378,0.03529524430632591,0.019101645797491074,169,0.012104692868888378
|
| 426 |
+
425,0.012272350490093231,0.014401910826563835,0.03885762393474579,0.0272480770945549,169,0.014401910826563835
|
| 427 |
+
426,0.01031485851854086,0.012696944177150726,0.03318814933300018,0.020270904526114464,169,0.012696944177150726
|
| 428 |
+
427,0.00999896414577961,0.013950143940746784,0.04800792783498764,0.03748738020658493,169,0.013950143940746784
|
| 429 |
+
428,0.013130404986441135,0.01482921838760376,0.05300518497824669,0.049231573939323425,169,0.01482921838760376
|
| 430 |
+
429,0.011161500588059425,0.01347436010837555,0.05090436711907387,0.04675958305597305,169,0.01347436010837555
|
| 431 |
+
430,0.010334083810448647,0.014153271913528442,0.03484718129038811,0.018939299508929253,169,0.014153271913528442
|
| 432 |
+
431,0.012065279297530651,0.016462082043290138,0.04039688780903816,0.032666921615600586,169,0.016462082043290138
|
| 433 |
+
432,0.012308320961892605,0.014306699857115746,0.04700513556599617,0.03915759548544884,169,0.014306699857115746
|
| 434 |
+
433,0.012123226188123226,0.014597946777939796,0.04226088151335716,0.029868291690945625,169,0.014597946777939796
|
| 435 |
+
434,0.011614962480962276,0.013494836166501045,0.04259425401687622,0.03403805196285248,169,0.013494836166501045
|
| 436 |
+
435,0.010411379858851433,0.012479161843657494,0.04708386957645416,0.039323750883340836,169,0.012479161843657494
|
| 437 |
+
436,0.010127785615622997,0.013992873020470142,0.057245511561632156,0.04705150052905083,169,0.013992873020470142
|
| 438 |
+
437,0.010533158667385578,0.01322057843208313,0.04287748783826828,0.03527224436402321,169,0.01322057843208313
|
| 439 |
+
438,0.011326202191412449,0.013846119865775108,0.04674619808793068,0.03973197564482689,169,0.013846119865775108
|
| 440 |
+
439,0.010840436443686485,0.013305353000760078,0.03428425267338753,0.02106061950325966,169,0.013305353000760078
|
| 441 |
+
440,0.010411379858851433,0.012962639331817627,0.049549706280231476,0.04245487228035927,169,0.012962639331817627
|
| 442 |
+
441,0.011700201779603958,0.013162133283913136,0.034989647567272186,0.024864083155989647,169,0.013162133283913136
|
| 443 |
+
442,0.012020773254334927,0.013480487279593945,0.05027369037270546,0.04323965311050415,169,0.013480487279593945
|
| 444 |
+
443,0.010713888332247734,0.01235243771225214,0.03822498396039009,0.024227097630500793,169,0.01235243771225214
|
| 445 |
+
444,0.012695809826254845,0.015164680778980255,0.035802166908979416,0.023154892027378082,169,0.015164680778980255
|
| 446 |
+
445,0.010287892073392868,0.012952195480465889,0.04350863769650459,0.031178707256913185,169,0.012952195480465889
|
| 447 |
+
446,0.011664236895740032,0.01460784487426281,0.03722401335835457,0.022541629150509834,169,0.01460784487426281
|
| 448 |
+
447,0.011985601857304573,0.013121304102241993,0.04323851689696312,0.03795093670487404,169,0.013121304102241993
|
| 449 |
+
448,0.01226156298071146,0.013901589438319206,0.03695835545659065,0.023168260231614113,169,0.013901589438319206
|
| 450 |
+
449,0.011433697305619717,0.013366259634494781,0.03804056718945503,0.02975204773247242,169,0.013366259634494781
|
| 451 |
+
450,0.012838225811719894,0.015198421664536,0.056335002183914185,0.053541671484708786,169,0.015198421664536
|
| 452 |
+
451,0.011518187820911407,0.01434458326548338,0.03711710497736931,0.027630897238850594,169,0.01434458326548338
|
| 453 |
+
452,0.011666446924209595,0.013746371492743492,0.05292442813515663,0.042540282011032104,169,0.013746371492743492
|
| 454 |
+
453,0.012167887762188911,0.014110488817095757,0.03446318209171295,0.018688729032874107,169,0.014110488817095757
|
| 455 |
+
454,0.011261088773608208,0.015848923474550247,0.05262729525566101,0.04289459437131882,169,0.015848923474550247
|
| 456 |
+
455,0.013035432435572147,0.014874687418341637,0.04698437079787254,0.03863150626420975,169,0.014874687418341637
|
| 457 |
+
456,0.01138075441122055,0.014898248016834259,0.050584178417921066,0.04214472323656082,169,0.014898248016834259
|
| 458 |
+
457,0.01100219041109085,0.01265255082398653,0.03163490816950798,0.014218493364751339,169,0.01265255082398653
|
| 459 |
+
458,0.01390835177153349,0.015758724883198738,0.048307765275239944,0.04122592508792877,169,0.015758724883198738
|
| 460 |
+
459,0.009900936856865883,0.013090578839182854,0.0485294908285141,0.03718580678105354,169,0.013090578839182854
|
| 461 |
+
460,0.010578181594610214,0.012716004624962807,0.037349846214056015,0.022684309631586075,169,0.012716004624962807
|
| 462 |
+
461,0.01244143396615982,0.013857945799827576,0.03277789428830147,0.014670368283987045,169,0.013857945799827576
|
| 463 |
+
462,0.01217289175838232,0.01535832416266203,0.04394792020320892,0.03992081433534622,169,0.01535832416266203
|
| 464 |
+
463,0.01149698719382286,0.01251645851880312,0.04349060729146004,0.031623780727386475,169,0.01251645851880312
|
| 465 |
+
464,0.011250641196966171,0.013202948495745659,0.032039791345596313,0.01667441800236702,169,0.013202948495745659
|
| 466 |
+
465,0.012440490536391735,0.013187365606427193,0.03749479353427887,0.029777249321341515,169,0.013187365606427193
|
| 467 |
+
466,0.011251366697251797,0.013508327305316925,0.03421378880739212,0.019331984221935272,169,0.013508327305316925
|
| 468 |
+
467,0.01170630194246769,0.013742240145802498,0.0402403362095356,0.030547933652997017,169,0.013742240145802498
|
| 469 |
+
468,0.012561491690576077,0.015599250793457031,0.04072604700922966,0.030703727155923843,169,0.015599250793457031
|
| 470 |
+
469,0.01219884678721428,0.01357879675924778,0.043891943991184235,0.03385287523269653,169,0.01357879675924778
|
| 471 |
+
470,0.009494186379015446,0.012200693599879742,0.041178394109010696,0.02875075489282608,169,0.012200693599879742
|
| 472 |
+
471,0.012499282136559486,0.013820203952491283,0.04084892198443413,0.03379608690738678,169,0.013820203952491283
|
| 473 |
+
472,0.011118012480437756,0.014307585544884205,0.040674395859241486,0.02801940031349659,169,0.014307585544884205
|
| 474 |
+
473,0.01052606850862503,0.013284148648381233,0.03655902296304703,0.022960618138313293,169,0.013284148648381233
|
| 475 |
+
474,0.01334916427731514,0.015826841816306114,0.041302766650915146,0.03303410857915878,169,0.015826841816306114
|
| 476 |
+
475,0.011185373179614544,0.012519290670752525,0.03643612563610077,0.026945525780320168,169,0.012519290670752525
|
| 477 |
+
476,0.011194635182619095,0.013152946718037128,0.03994535654783249,0.03009725920855999,169,0.013152946718037128
|
| 478 |
+
477,0.012065279297530651,0.01622794196009636,0.04177310690283775,0.03511044755578041,169,0.01622794196009636
|
| 479 |
+
478,0.010497553274035454,0.012781670317053795,0.04595334082841873,0.03482566028833389,169,0.012781670317053795
|
| 480 |
+
479,0.01020148303359747,0.013986272737383842,0.04394415393471718,0.03378850966691971,169,0.013986272737383842
|
| 481 |
+
480,0.012561491690576077,0.017036424949765205,0.0440656840801239,0.03537356108427048,169,0.017036424949765205
|
| 482 |
+
481,0.010847714729607105,0.013209044933319092,0.03479795902967453,0.020611511543393135,169,0.013209044933319092
|
| 483 |
+
482,0.014083867892622948,0.015957290306687355,0.0486031100153923,0.0447525680065155,169,0.015957290306687355
|
| 484 |
+
483,0.011003854684531689,0.013646930456161499,0.042470622807741165,0.03002808429300785,169,0.013646930456161499
|
| 485 |
+
484,0.011465747840702534,0.01291580032557249,0.03448352590203285,0.0247759148478508,169,0.01291580032557249
|
| 486 |
+
485,0.012123226188123226,0.014213001355528831,0.04130512848496437,0.02816959284245968,169,0.014213001355528831
|
| 487 |
+
486,0.01060036476701498,0.01324393879622221,0.04024256020784378,0.030539169907569885,169,0.01324393879622221
|
| 488 |
+
487,0.01009734719991684,0.014226220548152924,0.03857142850756645,0.02588411048054695,169,0.014226220548152924
|
| 489 |
+
488,0.010966521687805653,0.013614113442599773,0.04241935536265373,0.03536076471209526,169,0.013614113442599773
|
| 490 |
+
489,0.012984336353838444,0.015226838178932667,0.04822791367769241,0.04345835745334625,169,0.015226838178932667
|
| 491 |
+
490,0.011264560744166374,0.013342037796974182,0.0346875935792923,0.020903106778860092,169,0.013342037796974182
|
| 492 |
+
491,0.013232775963842869,0.015678653493523598,0.043904103338718414,0.03891860693693161,169,0.015678653493523598
|
| 493 |
+
492,0.011682662181556225,0.013284395448863506,0.03513486683368683,0.0248078852891922,169,0.013284395448863506
|
| 494 |
+
493,0.011712696403265,0.014100313186645508,0.045555680990219116,0.04119318723678589,169,0.014100313186645508
|
| 495 |
+
494,0.011545045301318169,0.013091130182147026,0.03629612550139427,0.021169286221265793,169,0.013091130182147026
|
| 496 |
+
495,0.00986604206264019,0.011616474017500877,0.04121987521648407,0.02933608368039131,169,0.011616474017500877
|
| 497 |
+
496,0.01114719919860363,0.013925781473517418,0.03816527500748634,0.027845658361911774,169,0.013925781473517418
|
| 498 |
+
497,0.011110068298876286,0.014427614398300648,0.04978848248720169,0.04332207143306732,169,0.014427614398300648
|
| 499 |
+
498,0.01191819179803133,0.013523724861443043,0.040370114147663116,0.03006620891392231,169,0.013523724861443043
|
| 500 |
+
499,0.01132768951356411,0.012958891689777374,0.04938659816980362,0.038739945739507675,169,0.012958891689777374
|
| 501 |
+
500,0.010293045081198215,0.012191682122647762,0.039953917264938354,0.029962992295622826,169,0.012191682122647762
|
splits/compute_chamfer_splits.py
ADDED
|
@@ -0,0 +1,735 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""Compute STL-based Chamfer geometry splits for AhmedML.
|
| 3 |
+
|
| 4 |
+
This is intentionally standalone so it can be copied to the machine that has
|
| 5 |
+
the STL files. It expects a AhmedML-style directory layout:
|
| 6 |
+
|
| 7 |
+
DATA_ROOT/
|
| 8 |
+
run_1/ahmed_1.stl
|
| 9 |
+
run_2/ahmed_2.stl
|
| 10 |
+
...
|
| 11 |
+
|
| 12 |
+
Outputs:
|
| 13 |
+
- sampled point clouds cached as NPZ files
|
| 14 |
+
- chamfer_metrics.csv with nearest-neighbor and outlier scores
|
| 15 |
+
- chamfer_manifest.json with geometry_{train,val,test}
|
| 16 |
+
- optional chamfer_distance_matrix.npy, a symmetric NxN float32 matrix
|
| 17 |
+
- optional sparse train subsets when a base manifest with full_train exists
|
| 18 |
+
|
| 19 |
+
Install dependencies on the data machine:
|
| 20 |
+
|
| 21 |
+
python -m pip install numpy scipy trimesh
|
| 22 |
+
|
| 23 |
+
Example:
|
| 24 |
+
|
| 25 |
+
python compute_chamfer_splits.py \
|
| 26 |
+
--data-root /data/ahmedml \
|
| 27 |
+
--output-dir /data/ahmedml_chamfer \
|
| 28 |
+
--samples 4096 \
|
| 29 |
+
--workers 16 \
|
| 30 |
+
--base-manifest /path/to/ahmedml/splits/manifest.json
|
| 31 |
+
"""
|
| 32 |
+
|
| 33 |
+
from __future__ import annotations
|
| 34 |
+
|
| 35 |
+
import argparse
|
| 36 |
+
import csv
|
| 37 |
+
import hashlib
|
| 38 |
+
import json
|
| 39 |
+
import math
|
| 40 |
+
import random
|
| 41 |
+
import sys
|
| 42 |
+
import time
|
| 43 |
+
from concurrent.futures import ThreadPoolExecutor, as_completed
|
| 44 |
+
from dataclasses import dataclass
|
| 45 |
+
from pathlib import Path
|
| 46 |
+
from typing import Iterable
|
| 47 |
+
|
| 48 |
+
import numpy as np
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
N_CASES = 500
|
| 52 |
+
PUBLIC_RUN_IDS = list(range(1, N_CASES + 1))
|
| 53 |
+
DEFAULT_TEST_FRACTION = 0.2
|
| 54 |
+
DEFAULT_VAL_FRACTION = 0.1
|
| 55 |
+
DEFAULT_SEED = 42
|
| 56 |
+
cKDTree = None
|
| 57 |
+
trimesh = None
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
@dataclass(frozen=True)
|
| 61 |
+
class RunFile:
|
| 62 |
+
run_id: int
|
| 63 |
+
stl_path: Path
|
| 64 |
+
|
| 65 |
+
|
| 66 |
+
def case_id(run_id: int) -> str:
|
| 67 |
+
return f"run_{run_id}"
|
| 68 |
+
|
| 69 |
+
|
| 70 |
+
def run_id(case: str) -> int:
|
| 71 |
+
if not case.startswith("run_"):
|
| 72 |
+
raise ValueError(f"bad case id: {case!r}")
|
| 73 |
+
return int(case.split("_", 1)[1])
|
| 74 |
+
|
| 75 |
+
|
| 76 |
+
def require_dependencies() -> None:
|
| 77 |
+
global cKDTree, trimesh
|
| 78 |
+
try:
|
| 79 |
+
from scipy.spatial import cKDTree as scipy_ckdtree
|
| 80 |
+
except Exception as exc: # pragma: no cover - dependency guard
|
| 81 |
+
raise SystemExit(
|
| 82 |
+
"Missing dependency scipy. Install with: python -m pip install numpy scipy trimesh"
|
| 83 |
+
) from exc
|
| 84 |
+
try:
|
| 85 |
+
import trimesh as trimesh_module
|
| 86 |
+
except Exception as exc: # pragma: no cover - dependency guard
|
| 87 |
+
raise SystemExit(
|
| 88 |
+
"Missing dependency trimesh. Install with: python -m pip install numpy scipy trimesh"
|
| 89 |
+
) from exc
|
| 90 |
+
cKDTree = scipy_ckdtree
|
| 91 |
+
trimesh = trimesh_module
|
| 92 |
+
|
| 93 |
+
|
| 94 |
+
def parse_args() -> argparse.Namespace:
|
| 95 |
+
parser = argparse.ArgumentParser(
|
| 96 |
+
description="Compute STL-surface Chamfer distances and AhmedML geometry splits.",
|
| 97 |
+
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
|
| 98 |
+
)
|
| 99 |
+
parser.add_argument(
|
| 100 |
+
"--data-root",
|
| 101 |
+
type=Path,
|
| 102 |
+
required=True,
|
| 103 |
+
help="Directory containing run_N/ahmed_N.stl files.",
|
| 104 |
+
)
|
| 105 |
+
parser.add_argument(
|
| 106 |
+
"--output-dir",
|
| 107 |
+
type=Path,
|
| 108 |
+
required=True,
|
| 109 |
+
help="Directory where matrices, metrics, and manifests will be written.",
|
| 110 |
+
)
|
| 111 |
+
parser.add_argument(
|
| 112 |
+
"--samples",
|
| 113 |
+
type=int,
|
| 114 |
+
default=4096,
|
| 115 |
+
help="Surface sample count per STL. 4096 is a practical first pass; 10000+ is better for final splits.",
|
| 116 |
+
)
|
| 117 |
+
parser.add_argument(
|
| 118 |
+
"--workers",
|
| 119 |
+
type=int,
|
| 120 |
+
default=8,
|
| 121 |
+
help="Thread workers used for pairwise nearest-neighbor queries.",
|
| 122 |
+
)
|
| 123 |
+
parser.add_argument(
|
| 124 |
+
"--sample-workers",
|
| 125 |
+
type=int,
|
| 126 |
+
default=1,
|
| 127 |
+
help="Thread workers used while loading and sampling STLs. Keep this low for large AhmedML files.",
|
| 128 |
+
)
|
| 129 |
+
parser.add_argument(
|
| 130 |
+
"--seed",
|
| 131 |
+
type=int,
|
| 132 |
+
default=DEFAULT_SEED,
|
| 133 |
+
help="Base random seed for deterministic surface sampling and split selection.",
|
| 134 |
+
)
|
| 135 |
+
parser.add_argument(
|
| 136 |
+
"--k-neighbors",
|
| 137 |
+
type=int,
|
| 138 |
+
default=10,
|
| 139 |
+
help="K used for the local-isolation geometry score.",
|
| 140 |
+
)
|
| 141 |
+
parser.add_argument(
|
| 142 |
+
"--test-fraction",
|
| 143 |
+
type=float,
|
| 144 |
+
default=DEFAULT_TEST_FRACTION,
|
| 145 |
+
help="Fraction held out as OOD test for geometry.",
|
| 146 |
+
)
|
| 147 |
+
parser.add_argument(
|
| 148 |
+
"--val-fraction",
|
| 149 |
+
type=float,
|
| 150 |
+
default=DEFAULT_VAL_FRACTION,
|
| 151 |
+
help="Overall validation fraction. Validation is sampled from the train-side pool.",
|
| 152 |
+
)
|
| 153 |
+
parser.add_argument(
|
| 154 |
+
"--score",
|
| 155 |
+
choices=["knn", "medoid", "mean"],
|
| 156 |
+
default="knn",
|
| 157 |
+
help="Score used to rank OOD geometry cases.",
|
| 158 |
+
)
|
| 159 |
+
parser.add_argument(
|
| 160 |
+
"--center",
|
| 161 |
+
choices=["none", "bbox", "centroid"],
|
| 162 |
+
default="none",
|
| 163 |
+
help="How to remove translation before Chamfer. Use none when STLs share a common coordinate frame.",
|
| 164 |
+
)
|
| 165 |
+
parser.add_argument(
|
| 166 |
+
"--scale-mode",
|
| 167 |
+
choices=["global_median_bbox", "per_mesh_bbox", "none"],
|
| 168 |
+
default="global_median_bbox",
|
| 169 |
+
help="How to scale coordinates before Chamfer. global_median_bbox keeps real relative vehicle size.",
|
| 170 |
+
)
|
| 171 |
+
parser.add_argument(
|
| 172 |
+
"--runs",
|
| 173 |
+
type=str,
|
| 174 |
+
default="public",
|
| 175 |
+
help=(
|
| 176 |
+
"Run IDs to process: public, all, or a comma/range expression like "
|
| 177 |
+
"1,2,10-20. For AhmedML, public and all both mean 1..500."
|
| 178 |
+
),
|
| 179 |
+
)
|
| 180 |
+
parser.add_argument(
|
| 181 |
+
"--base-manifest",
|
| 182 |
+
type=Path,
|
| 183 |
+
default=None,
|
| 184 |
+
help=(
|
| 185 |
+
"Optional existing split manifest. If it contains full_train/full_val/full_test, "
|
| 186 |
+
"the script also writes geometry_medium/scarce/super_scarce splits."
|
| 187 |
+
),
|
| 188 |
+
)
|
| 189 |
+
parser.add_argument(
|
| 190 |
+
"--force-resample",
|
| 191 |
+
action="store_true",
|
| 192 |
+
help="Ignore cached point clouds and resample all STLs.",
|
| 193 |
+
)
|
| 194 |
+
parser.add_argument(
|
| 195 |
+
"--force-matrix",
|
| 196 |
+
action="store_true",
|
| 197 |
+
help="Recompute the Chamfer matrix even if a compatible matrix already exists.",
|
| 198 |
+
)
|
| 199 |
+
parser.add_argument(
|
| 200 |
+
"--write-matrix",
|
| 201 |
+
action="store_true",
|
| 202 |
+
help="Write chamfer_distance_matrix.npy and its metadata JSON. Omitted by default to keep the split package lean.",
|
| 203 |
+
)
|
| 204 |
+
parser.add_argument(
|
| 205 |
+
"--allow-missing",
|
| 206 |
+
action="store_true",
|
| 207 |
+
help="Process the subset of requested runs whose STLs exist. Without this, missing STLs are an error.",
|
| 208 |
+
)
|
| 209 |
+
parser.add_argument(
|
| 210 |
+
"--write-csv-matrix",
|
| 211 |
+
action="store_true",
|
| 212 |
+
help="Also write chamfer_distance_matrix.csv from the in-memory matrix.",
|
| 213 |
+
)
|
| 214 |
+
return parser.parse_args()
|
| 215 |
+
|
| 216 |
+
|
| 217 |
+
def parse_run_expression(expr: str) -> list[int]:
|
| 218 |
+
expr = expr.strip().lower()
|
| 219 |
+
if expr == "public":
|
| 220 |
+
return PUBLIC_RUN_IDS.copy()
|
| 221 |
+
if expr == "all":
|
| 222 |
+
return list(range(1, N_CASES + 1))
|
| 223 |
+
|
| 224 |
+
result: set[int] = set()
|
| 225 |
+
for token in expr.split(","):
|
| 226 |
+
token = token.strip()
|
| 227 |
+
if not token:
|
| 228 |
+
continue
|
| 229 |
+
if "-" in token:
|
| 230 |
+
start_s, end_s = token.split("-", 1)
|
| 231 |
+
start, end = int(start_s), int(end_s)
|
| 232 |
+
if start > end:
|
| 233 |
+
start, end = end, start
|
| 234 |
+
result.update(range(start, end + 1))
|
| 235 |
+
else:
|
| 236 |
+
result.add(int(token))
|
| 237 |
+
runs = sorted(result)
|
| 238 |
+
bad = [rid for rid in runs if rid < 1 or rid > N_CASES]
|
| 239 |
+
if bad:
|
| 240 |
+
raise SystemExit(f"Run IDs must be in 1..{N_CASES}; bad values: {bad}")
|
| 241 |
+
return runs
|
| 242 |
+
|
| 243 |
+
|
| 244 |
+
def discover_files(data_root: Path, requested_runs: Iterable[int], allow_missing: bool) -> list[RunFile]:
|
| 245 |
+
files: list[RunFile] = []
|
| 246 |
+
missing: list[int] = []
|
| 247 |
+
for rid in requested_runs:
|
| 248 |
+
path = data_root / f"run_{rid}" / f"ahmed_{rid}.stl"
|
| 249 |
+
if path.exists() and path.stat().st_size > 0:
|
| 250 |
+
files.append(RunFile(rid, path))
|
| 251 |
+
else:
|
| 252 |
+
missing.append(rid)
|
| 253 |
+
|
| 254 |
+
if missing and not allow_missing:
|
| 255 |
+
preview = ", ".join(str(x) for x in missing[:20])
|
| 256 |
+
suffix = " ..." if len(missing) > 20 else ""
|
| 257 |
+
raise SystemExit(
|
| 258 |
+
f"Missing {len(missing)} requested STL files under {data_root}: {preview}{suffix}\n"
|
| 259 |
+
"Use --allow-missing to compute with the available subset."
|
| 260 |
+
)
|
| 261 |
+
if not files:
|
| 262 |
+
raise SystemExit(f"No STL files found under {data_root}")
|
| 263 |
+
return files
|
| 264 |
+
|
| 265 |
+
|
| 266 |
+
def load_mesh(path: Path) -> "trimesh.Trimesh":
|
| 267 |
+
mesh = trimesh.load_mesh(path, process=False)
|
| 268 |
+
if isinstance(mesh, trimesh.Scene):
|
| 269 |
+
geometries = [g for g in mesh.geometry.values() if len(g.faces) > 0]
|
| 270 |
+
if not geometries:
|
| 271 |
+
raise ValueError(f"{path} did not contain any mesh geometry")
|
| 272 |
+
mesh = trimesh.util.concatenate(geometries)
|
| 273 |
+
if not isinstance(mesh, trimesh.Trimesh):
|
| 274 |
+
raise ValueError(f"{path} loaded as unsupported object: {type(mesh)!r}")
|
| 275 |
+
if len(mesh.faces) == 0:
|
| 276 |
+
raise ValueError(f"{path} has no faces")
|
| 277 |
+
return mesh
|
| 278 |
+
|
| 279 |
+
|
| 280 |
+
def sample_mesh_surface(mesh: "trimesh.Trimesh", count: int, seed: int) -> np.ndarray:
|
| 281 |
+
"""Area-sample points from a triangular mesh using a local RNG."""
|
| 282 |
+
rng = np.random.default_rng(seed)
|
| 283 |
+
areas = np.asarray(mesh.area_faces, dtype=np.float64)
|
| 284 |
+
total_area = float(np.sum(areas))
|
| 285 |
+
if not math.isfinite(total_area) or total_area <= 0.0:
|
| 286 |
+
raise ValueError("mesh surface area is zero or invalid")
|
| 287 |
+
|
| 288 |
+
face_indices = rng.choice(len(mesh.faces), size=count, replace=True, p=areas / total_area)
|
| 289 |
+
triangles = np.asarray(mesh.vertices[mesh.faces[face_indices]], dtype=np.float64)
|
| 290 |
+
|
| 291 |
+
u = rng.random(count)
|
| 292 |
+
v = rng.random(count)
|
| 293 |
+
outside = (u + v) > 1.0
|
| 294 |
+
u[outside] = 1.0 - u[outside]
|
| 295 |
+
v[outside] = 1.0 - v[outside]
|
| 296 |
+
points = triangles[:, 0] + u[:, None] * (triangles[:, 1] - triangles[:, 0]) + v[:, None] * (
|
| 297 |
+
triangles[:, 2] - triangles[:, 0]
|
| 298 |
+
)
|
| 299 |
+
return np.asarray(points, dtype=np.float32)
|
| 300 |
+
|
| 301 |
+
|
| 302 |
+
def cache_path(cache_dir: Path, run: RunFile, samples: int, seed: int) -> Path:
|
| 303 |
+
source = f"{run.stl_path.resolve()}:{run.stl_path.stat().st_size}:{samples}:{seed}:{run.run_id}"
|
| 304 |
+
digest = hashlib.sha256(source.encode("utf-8")).hexdigest()[:16]
|
| 305 |
+
return cache_dir / f"run_{run.run_id:03d}_samples_{samples}_{digest}.npz"
|
| 306 |
+
|
| 307 |
+
|
| 308 |
+
def sample_one(run: RunFile, cache_dir: Path, samples: int, seed: int, force: bool) -> tuple[int, np.ndarray, np.ndarray, np.ndarray]:
|
| 309 |
+
cache = cache_path(cache_dir, run, samples, seed)
|
| 310 |
+
if cache.exists() and not force:
|
| 311 |
+
data = np.load(cache)
|
| 312 |
+
points = np.asarray(data["points"], dtype=np.float32)
|
| 313 |
+
bbox_min = np.asarray(data["bbox_min"], dtype=np.float32)
|
| 314 |
+
bbox_max = np.asarray(data["bbox_max"], dtype=np.float32)
|
| 315 |
+
if points.shape == (samples, 3):
|
| 316 |
+
return run.run_id, points, bbox_min, bbox_max
|
| 317 |
+
|
| 318 |
+
mesh = load_mesh(run.stl_path)
|
| 319 |
+
points = sample_mesh_surface(mesh, samples, seed + run.run_id)
|
| 320 |
+
bbox_min = np.asarray(mesh.bounds[0], dtype=np.float32)
|
| 321 |
+
bbox_max = np.asarray(mesh.bounds[1], dtype=np.float32)
|
| 322 |
+
np.savez_compressed(
|
| 323 |
+
cache,
|
| 324 |
+
run_id=np.asarray(run.run_id, dtype=np.int32),
|
| 325 |
+
points=points,
|
| 326 |
+
bbox_min=bbox_min,
|
| 327 |
+
bbox_max=bbox_max,
|
| 328 |
+
source=str(run.stl_path),
|
| 329 |
+
samples=np.asarray(samples, dtype=np.int32),
|
| 330 |
+
seed=np.asarray(seed, dtype=np.int32),
|
| 331 |
+
)
|
| 332 |
+
return run.run_id, points, bbox_min, bbox_max
|
| 333 |
+
|
| 334 |
+
|
| 335 |
+
def sample_point_clouds(
|
| 336 |
+
runs: list[RunFile],
|
| 337 |
+
cache_dir: Path,
|
| 338 |
+
samples: int,
|
| 339 |
+
seed: int,
|
| 340 |
+
workers: int,
|
| 341 |
+
force: bool,
|
| 342 |
+
) -> tuple[list[int], list[np.ndarray], np.ndarray, np.ndarray]:
|
| 343 |
+
cache_dir.mkdir(parents=True, exist_ok=True)
|
| 344 |
+
started = time.time()
|
| 345 |
+
print(f"Sampling/caching {len(runs)} STL point clouds with {samples} points each...")
|
| 346 |
+
|
| 347 |
+
outputs: list[tuple[int, np.ndarray, np.ndarray, np.ndarray]] = []
|
| 348 |
+
with ThreadPoolExecutor(max_workers=max(1, workers)) as pool:
|
| 349 |
+
futures = [pool.submit(sample_one, run, cache_dir, samples, seed, force) for run in runs]
|
| 350 |
+
for idx, future in enumerate(as_completed(futures), start=1):
|
| 351 |
+
outputs.append(future.result())
|
| 352 |
+
if idx == len(futures) or idx % 25 == 0:
|
| 353 |
+
print(f" sampled {idx}/{len(futures)}")
|
| 354 |
+
|
| 355 |
+
outputs.sort(key=lambda x: x[0])
|
| 356 |
+
run_ids = [x[0] for x in outputs]
|
| 357 |
+
clouds = [x[1] for x in outputs]
|
| 358 |
+
bbox_min = np.stack([x[2] for x in outputs])
|
| 359 |
+
bbox_max = np.stack([x[3] for x in outputs])
|
| 360 |
+
print(f"Sampling complete in {time.time() - started:.1f}s")
|
| 361 |
+
return run_ids, clouds, bbox_min, bbox_max
|
| 362 |
+
|
| 363 |
+
|
| 364 |
+
def normalize_clouds(
|
| 365 |
+
clouds: list[np.ndarray],
|
| 366 |
+
bbox_min: np.ndarray,
|
| 367 |
+
bbox_max: np.ndarray,
|
| 368 |
+
center: str,
|
| 369 |
+
scale_mode: str,
|
| 370 |
+
) -> tuple[list[np.ndarray], dict[str, float | str]]:
|
| 371 |
+
result: list[np.ndarray] = []
|
| 372 |
+
bbox_diag = np.linalg.norm(bbox_max - bbox_min, axis=1)
|
| 373 |
+
global_scale = float(np.median(bbox_diag))
|
| 374 |
+
if not math.isfinite(global_scale) or global_scale <= 0:
|
| 375 |
+
global_scale = 1.0
|
| 376 |
+
|
| 377 |
+
for idx, points in enumerate(clouds):
|
| 378 |
+
pts = points.astype(np.float32, copy=True)
|
| 379 |
+
if center == "bbox":
|
| 380 |
+
pts -= ((bbox_min[idx] + bbox_max[idx]) * 0.5).astype(np.float32)
|
| 381 |
+
elif center == "centroid":
|
| 382 |
+
pts -= pts.mean(axis=0, keepdims=True)
|
| 383 |
+
|
| 384 |
+
if scale_mode == "global_median_bbox":
|
| 385 |
+
scale = global_scale
|
| 386 |
+
elif scale_mode == "per_mesh_bbox":
|
| 387 |
+
scale = float(bbox_diag[idx]) if bbox_diag[idx] > 0 else 1.0
|
| 388 |
+
else:
|
| 389 |
+
scale = 1.0
|
| 390 |
+
pts /= np.float32(scale)
|
| 391 |
+
result.append(pts)
|
| 392 |
+
|
| 393 |
+
metadata: dict[str, float | str] = {
|
| 394 |
+
"center": center,
|
| 395 |
+
"scale_mode": scale_mode,
|
| 396 |
+
"global_median_bbox_diag": global_scale,
|
| 397 |
+
}
|
| 398 |
+
return result, metadata
|
| 399 |
+
|
| 400 |
+
|
| 401 |
+
def pair_chamfer_rms(i: int, j: int, clouds: list[np.ndarray], trees: list[cKDTree]) -> tuple[int, int, float]:
|
| 402 |
+
a_to_b, _ = trees[j].query(clouds[i], k=1)
|
| 403 |
+
b_to_a, _ = trees[i].query(clouds[j], k=1)
|
| 404 |
+
chamfer = float(np.sqrt(0.5 * (np.mean(a_to_b * a_to_b) + np.mean(b_to_a * b_to_a))))
|
| 405 |
+
return i, j, chamfer
|
| 406 |
+
|
| 407 |
+
|
| 408 |
+
def matrix_metadata_path(output_dir: Path) -> Path:
|
| 409 |
+
return output_dir / "chamfer_distance_matrix.meta.json"
|
| 410 |
+
|
| 411 |
+
|
| 412 |
+
def matrix_is_compatible(output_dir: Path, run_ids: list[int], args: argparse.Namespace) -> bool:
|
| 413 |
+
matrix_path = output_dir / "chamfer_distance_matrix.npy"
|
| 414 |
+
meta_path = matrix_metadata_path(output_dir)
|
| 415 |
+
if not matrix_path.exists() or not meta_path.exists():
|
| 416 |
+
return False
|
| 417 |
+
try:
|
| 418 |
+
meta = json.loads(meta_path.read_text(encoding="utf-8"))
|
| 419 |
+
except Exception:
|
| 420 |
+
return False
|
| 421 |
+
return (
|
| 422 |
+
meta.get("run_ids") == run_ids
|
| 423 |
+
and meta.get("samples") == args.samples
|
| 424 |
+
and meta.get("seed") == args.seed
|
| 425 |
+
and meta.get("center") == args.center
|
| 426 |
+
and meta.get("scale_mode") == args.scale_mode
|
| 427 |
+
and meta.get("metric") == "symmetric_chamfer_rms"
|
| 428 |
+
)
|
| 429 |
+
|
| 430 |
+
|
| 431 |
+
def compute_chamfer_matrix(
|
| 432 |
+
run_ids: list[int],
|
| 433 |
+
clouds: list[np.ndarray],
|
| 434 |
+
output_dir: Path,
|
| 435 |
+
args: argparse.Namespace,
|
| 436 |
+
normalization_metadata: dict[str, float | str],
|
| 437 |
+
) -> np.ndarray:
|
| 438 |
+
matrix_path = output_dir / "chamfer_distance_matrix.npy"
|
| 439 |
+
if matrix_is_compatible(output_dir, run_ids, args) and not args.force_matrix:
|
| 440 |
+
print(f"Loading existing compatible matrix: {matrix_path}")
|
| 441 |
+
return np.load(matrix_path)
|
| 442 |
+
|
| 443 |
+
n = len(clouds)
|
| 444 |
+
print(f"Building {n} KD trees...")
|
| 445 |
+
trees = [cKDTree(points) for points in clouds]
|
| 446 |
+
matrix = np.zeros((n, n), dtype=np.float32)
|
| 447 |
+
pairs = [(i, j) for i in range(n) for j in range(i + 1, n)]
|
| 448 |
+
started = time.time()
|
| 449 |
+
print(f"Computing {len(pairs)} pairwise symmetric Chamfer RMS distances...")
|
| 450 |
+
|
| 451 |
+
with ThreadPoolExecutor(max_workers=max(1, args.workers)) as pool:
|
| 452 |
+
futures = [pool.submit(pair_chamfer_rms, i, j, clouds, trees) for i, j in pairs]
|
| 453 |
+
for done, future in enumerate(as_completed(futures), start=1):
|
| 454 |
+
i, j, value = future.result()
|
| 455 |
+
matrix[i, j] = matrix[j, i] = np.float32(value)
|
| 456 |
+
if done == len(futures) or done % 1000 == 0:
|
| 457 |
+
elapsed = time.time() - started
|
| 458 |
+
rate = done / elapsed if elapsed > 0 else 0.0
|
| 459 |
+
remaining = (len(futures) - done) / rate if rate > 0 else float("nan")
|
| 460 |
+
print(
|
| 461 |
+
f" pairs {done}/{len(futures)} "
|
| 462 |
+
f"({100 * done / len(futures):5.1f}%), ETA {remaining / 60:5.1f} min"
|
| 463 |
+
)
|
| 464 |
+
|
| 465 |
+
if args.write_matrix:
|
| 466 |
+
np.save(matrix_path, matrix)
|
| 467 |
+
metadata = {
|
| 468 |
+
"run_ids": run_ids,
|
| 469 |
+
"samples": args.samples,
|
| 470 |
+
"seed": args.seed,
|
| 471 |
+
"center": args.center,
|
| 472 |
+
"scale_mode": args.scale_mode,
|
| 473 |
+
"metric": "symmetric_chamfer_rms",
|
| 474 |
+
"created_unix_time": time.time(),
|
| 475 |
+
**normalization_metadata,
|
| 476 |
+
}
|
| 477 |
+
matrix_metadata_path(output_dir).write_text(json.dumps(metadata, indent=2) + "\n", encoding="utf-8")
|
| 478 |
+
print(f"Matrix written: {matrix_path}")
|
| 479 |
+
return matrix
|
| 480 |
+
|
| 481 |
+
|
| 482 |
+
def write_csv_matrix(path: Path, run_ids: list[int], matrix: np.ndarray) -> None:
|
| 483 |
+
with path.open("w", encoding="utf-8", newline="") as f:
|
| 484 |
+
writer = csv.writer(f)
|
| 485 |
+
writer.writerow(["run", *[case_id(rid) for rid in run_ids]])
|
| 486 |
+
for rid, row in zip(run_ids, matrix):
|
| 487 |
+
writer.writerow([case_id(rid), *[f"{float(x):.8g}" for x in row]])
|
| 488 |
+
|
| 489 |
+
|
| 490 |
+
def metric_values(run_ids: list[int], matrix: np.ndarray, k_neighbors: int) -> tuple[list[dict[str, float | int]], dict[int, float]]:
|
| 491 |
+
n = len(run_ids)
|
| 492 |
+
if n < 2:
|
| 493 |
+
raise SystemExit("At least two STL files are required to compute Chamfer metrics")
|
| 494 |
+
k = min(max(1, k_neighbors), n - 1)
|
| 495 |
+
means = matrix.sum(axis=1) / (n - 1)
|
| 496 |
+
medoid_index = int(np.argmin(means))
|
| 497 |
+
medoid_run = run_ids[medoid_index]
|
| 498 |
+
rows: list[dict[str, float | int]] = []
|
| 499 |
+
knn_scores: dict[int, float] = {}
|
| 500 |
+
|
| 501 |
+
for idx, rid in enumerate(run_ids):
|
| 502 |
+
nonself = np.delete(matrix[idx], idx)
|
| 503 |
+
sorted_dist = np.sort(nonself)
|
| 504 |
+
nearest = float(sorted_dist[0])
|
| 505 |
+
knn_mean = float(np.mean(sorted_dist[:k]))
|
| 506 |
+
mean_all = float(means[idx])
|
| 507 |
+
medoid_distance = float(matrix[idx, medoid_index])
|
| 508 |
+
knn_scores[rid] = knn_mean
|
| 509 |
+
rows.append(
|
| 510 |
+
{
|
| 511 |
+
"run": rid,
|
| 512 |
+
"nearest_neighbor_chamfer": nearest,
|
| 513 |
+
f"mean_{k}_nn_chamfer": knn_mean,
|
| 514 |
+
"mean_all_chamfer": mean_all,
|
| 515 |
+
"medoid_chamfer": medoid_distance,
|
| 516 |
+
"medoid_run": medoid_run,
|
| 517 |
+
}
|
| 518 |
+
)
|
| 519 |
+
return rows, knn_scores
|
| 520 |
+
|
| 521 |
+
|
| 522 |
+
def score_map(
|
| 523 |
+
run_ids: list[int],
|
| 524 |
+
matrix: np.ndarray,
|
| 525 |
+
metrics: list[dict[str, float | int]],
|
| 526 |
+
score_name: str,
|
| 527 |
+
k_neighbors: int,
|
| 528 |
+
) -> dict[int, float]:
|
| 529 |
+
if score_name == "knn":
|
| 530 |
+
key = f"mean_{min(max(1, k_neighbors), len(run_ids) - 1)}_nn_chamfer"
|
| 531 |
+
elif score_name == "medoid":
|
| 532 |
+
key = "medoid_chamfer"
|
| 533 |
+
else:
|
| 534 |
+
key = "mean_all_chamfer"
|
| 535 |
+
return {int(row["run"]): float(row[key]) for row in metrics}
|
| 536 |
+
|
| 537 |
+
|
| 538 |
+
def split_pool(pool: list[int], val_fraction_of_pool: float, seed: int, salt: str) -> tuple[list[int], list[int]]:
|
| 539 |
+
rng_seed = hashlib.sha256(f"{seed}:{salt}".encode("utf-8")).digest()[:8]
|
| 540 |
+
rng = random.Random(int.from_bytes(rng_seed, "big"))
|
| 541 |
+
shuffled = pool.copy()
|
| 542 |
+
rng.shuffle(shuffled)
|
| 543 |
+
n_val = round(len(pool) * val_fraction_of_pool)
|
| 544 |
+
val = sorted(shuffled[:n_val])
|
| 545 |
+
train = sorted(shuffled[n_val:])
|
| 546 |
+
return train, val
|
| 547 |
+
|
| 548 |
+
|
| 549 |
+
def ranked_ood_split(
|
| 550 |
+
scores: dict[int, float],
|
| 551 |
+
test_fraction: float,
|
| 552 |
+
val_fraction: float,
|
| 553 |
+
seed: int,
|
| 554 |
+
salt: str,
|
| 555 |
+
) -> tuple[list[int], list[int], list[int]]:
|
| 556 |
+
ranked = sorted(scores, key=lambda rid: (scores[rid], rid))
|
| 557 |
+
n_test = round(len(ranked) * test_fraction)
|
| 558 |
+
test = sorted(ranked[-n_test:])
|
| 559 |
+
pool = sorted(ranked[:-n_test])
|
| 560 |
+
val_fraction_of_pool = val_fraction / (1.0 - test_fraction)
|
| 561 |
+
train, val = split_pool(pool, val_fraction_of_pool, seed, salt)
|
| 562 |
+
return train, val, test
|
| 563 |
+
|
| 564 |
+
|
| 565 |
+
def make_case_ids(values: Iterable[int]) -> list[str]:
|
| 566 |
+
return [case_id(rid) for rid in sorted(values)]
|
| 567 |
+
|
| 568 |
+
|
| 569 |
+
def farthest_order(pool: list[int], run_to_index: dict[int, int], matrix: np.ndarray, seed: int) -> list[int]:
|
| 570 |
+
if not pool:
|
| 571 |
+
return []
|
| 572 |
+
|
| 573 |
+
mean_dist = {
|
| 574 |
+
rid: float(np.mean([matrix[run_to_index[rid], run_to_index[other]] for other in pool if other != rid]))
|
| 575 |
+
for rid in pool
|
| 576 |
+
}
|
| 577 |
+
first = max(pool, key=lambda rid: (mean_dist[rid], -rid))
|
| 578 |
+
selected = [first]
|
| 579 |
+
remaining = [rid for rid in pool if rid != first]
|
| 580 |
+
|
| 581 |
+
rng_seed = hashlib.sha256(f"{seed}:geometry_sparse_order".encode("utf-8")).digest()[:8]
|
| 582 |
+
rng = random.Random(int.from_bytes(rng_seed, "big"))
|
| 583 |
+
tie_break = {rid: rng.random() for rid in pool}
|
| 584 |
+
|
| 585 |
+
while remaining:
|
| 586 |
+
next_rid = max(
|
| 587 |
+
remaining,
|
| 588 |
+
key=lambda rid: (
|
| 589 |
+
min(matrix[run_to_index[rid], run_to_index[chosen]] for chosen in selected),
|
| 590 |
+
tie_break[rid],
|
| 591 |
+
),
|
| 592 |
+
)
|
| 593 |
+
selected.append(next_rid)
|
| 594 |
+
remaining.remove(next_rid)
|
| 595 |
+
return selected
|
| 596 |
+
|
| 597 |
+
|
| 598 |
+
def load_base_manifest(path: Path | None) -> dict[str, list[str]]:
|
| 599 |
+
if path is None:
|
| 600 |
+
candidate = Path(__file__).resolve().parents[1] / "splits" / "manifest.json"
|
| 601 |
+
if not candidate.exists():
|
| 602 |
+
return {}
|
| 603 |
+
path = candidate
|
| 604 |
+
if not path.exists():
|
| 605 |
+
raise SystemExit(f"Base manifest does not exist: {path}")
|
| 606 |
+
return json.loads(path.read_text(encoding="utf-8"))
|
| 607 |
+
|
| 608 |
+
|
| 609 |
+
def write_metrics_csv(path: Path, metrics: list[dict[str, float | int]], scores: dict[int, float]) -> None:
|
| 610 |
+
fieldnames = list(metrics[0].keys()) + ["ood_score"]
|
| 611 |
+
with path.open("w", encoding="utf-8", newline="") as f:
|
| 612 |
+
writer = csv.DictWriter(f, fieldnames=fieldnames)
|
| 613 |
+
writer.writeheader()
|
| 614 |
+
for row in metrics:
|
| 615 |
+
out = dict(row)
|
| 616 |
+
out["ood_score"] = scores[int(row["run"])]
|
| 617 |
+
writer.writerow(out)
|
| 618 |
+
|
| 619 |
+
|
| 620 |
+
def build_manifest(
|
| 621 |
+
run_ids: list[int],
|
| 622 |
+
matrix: np.ndarray,
|
| 623 |
+
scores: dict[int, float],
|
| 624 |
+
args: argparse.Namespace,
|
| 625 |
+
) -> dict[str, list[str]]:
|
| 626 |
+
train, val, test = ranked_ood_split(
|
| 627 |
+
scores,
|
| 628 |
+
test_fraction=args.test_fraction,
|
| 629 |
+
val_fraction=args.val_fraction,
|
| 630 |
+
seed=args.seed,
|
| 631 |
+
salt="geometry_val_selection",
|
| 632 |
+
)
|
| 633 |
+
manifest: dict[str, list[str]] = {
|
| 634 |
+
"geometry_train": make_case_ids(train),
|
| 635 |
+
"geometry_val": make_case_ids(val),
|
| 636 |
+
"geometry_test": make_case_ids(test),
|
| 637 |
+
}
|
| 638 |
+
|
| 639 |
+
base = load_base_manifest(args.base_manifest)
|
| 640 |
+
required = {"full_train", "full_val", "full_test"}
|
| 641 |
+
if not required <= set(base):
|
| 642 |
+
return manifest
|
| 643 |
+
|
| 644 |
+
available = set(run_ids)
|
| 645 |
+
full_train = [run_id(cid) for cid in base["full_train"] if run_id(cid) in available]
|
| 646 |
+
if len(full_train) < 20:
|
| 647 |
+
return manifest
|
| 648 |
+
|
| 649 |
+
run_to_index = {rid: idx for idx, rid in enumerate(run_ids)}
|
| 650 |
+
order = farthest_order(full_train, run_to_index, matrix, args.seed)
|
| 651 |
+
medium = round(len(order) / 3)
|
| 652 |
+
scarce = round(len(order) / 6)
|
| 653 |
+
super_scarce = max(1, round(len(order) / 36))
|
| 654 |
+
sparse_sets = {
|
| 655 |
+
"geometry_medium": sorted(order[:medium]),
|
| 656 |
+
"geometry_scarce": sorted(order[:scarce]),
|
| 657 |
+
"geometry_super_scarce": sorted(order[:super_scarce]),
|
| 658 |
+
}
|
| 659 |
+
for name, ids in sparse_sets.items():
|
| 660 |
+
manifest[f"{name}_train"] = make_case_ids(ids)
|
| 661 |
+
manifest[f"{name}_val"] = [cid for cid in base["full_val"] if run_id(cid) in available]
|
| 662 |
+
manifest[f"{name}_test"] = [cid for cid in base["full_test"] if run_id(cid) in available]
|
| 663 |
+
manifest["geometry_sparse_order"] = make_case_ids(order)
|
| 664 |
+
return manifest
|
| 665 |
+
|
| 666 |
+
|
| 667 |
+
def summarize_split(name: str, manifest: dict[str, list[str]]) -> str:
|
| 668 |
+
return (
|
| 669 |
+
f"{name}: "
|
| 670 |
+
f"train={len(manifest.get(name + '_train', []))}, "
|
| 671 |
+
f"val={len(manifest.get(name + '_val', []))}, "
|
| 672 |
+
f"test={len(manifest.get(name + '_test', []))}"
|
| 673 |
+
)
|
| 674 |
+
|
| 675 |
+
|
| 676 |
+
def main() -> None:
|
| 677 |
+
args = parse_args()
|
| 678 |
+
require_dependencies()
|
| 679 |
+
args.data_root = args.data_root.expanduser().resolve()
|
| 680 |
+
args.output_dir = args.output_dir.expanduser().resolve()
|
| 681 |
+
args.output_dir.mkdir(parents=True, exist_ok=True)
|
| 682 |
+
|
| 683 |
+
requested_runs = parse_run_expression(args.runs)
|
| 684 |
+
run_files = discover_files(args.data_root, requested_runs, args.allow_missing)
|
| 685 |
+
print(f"Found {len(run_files)} STL files under {args.data_root}")
|
| 686 |
+
|
| 687 |
+
run_ids, raw_clouds, bbox_min, bbox_max = sample_point_clouds(
|
| 688 |
+
run_files,
|
| 689 |
+
cache_dir=args.output_dir / "point_cloud_cache",
|
| 690 |
+
samples=args.samples,
|
| 691 |
+
seed=args.seed,
|
| 692 |
+
workers=args.sample_workers,
|
| 693 |
+
force=args.force_resample,
|
| 694 |
+
)
|
| 695 |
+
clouds, normalization_metadata = normalize_clouds(
|
| 696 |
+
raw_clouds,
|
| 697 |
+
bbox_min,
|
| 698 |
+
bbox_max,
|
| 699 |
+
center=args.center,
|
| 700 |
+
scale_mode=args.scale_mode,
|
| 701 |
+
)
|
| 702 |
+
matrix = compute_chamfer_matrix(run_ids, clouds, args.output_dir, args, normalization_metadata)
|
| 703 |
+
if args.write_csv_matrix:
|
| 704 |
+
write_csv_matrix(args.output_dir / "chamfer_distance_matrix.csv", run_ids, matrix)
|
| 705 |
+
|
| 706 |
+
metrics, _knn_scores = metric_values(run_ids, matrix, args.k_neighbors)
|
| 707 |
+
scores = score_map(run_ids, matrix, metrics, args.score, args.k_neighbors)
|
| 708 |
+
write_metrics_csv(args.output_dir / "chamfer_metrics.csv", metrics, scores)
|
| 709 |
+
|
| 710 |
+
manifest = build_manifest(run_ids, matrix, scores, args)
|
| 711 |
+
manifest_path = args.output_dir / "chamfer_manifest.json"
|
| 712 |
+
manifest_path.write_text(json.dumps(manifest, indent=2) + "\n", encoding="utf-8")
|
| 713 |
+
|
| 714 |
+
print()
|
| 715 |
+
print("Chamfer split summary")
|
| 716 |
+
print("=" * 60)
|
| 717 |
+
print(f"Runs: {len(run_ids)}")
|
| 718 |
+
print(f"Metric: symmetric Chamfer RMS; score={args.score}")
|
| 719 |
+
print(f"Metrics: {args.output_dir / 'chamfer_metrics.csv'}")
|
| 720 |
+
if args.write_matrix:
|
| 721 |
+
print(f"Matrix: {args.output_dir / 'chamfer_distance_matrix.npy'}")
|
| 722 |
+
else:
|
| 723 |
+
print("Matrix: not written; pass --write-matrix to save the full NPY")
|
| 724 |
+
print(f"Manifest: {manifest_path}")
|
| 725 |
+
print(" " + summarize_split("geometry", manifest))
|
| 726 |
+
for prefix in ["geometry_medium", "geometry_scarce", "geometry_super_scarce"]:
|
| 727 |
+
if f"{prefix}_train" in manifest:
|
| 728 |
+
print(" " + summarize_split(prefix, manifest))
|
| 729 |
+
|
| 730 |
+
|
| 731 |
+
if __name__ == "__main__":
|
| 732 |
+
try:
|
| 733 |
+
main()
|
| 734 |
+
except KeyboardInterrupt:
|
| 735 |
+
sys.exit("Interrupted")
|
splits/compute_image_metrics.py
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Compute AhmedML image-derived wake scores from downloaded UxMean PNGs.
|
| 2 |
+
|
| 3 |
+
The metric is intentionally simple and reproducible: for each run, it reads the
|
| 4 |
+
Y-4 centreline/near-centreline slice and three near-base X slices, crops out the
|
| 5 |
+
upper background-dominated band, and averages a color-intensity score over the
|
| 6 |
+
lower flow region. The resulting score is used for the `image_wake` OOD split.
|
| 7 |
+
"""
|
| 8 |
+
|
| 9 |
+
from __future__ import annotations
|
| 10 |
+
|
| 11 |
+
import argparse
|
| 12 |
+
import csv
|
| 13 |
+
import os
|
| 14 |
+
from pathlib import Path
|
| 15 |
+
|
| 16 |
+
import numpy as np
|
| 17 |
+
from PIL import Image
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
N_CASES = 500
|
| 21 |
+
RUN_IDS = list(range(1, N_CASES + 1))
|
| 22 |
+
SCRIPT_DIR = Path(__file__).resolve().parent
|
| 23 |
+
REPOSITORY_ROOT = SCRIPT_DIR.parent
|
| 24 |
+
DATA_DIR = SCRIPT_DIR
|
| 25 |
+
DEFAULT_ASSET_ROOT = Path(os.environ.get("AHMEDML_ASSET_ROOT", REPOSITORY_ROOT.parent / "ahmedml_hf_assets"))
|
| 26 |
+
CENTERLINE_Y_INDEX = 4
|
| 27 |
+
NEAR_WAKE_X_INDICES = (14, 15, 16)
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
def default_data_root() -> Path:
|
| 31 |
+
return DEFAULT_ASSET_ROOT if DEFAULT_ASSET_ROOT.exists() else DATA_DIR
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
def parse_args() -> argparse.Namespace:
|
| 35 |
+
parser = argparse.ArgumentParser(description="Compute AhmedML UxMean image wake metrics.")
|
| 36 |
+
parser.add_argument("--data-root", type=Path, default=default_data_root(), help="Directory containing run_*/images/UxMean PNGs.")
|
| 37 |
+
parser.add_argument("--output", type=Path, default=DATA_DIR / "image_metrics.csv", help="CSV output path.")
|
| 38 |
+
parser.add_argument("--min-images", type=int, default=4, help="Minimum targeted UxMean PNGs required for an observed score.")
|
| 39 |
+
return parser.parse_args()
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
def _valid_png(path: Path) -> bool:
|
| 43 |
+
if path.name.startswith("._"):
|
| 44 |
+
return False
|
| 45 |
+
try:
|
| 46 |
+
with path.open("rb") as f:
|
| 47 |
+
return f.read(8) == b"\x89PNG\r\n\x1a\n"
|
| 48 |
+
except OSError:
|
| 49 |
+
return False
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
def _image_score(path: Path) -> float | None:
|
| 53 |
+
if not _valid_png(path):
|
| 54 |
+
return None
|
| 55 |
+
try:
|
| 56 |
+
with Image.open(path) as img:
|
| 57 |
+
rgb = np.asarray(img.convert("RGB"), dtype=np.float32) / 255.0
|
| 58 |
+
except Exception:
|
| 59 |
+
return None
|
| 60 |
+
|
| 61 |
+
height, width, _ = rgb.shape
|
| 62 |
+
# The upper band in AhmedML UxMean slices is mostly uniform far-field color.
|
| 63 |
+
# The lower central region contains the visible body/wake/ground structure.
|
| 64 |
+
crop = rgb[int(0.30 * height):int(0.96 * height), int(0.08 * width):int(0.92 * width)]
|
| 65 |
+
brightness = crop.mean(axis=2)
|
| 66 |
+
chroma = crop.max(axis=2) - crop.min(axis=2)
|
| 67 |
+
warm = np.clip(crop[:, :, 0] - crop[:, :, 2], 0.0, 1.0)
|
| 68 |
+
return float(0.45 * brightness.mean() + 0.35 * chroma.mean() + 0.20 * warm.mean())
|
| 69 |
+
|
| 70 |
+
|
| 71 |
+
def uxmean_path(data_root: Path, run: int, axis: str, index: int) -> Path:
|
| 72 |
+
return data_root / f"run_{run}" / "images" / "UxMean" / f"run_{run}-slice-UMean-0-{axis}-{index}.png"
|
| 73 |
+
|
| 74 |
+
|
| 75 |
+
def target_uxmean_images(data_root: Path, run: int) -> list[tuple[str, Path]]:
|
| 76 |
+
return [
|
| 77 |
+
(f"Y-{CENTERLINE_Y_INDEX}", uxmean_path(data_root, run, "Y", CENTERLINE_Y_INDEX)),
|
| 78 |
+
*[(f"X-{index}", uxmean_path(data_root, run, "X", index)) for index in NEAR_WAKE_X_INDICES],
|
| 79 |
+
]
|
| 80 |
+
|
| 81 |
+
|
| 82 |
+
def run_image_score(data_root: Path, run: int, min_images: int) -> tuple[float, int]:
|
| 83 |
+
scores: dict[str, float] = {}
|
| 84 |
+
for label, path in target_uxmean_images(data_root, run):
|
| 85 |
+
score = _image_score(path)
|
| 86 |
+
if score is not None:
|
| 87 |
+
scores[label] = score
|
| 88 |
+
if len(scores) < min_images:
|
| 89 |
+
return float("nan"), len(scores)
|
| 90 |
+
y_score = scores.get(f"Y-{CENTERLINE_Y_INDEX}")
|
| 91 |
+
x_scores = [scores[f"X-{index}"] for index in NEAR_WAKE_X_INDICES if f"X-{index}" in scores]
|
| 92 |
+
if y_score is None or len(x_scores) != len(NEAR_WAKE_X_INDICES):
|
| 93 |
+
return float("nan"), len(scores)
|
| 94 |
+
return float(0.5 * y_score + 0.5 * np.mean(x_scores)), len(scores)
|
| 95 |
+
|
| 96 |
+
|
| 97 |
+
def main() -> None:
|
| 98 |
+
args = parse_args()
|
| 99 |
+
args.output.parent.mkdir(parents=True, exist_ok=True)
|
| 100 |
+
with args.output.open("w", encoding="utf-8", newline="") as f:
|
| 101 |
+
writer = csv.DictWriter(
|
| 102 |
+
f,
|
| 103 |
+
fieldnames=["run", "image_wake_score", "image_wake_observed", "uxmean_images", "uxmean_slices"],
|
| 104 |
+
)
|
| 105 |
+
writer.writeheader()
|
| 106 |
+
for run in RUN_IDS:
|
| 107 |
+
score, count = run_image_score(args.data_root, run, args.min_images)
|
| 108 |
+
observed = not np.isnan(score)
|
| 109 |
+
writer.writerow(
|
| 110 |
+
{
|
| 111 |
+
"run": run,
|
| 112 |
+
"image_wake_score": "" if not observed else score,
|
| 113 |
+
"image_wake_observed": str(observed).lower(),
|
| 114 |
+
"uxmean_images": count,
|
| 115 |
+
"uxmean_slices": "Y-4;X-14;X-15;X-16",
|
| 116 |
+
}
|
| 117 |
+
)
|
| 118 |
+
print(f"Wrote {args.output}")
|
| 119 |
+
|
| 120 |
+
|
| 121 |
+
if __name__ == "__main__":
|
| 122 |
+
main()
|
splits/create_example_figures.py
ADDED
|
@@ -0,0 +1,251 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Create low/high example figures for AhmedML split report."""
|
| 2 |
+
|
| 3 |
+
from __future__ import annotations
|
| 4 |
+
|
| 5 |
+
import argparse
|
| 6 |
+
import csv
|
| 7 |
+
import os
|
| 8 |
+
from pathlib import Path
|
| 9 |
+
|
| 10 |
+
import matplotlib.pyplot as plt
|
| 11 |
+
import numpy as np
|
| 12 |
+
from PIL import Image
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
SCRIPT_DIR = Path(__file__).resolve().parent
|
| 16 |
+
REPOSITORY_ROOT = SCRIPT_DIR.parent
|
| 17 |
+
DATA_DIR = SCRIPT_DIR
|
| 18 |
+
DEFAULT_ASSET_ROOT = Path(os.environ.get("AHMEDML_ASSET_ROOT", REPOSITORY_ROOT.parent / "ahmedml_hf_assets"))
|
| 19 |
+
DOCS_DIR = SCRIPT_DIR
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
def default_asset_root() -> Path:
|
| 23 |
+
return DEFAULT_ASSET_ROOT if DEFAULT_ASSET_ROOT.exists() else DATA_DIR
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
def parse_args() -> argparse.Namespace:
|
| 27 |
+
parser = argparse.ArgumentParser(description="Create AhmedML report example figures.")
|
| 28 |
+
parser.add_argument("--data-root", type=Path, default=DATA_DIR, help="Directory containing force and metric CSV files.")
|
| 29 |
+
parser.add_argument("--force-root", type=Path, default=REPOSITORY_ROOT, help="Directory containing force_mom_all.csv.")
|
| 30 |
+
parser.add_argument("--asset-root", type=Path, default=default_asset_root(), help="Directory containing run_*/ STL and PNG assets.")
|
| 31 |
+
parser.add_argument("--output-dir", type=Path, default=DOCS_DIR, help="Directory for PNG figures.")
|
| 32 |
+
parser.add_argument("--max-stl-points", type=int, default=140000, help="Maximum STL vertices plotted per run.")
|
| 33 |
+
return parser.parse_args()
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
def clean_row(row: dict[str, str]) -> dict[str, str]:
|
| 37 |
+
return {key.strip(): value.strip() for key, value in row.items() if key is not None}
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
def load_force(force_root: Path) -> dict[int, dict[str, float]]:
|
| 41 |
+
candidates = [
|
| 42 |
+
force_root / "force_mom_all.csv",
|
| 43 |
+
force_root / "data" / "force_mom_all.csv",
|
| 44 |
+
REPOSITORY_ROOT / "force_mom_all.csv",
|
| 45 |
+
REPOSITORY_ROOT / "data" / "force_mom_all.csv",
|
| 46 |
+
]
|
| 47 |
+
force_path = next((path for path in candidates if path.exists()), candidates[0])
|
| 48 |
+
with force_path.open(encoding="utf-8-sig", newline="") as f:
|
| 49 |
+
return {
|
| 50 |
+
int(clean_row(row)["run"]): {
|
| 51 |
+
"cd": float(clean_row(row)["cd"]),
|
| 52 |
+
"cl": float(clean_row(row)["cl"]),
|
| 53 |
+
}
|
| 54 |
+
for row in csv.DictReader(f)
|
| 55 |
+
}
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
def load_metric(path: Path, column: str) -> dict[int, float]:
|
| 59 |
+
with path.open(encoding="utf-8-sig", newline="") as f:
|
| 60 |
+
return {int(row["run"]): float(row[column]) for row in csv.DictReader(f)}
|
| 61 |
+
|
| 62 |
+
|
| 63 |
+
def low_high(scores: dict[int, float]) -> tuple[int, int]:
|
| 64 |
+
ordered = sorted(scores, key=lambda run: (scores[run], run))
|
| 65 |
+
return ordered[0], ordered[-1]
|
| 66 |
+
|
| 67 |
+
|
| 68 |
+
def valid_png(path: Path) -> bool:
|
| 69 |
+
try:
|
| 70 |
+
with path.open("rb") as f:
|
| 71 |
+
return f.read(8) == b"\x89PNG\r\n\x1a\n"
|
| 72 |
+
except OSError:
|
| 73 |
+
return False
|
| 74 |
+
|
| 75 |
+
|
| 76 |
+
def read_rgb(path: Path) -> np.ndarray:
|
| 77 |
+
if not valid_png(path):
|
| 78 |
+
raise ValueError(f"Not a valid PNG: {path}")
|
| 79 |
+
with Image.open(path) as img:
|
| 80 |
+
return np.asarray(img.convert("RGB"), dtype=np.float32) / 255.0
|
| 81 |
+
|
| 82 |
+
|
| 83 |
+
def scored_crop(path: Path) -> np.ndarray:
|
| 84 |
+
rgb = read_rgb(path)
|
| 85 |
+
height, width, _ = rgb.shape
|
| 86 |
+
return rgb[int(0.30 * height):int(0.96 * height), int(0.08 * width):int(0.92 * width)]
|
| 87 |
+
|
| 88 |
+
|
| 89 |
+
def image_score(path: Path) -> float:
|
| 90 |
+
crop = scored_crop(path)
|
| 91 |
+
brightness = crop.mean(axis=2)
|
| 92 |
+
chroma = crop.max(axis=2) - crop.min(axis=2)
|
| 93 |
+
warm = np.clip(crop[:, :, 0] - crop[:, :, 2], 0.0, 1.0)
|
| 94 |
+
return float(0.45 * brightness.mean() + 0.35 * chroma.mean() + 0.20 * warm.mean())
|
| 95 |
+
|
| 96 |
+
|
| 97 |
+
def uxmean_path(data_root: Path, run: int, axis: str, index: int) -> Path:
|
| 98 |
+
return data_root / f"run_{run}" / "images" / "UxMean" / f"run_{run}-slice-UMean-0-{axis}-{index}.png"
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
def display_crop(path: Path, axis: str) -> np.ndarray:
|
| 102 |
+
rgb = read_rgb(path)
|
| 103 |
+
height, width, _ = rgb.shape
|
| 104 |
+
if axis == "Y":
|
| 105 |
+
return rgb[int(0.34 * height):int(0.98 * height), :]
|
| 106 |
+
return rgb[int(0.20 * height):int(0.98 * height), int(0.04 * width):int(0.96 * width)]
|
| 107 |
+
|
| 108 |
+
|
| 109 |
+
def make_wake_examples(data_root: Path, asset_root: Path, output_dir: Path, force: dict[int, dict[str, float]]) -> None:
|
| 110 |
+
scores = load_metric(data_root / "image_metrics.csv", "image_wake_score")
|
| 111 |
+
low_run, high_run = low_high(scores)
|
| 112 |
+
slices = [("Y", 4, "Y-4 centreline wake"), ("X", 14, "X-14 near-base wake")]
|
| 113 |
+
|
| 114 |
+
fig, axes = plt.subplots(len(slices), 2, figsize=(10.8, 5.8), constrained_layout=True)
|
| 115 |
+
if len(slices) == 1:
|
| 116 |
+
axes = np.asarray([axes])
|
| 117 |
+
for row, (axis, index, slice_label) in enumerate(slices):
|
| 118 |
+
for col, (label, run) in enumerate([("Low image-wake score", low_run), ("High image-wake score", high_run)]):
|
| 119 |
+
ax = axes[row, col]
|
| 120 |
+
ax.imshow(display_crop(uxmean_path(asset_root, run, axis, index), axis))
|
| 121 |
+
ax.set_axis_off()
|
| 122 |
+
ax.set_title(
|
| 123 |
+
f"{label}\n"
|
| 124 |
+
f"run_{run}, {slice_label}, score={scores[run]:.4f}, "
|
| 125 |
+
f"Cd={force[run]['cd']:.4f}, Cl={force[run]['cl']:.4f}",
|
| 126 |
+
fontsize=9,
|
| 127 |
+
)
|
| 128 |
+
fig.suptitle("Image-wake split examples from UxMean Y-4 and near-base X-slice PNGs", fontsize=12)
|
| 129 |
+
output_dir.mkdir(parents=True, exist_ok=True)
|
| 130 |
+
fig.savefig(output_dir / "wake_score_examples.png", dpi=180)
|
| 131 |
+
plt.close(fig)
|
| 132 |
+
|
| 133 |
+
|
| 134 |
+
def load_binary_stl_vertices(path: Path) -> np.ndarray:
|
| 135 |
+
size = path.stat().st_size
|
| 136 |
+
with path.open("rb") as f:
|
| 137 |
+
f.read(80)
|
| 138 |
+
count_data = f.read(4)
|
| 139 |
+
if len(count_data) != 4:
|
| 140 |
+
raise ValueError(f"Malformed STL: {path}")
|
| 141 |
+
face_count = int(np.frombuffer(count_data, dtype="<u4")[0])
|
| 142 |
+
expected_size = 84 + face_count * 50
|
| 143 |
+
if expected_size != size:
|
| 144 |
+
raise ValueError(f"Expected binary STL size {expected_size}, got {size}: {path}")
|
| 145 |
+
dtype = np.dtype(
|
| 146 |
+
[
|
| 147 |
+
("normal", "<f4", (3,)),
|
| 148 |
+
("vertices", "<f4", (3, 3)),
|
| 149 |
+
("attribute", "<u2"),
|
| 150 |
+
]
|
| 151 |
+
)
|
| 152 |
+
data = np.fromfile(f, dtype=dtype, count=face_count)
|
| 153 |
+
return np.asarray(data["vertices"].reshape(-1, 3), dtype=np.float32)
|
| 154 |
+
|
| 155 |
+
|
| 156 |
+
def sample_vertices(vertices: np.ndarray, max_points: int, seed: int) -> np.ndarray:
|
| 157 |
+
if len(vertices) <= max_points:
|
| 158 |
+
return vertices
|
| 159 |
+
rng = np.random.default_rng(seed)
|
| 160 |
+
idx = rng.choice(len(vertices), size=max_points, replace=False)
|
| 161 |
+
return vertices[idx]
|
| 162 |
+
|
| 163 |
+
|
| 164 |
+
def setup_projection_axis(ax, all_vertices: np.ndarray, dims: tuple[int, int], title: str) -> None:
|
| 165 |
+
x = all_vertices[:, dims[0]]
|
| 166 |
+
y = all_vertices[:, dims[1]]
|
| 167 |
+
pad_x = 0.04 * max(1e-9, float(x.max() - x.min()))
|
| 168 |
+
pad_y = 0.08 * max(1e-9, float(y.max() - y.min()))
|
| 169 |
+
ax.set_xlim(float(x.min() - pad_x), float(x.max() + pad_x))
|
| 170 |
+
ax.set_ylim(float(y.min() - pad_y), float(y.max() + pad_y))
|
| 171 |
+
ax.set_aspect("equal", adjustable="box")
|
| 172 |
+
ax.set_title(title, fontsize=10)
|
| 173 |
+
ax.grid(True, color="#e1e6eb", lw=0.6)
|
| 174 |
+
ax.spines["top"].set_visible(False)
|
| 175 |
+
ax.spines["right"].set_visible(False)
|
| 176 |
+
|
| 177 |
+
|
| 178 |
+
def scatter_projection(ax, vertices: np.ndarray, dims: tuple[int, int], color: str, alpha: float, label: str | None = None) -> None:
|
| 179 |
+
ax.scatter(vertices[:, dims[0]], vertices[:, dims[1]], s=0.18, color=color, alpha=alpha, linewidth=0, label=label)
|
| 180 |
+
|
| 181 |
+
|
| 182 |
+
def make_geometry_examples(data_root: Path, asset_root: Path, output_dir: Path, force: dict[int, dict[str, float]], max_points: int) -> None:
|
| 183 |
+
scores = load_metric(data_root / "chamfer_metrics.csv", "ood_score")
|
| 184 |
+
low_run, high_run = low_high(scores)
|
| 185 |
+
low_vertices = sample_vertices(load_binary_stl_vertices(asset_root / f"run_{low_run}" / f"ahmed_{low_run}.stl"), max_points, low_run)
|
| 186 |
+
high_vertices = sample_vertices(load_binary_stl_vertices(asset_root / f"run_{high_run}" / f"ahmed_{high_run}.stl"), max_points, high_run)
|
| 187 |
+
all_vertices = np.vstack([low_vertices, high_vertices])
|
| 188 |
+
|
| 189 |
+
low_color = "#6b7280"
|
| 190 |
+
high_color = "#087f8c"
|
| 191 |
+
fig, axes = plt.subplots(2, 2, figsize=(10.4, 6.2), constrained_layout=True)
|
| 192 |
+
|
| 193 |
+
setup_projection_axis(axes[0, 0], all_vertices, (0, 2), "Low geometry score: side view")
|
| 194 |
+
scatter_projection(axes[0, 0], low_vertices, (0, 2), low_color, 0.08)
|
| 195 |
+
axes[0, 0].set_xlabel("x")
|
| 196 |
+
axes[0, 0].set_ylabel("z")
|
| 197 |
+
axes[0, 0].text(
|
| 198 |
+
0.02,
|
| 199 |
+
0.96,
|
| 200 |
+
f"run_{low_run}\nscore={scores[low_run]:.5f}\nCd={force[low_run]['cd']:.4f}, Cl={force[low_run]['cl']:.4f}",
|
| 201 |
+
transform=axes[0, 0].transAxes,
|
| 202 |
+
va="top",
|
| 203 |
+
fontsize=8,
|
| 204 |
+
bbox={"facecolor": "white", "edgecolor": "#d8dee6", "alpha": 0.85, "pad": 3},
|
| 205 |
+
)
|
| 206 |
+
|
| 207 |
+
setup_projection_axis(axes[0, 1], all_vertices, (0, 2), "High geometry score: side view")
|
| 208 |
+
scatter_projection(axes[0, 1], high_vertices, (0, 2), high_color, 0.08)
|
| 209 |
+
axes[0, 1].set_xlabel("x")
|
| 210 |
+
axes[0, 1].set_ylabel("z")
|
| 211 |
+
axes[0, 1].text(
|
| 212 |
+
0.02,
|
| 213 |
+
0.96,
|
| 214 |
+
f"run_{high_run}\nscore={scores[high_run]:.5f}\nCd={force[high_run]['cd']:.4f}, Cl={force[high_run]['cl']:.4f}",
|
| 215 |
+
transform=axes[0, 1].transAxes,
|
| 216 |
+
va="top",
|
| 217 |
+
fontsize=8,
|
| 218 |
+
bbox={"facecolor": "white", "edgecolor": "#d8dee6", "alpha": 0.85, "pad": 3},
|
| 219 |
+
)
|
| 220 |
+
|
| 221 |
+
setup_projection_axis(axes[1, 0], all_vertices, (0, 1), "Overlay: top view")
|
| 222 |
+
scatter_projection(axes[1, 0], low_vertices, (0, 1), low_color, 0.06, "low")
|
| 223 |
+
scatter_projection(axes[1, 0], high_vertices, (0, 1), high_color, 0.06, "high")
|
| 224 |
+
axes[1, 0].set_xlabel("x")
|
| 225 |
+
axes[1, 0].set_ylabel("y")
|
| 226 |
+
axes[1, 0].legend(frameon=False, markerscale=6, loc="upper left")
|
| 227 |
+
|
| 228 |
+
setup_projection_axis(axes[1, 1], all_vertices, (0, 2), "Overlay: side view")
|
| 229 |
+
scatter_projection(axes[1, 1], low_vertices, (0, 2), low_color, 0.06, "low")
|
| 230 |
+
scatter_projection(axes[1, 1], high_vertices, (0, 2), high_color, 0.06, "high")
|
| 231 |
+
axes[1, 1].set_xlabel("x")
|
| 232 |
+
axes[1, 1].set_ylabel("z")
|
| 233 |
+
axes[1, 1].legend(frameon=False, markerscale=6, loc="upper left")
|
| 234 |
+
|
| 235 |
+
fig.suptitle("STL-Chamfer geometry split examples", fontsize=12)
|
| 236 |
+
output_dir.mkdir(parents=True, exist_ok=True)
|
| 237 |
+
fig.savefig(output_dir / "geometry_score_examples.png", dpi=180)
|
| 238 |
+
plt.close(fig)
|
| 239 |
+
|
| 240 |
+
|
| 241 |
+
def main() -> None:
|
| 242 |
+
args = parse_args()
|
| 243 |
+
force = load_force(args.force_root)
|
| 244 |
+
make_wake_examples(args.data_root, args.asset_root, args.output_dir, force)
|
| 245 |
+
make_geometry_examples(args.data_root, args.asset_root, args.output_dir, force, args.max_stl_points)
|
| 246 |
+
print(f"Wrote {args.output_dir / 'wake_score_examples.png'}")
|
| 247 |
+
print(f"Wrote {args.output_dir / 'geometry_score_examples.png'}")
|
| 248 |
+
|
| 249 |
+
|
| 250 |
+
if __name__ == "__main__":
|
| 251 |
+
main()
|
splits/download_hf_inputs.py
ADDED
|
@@ -0,0 +1,193 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Download AhmedML split-regeneration inputs from Hugging Face.
|
| 2 |
+
|
| 3 |
+
Default behavior downloads only the aggregate CSV files needed by
|
| 4 |
+
splits/generate_splits.py:
|
| 5 |
+
|
| 6 |
+
python3 splits/download_hf_inputs.py --output-dir data
|
| 7 |
+
|
| 8 |
+
For STL/PNG assets, prefer a directory outside this split package:
|
| 9 |
+
|
| 10 |
+
python3 splits/download_hf_inputs.py --output-dir ../ahmedml_hf_assets \
|
| 11 |
+
--include-stls --include-wake-images
|
| 12 |
+
"""
|
| 13 |
+
|
| 14 |
+
from __future__ import annotations
|
| 15 |
+
|
| 16 |
+
import argparse
|
| 17 |
+
from concurrent.futures import ThreadPoolExecutor, as_completed
|
| 18 |
+
import os
|
| 19 |
+
from pathlib import Path
|
| 20 |
+
import random
|
| 21 |
+
import time
|
| 22 |
+
from urllib.error import HTTPError, URLError
|
| 23 |
+
from urllib.parse import quote
|
| 24 |
+
from urllib.request import Request, urlopen
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
REPO_ID = "neashton/ahmedml"
|
| 28 |
+
REVISION = "main"
|
| 29 |
+
AGGREGATE_FILES = [
|
| 30 |
+
"force_mom_all.csv",
|
| 31 |
+
"geo_parameters_all.csv",
|
| 32 |
+
]
|
| 33 |
+
OPTIONAL_AGGREGATE_FILES = [
|
| 34 |
+
"force_mom_varref_all.csv",
|
| 35 |
+
]
|
| 36 |
+
IMAGE_SLICES = {
|
| 37 |
+
"X": range(22),
|
| 38 |
+
"Y": range(9),
|
| 39 |
+
"Z": range(6),
|
| 40 |
+
}
|
| 41 |
+
WAKE_IMAGE_SLICES = {
|
| 42 |
+
"X": (14, 15, 16),
|
| 43 |
+
"Y": (4,),
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
def parse_args() -> argparse.Namespace:
|
| 48 |
+
parser = argparse.ArgumentParser(description="Download source inputs for AhmedML split regeneration.")
|
| 49 |
+
parser.add_argument("--repo-id", default=REPO_ID, help=f"Hugging Face dataset repo ID. Default: {REPO_ID}")
|
| 50 |
+
parser.add_argument("--revision", default=REVISION, help=f"Hub revision, branch, or tag. Default: {REVISION}")
|
| 51 |
+
parser.add_argument("--output-dir", type=Path, default=Path("data"), help="Directory where files are written.")
|
| 52 |
+
parser.add_argument("--include-varref", action="store_true", help="Also download force_mom_varref_all.csv.")
|
| 53 |
+
parser.add_argument("--include-images", action="store_true", help="Download all CpT and UxMean PNG images. This is large.")
|
| 54 |
+
parser.add_argument("--include-wake-images", action="store_true", help="Download only UxMean PNG slices needed for the image_wake split.")
|
| 55 |
+
parser.add_argument("--include-stls", action="store_true", help="Download run_*/ahmed_*.stl files. This is large.")
|
| 56 |
+
parser.add_argument("--runs", default="all", help="Run IDs for optional STL/image downloads: all or a comma/range expression.")
|
| 57 |
+
parser.add_argument("--workers", type=int, default=4, help="Parallel downloads. Default: 4.")
|
| 58 |
+
parser.add_argument("--retries", type=int, default=6, help="Retries for HTTP 429 and transient network errors.")
|
| 59 |
+
parser.add_argument("--retry-sleep", type=float, default=4.0, help="Initial retry sleep in seconds.")
|
| 60 |
+
parser.add_argument("--overwrite", action="store_true", help="Redownload files that already exist.")
|
| 61 |
+
parser.add_argument("--dry-run", action="store_true", help="Print the file list without downloading.")
|
| 62 |
+
return parser.parse_args()
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
def parse_run_expression(expr: str) -> list[int]:
|
| 66 |
+
expr = expr.strip().lower()
|
| 67 |
+
if expr == "all":
|
| 68 |
+
return list(range(1, 501))
|
| 69 |
+
runs: set[int] = set()
|
| 70 |
+
for part in expr.split(","):
|
| 71 |
+
part = part.strip()
|
| 72 |
+
if not part:
|
| 73 |
+
continue
|
| 74 |
+
if "-" in part:
|
| 75 |
+
start, end = [int(value) for value in part.split("-", 1)]
|
| 76 |
+
if start > end:
|
| 77 |
+
start, end = end, start
|
| 78 |
+
runs.update(range(start, end + 1))
|
| 79 |
+
else:
|
| 80 |
+
runs.add(int(part))
|
| 81 |
+
invalid = sorted(run for run in runs if run < 1 or run > 500)
|
| 82 |
+
if invalid:
|
| 83 |
+
raise SystemExit(f"Invalid run IDs: {invalid[:10]}")
|
| 84 |
+
return sorted(runs)
|
| 85 |
+
|
| 86 |
+
|
| 87 |
+
def hub_url(repo_id: str, revision: str, path: str) -> str:
|
| 88 |
+
quoted_path = "/".join(quote(part) for part in path.split("/"))
|
| 89 |
+
return f"https://huggingface.co/datasets/{repo_id}/resolve/{quote(revision, safe='')}/{quoted_path}"
|
| 90 |
+
|
| 91 |
+
|
| 92 |
+
def retry_delay(base_sleep: float, attempt: int, retry_after: str | None = None) -> float:
|
| 93 |
+
if retry_after:
|
| 94 |
+
try:
|
| 95 |
+
return max(0.0, float(retry_after))
|
| 96 |
+
except ValueError:
|
| 97 |
+
pass
|
| 98 |
+
jitter = random.uniform(0.0, base_sleep)
|
| 99 |
+
return min(90.0, base_sleep * (2 ** max(0, attempt - 1)) + jitter)
|
| 100 |
+
|
| 101 |
+
|
| 102 |
+
def download_one(
|
| 103 |
+
repo_id: str,
|
| 104 |
+
revision: str,
|
| 105 |
+
output_dir: Path,
|
| 106 |
+
rel_path: str,
|
| 107 |
+
overwrite: bool,
|
| 108 |
+
retries: int,
|
| 109 |
+
retry_sleep: float,
|
| 110 |
+
) -> tuple[str, str]:
|
| 111 |
+
destination = output_dir / rel_path
|
| 112 |
+
if destination.exists() and not overwrite:
|
| 113 |
+
return rel_path, "skip"
|
| 114 |
+
destination.parent.mkdir(parents=True, exist_ok=True)
|
| 115 |
+
headers = {}
|
| 116 |
+
if os.environ.get("HF_TOKEN"):
|
| 117 |
+
headers["Authorization"] = f"Bearer {os.environ['HF_TOKEN']}"
|
| 118 |
+
for attempt in range(retries + 1):
|
| 119 |
+
request = Request(hub_url(repo_id, revision, rel_path), headers=headers)
|
| 120 |
+
try:
|
| 121 |
+
with urlopen(request, timeout=120) as response:
|
| 122 |
+
destination.write_bytes(response.read())
|
| 123 |
+
return rel_path, "ok"
|
| 124 |
+
except HTTPError as exc:
|
| 125 |
+
retryable = exc.code == 429 or 500 <= exc.code <= 599
|
| 126 |
+
if retryable and attempt < retries:
|
| 127 |
+
time.sleep(retry_delay(retry_sleep, attempt, exc.headers.get("Retry-After")))
|
| 128 |
+
continue
|
| 129 |
+
return rel_path, f"http_{exc.code}"
|
| 130 |
+
except URLError as exc:
|
| 131 |
+
if attempt < retries:
|
| 132 |
+
time.sleep(retry_delay(retry_sleep, attempt))
|
| 133 |
+
continue
|
| 134 |
+
return rel_path, f"url_error:{exc.reason}"
|
| 135 |
+
return rel_path, "failed"
|
| 136 |
+
|
| 137 |
+
|
| 138 |
+
def main() -> None:
|
| 139 |
+
args = parse_args()
|
| 140 |
+
files = AGGREGATE_FILES.copy()
|
| 141 |
+
if args.include_varref:
|
| 142 |
+
files.extend(OPTIONAL_AGGREGATE_FILES)
|
| 143 |
+
runs = parse_run_expression(args.runs)
|
| 144 |
+
if args.include_stls:
|
| 145 |
+
files.extend(f"run_{run}/ahmed_{run}.stl" for run in runs)
|
| 146 |
+
if args.include_images:
|
| 147 |
+
for run in runs:
|
| 148 |
+
for axis, indices in IMAGE_SLICES.items():
|
| 149 |
+
files.extend(
|
| 150 |
+
f"run_{run}/images/CpT/run_{run}-slice-total(p)_coeffMean-{axis}-{idx}.png"
|
| 151 |
+
for idx in indices
|
| 152 |
+
)
|
| 153 |
+
files.extend(
|
| 154 |
+
f"run_{run}/images/UxMean/run_{run}-slice-UMean-0-{axis}-{idx}.png"
|
| 155 |
+
for idx in indices
|
| 156 |
+
)
|
| 157 |
+
elif args.include_wake_images:
|
| 158 |
+
for run in runs:
|
| 159 |
+
for axis, indices in WAKE_IMAGE_SLICES.items():
|
| 160 |
+
files.extend(
|
| 161 |
+
f"run_{run}/images/UxMean/run_{run}-slice-UMean-0-{axis}-{idx}.png"
|
| 162 |
+
for idx in indices
|
| 163 |
+
)
|
| 164 |
+
|
| 165 |
+
print(f"Repository: {args.repo_id}@{args.revision}")
|
| 166 |
+
print(f"Output dir: {args.output_dir}")
|
| 167 |
+
print(f"Files: {len(files)}")
|
| 168 |
+
if args.dry_run:
|
| 169 |
+
for path in files:
|
| 170 |
+
print(path)
|
| 171 |
+
return
|
| 172 |
+
|
| 173 |
+
with ThreadPoolExecutor(max_workers=max(1, args.workers)) as pool:
|
| 174 |
+
futures = [
|
| 175 |
+
pool.submit(
|
| 176 |
+
download_one,
|
| 177 |
+
args.repo_id,
|
| 178 |
+
args.revision,
|
| 179 |
+
args.output_dir,
|
| 180 |
+
path,
|
| 181 |
+
args.overwrite,
|
| 182 |
+
args.retries,
|
| 183 |
+
args.retry_sleep,
|
| 184 |
+
)
|
| 185 |
+
for path in files
|
| 186 |
+
]
|
| 187 |
+
for future in as_completed(futures):
|
| 188 |
+
path, status = future.result()
|
| 189 |
+
print(f"{status:<8s} {path}")
|
| 190 |
+
|
| 191 |
+
|
| 192 |
+
if __name__ == "__main__":
|
| 193 |
+
main()
|
splits/generate_splits.py
ADDED
|
@@ -0,0 +1,512 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Generate deterministic train/val/test splits for the AhmedML dataset.
|
| 2 |
+
|
| 3 |
+
Outputs:
|
| 4 |
+
- splits/manifest.json
|
| 5 |
+
- splits/parameter_geometry_metrics.csv
|
| 6 |
+
|
| 7 |
+
Split families:
|
| 8 |
+
1. full - Noether-compatible seed-42 random split, 400/50/50
|
| 9 |
+
2. medium - same val/test as full, train is 1/3 subsample
|
| 10 |
+
3. scarce - same val/test as full, train is 1/6 subsample
|
| 11 |
+
4. super_scarce - same val/test as full, train is 1/36 subsample
|
| 12 |
+
5. geometry - OOD STL-Chamfer local-isolation split
|
| 13 |
+
6. high_drag - OOD high-drag split from force_mom_all.csv
|
| 14 |
+
7. low_drag - OOD low-drag split from force_mom_all.csv
|
| 15 |
+
8. image_wake - OOD image-derived wake split from UxMean PNGs
|
| 16 |
+
|
| 17 |
+
For every OOD split, the validation set is drawn from the training-side
|
| 18 |
+
population so hyperparameter tuning does not see the held-out extreme regime.
|
| 19 |
+
"""
|
| 20 |
+
|
| 21 |
+
from __future__ import annotations
|
| 22 |
+
|
| 23 |
+
import csv
|
| 24 |
+
import hashlib
|
| 25 |
+
import json
|
| 26 |
+
import math
|
| 27 |
+
import os
|
| 28 |
+
import random
|
| 29 |
+
from pathlib import Path
|
| 30 |
+
|
| 31 |
+
import numpy as np
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
SCRIPT_DIR = Path(__file__).resolve().parent
|
| 35 |
+
REPOSITORY_ROOT = SCRIPT_DIR.parent
|
| 36 |
+
PACKAGE_ROOT = SCRIPT_DIR
|
| 37 |
+
DATA_DIR = SCRIPT_DIR
|
| 38 |
+
SPLITS_DIR = SCRIPT_DIR
|
| 39 |
+
DATA_ROOT = Path(os.environ.get("AHMEDML_DATA_ROOT", REPOSITORY_ROOT))
|
| 40 |
+
CHAMFER_METRICS = "chamfer_metrics.csv"
|
| 41 |
+
IMAGE_METRICS = "image_metrics.csv"
|
| 42 |
+
PARAMETER_GEOMETRY_METRICS = "parameter_geometry_metrics.csv"
|
| 43 |
+
|
| 44 |
+
N_CASES = 500
|
| 45 |
+
RUN_IDS = list(range(1, N_CASES + 1))
|
| 46 |
+
SEED = 42
|
| 47 |
+
MEDIUM_FRACTION = 1 / 3
|
| 48 |
+
SCARCE_FRACTION = 1 / 6
|
| 49 |
+
SUPER_SCARCE_FRACTION = 1 / 36
|
| 50 |
+
OOD_TEST_FRACTION = 0.2
|
| 51 |
+
VAL_FRACTION = 0.1
|
| 52 |
+
TEST_FRACTION = 0.2
|
| 53 |
+
VAL_FRACTION_OF_POOL = VAL_FRACTION / (1 - TEST_FRACTION)
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
# Noether AhmedMLDefaultSplitIDs, generated from torch.randperm(500) with seed
|
| 57 |
+
# 42. AhmedML has no hidden-test exclusion in that default split.
|
| 58 |
+
FULL_TRAIN_IDS = [
|
| 59 |
+
1, 2, 3, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 21, 23, 25, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40,
|
| 60 |
+
42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
|
| 61 |
+
73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
|
| 62 |
+
101, 102, 103, 105, 106, 107, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 125, 126,
|
| 63 |
+
128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 145, 146, 147, 148, 149, 151, 152,
|
| 64 |
+
153, 154, 155, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 174, 175, 176, 178,
|
| 65 |
+
179, 181, 182, 183, 184, 185, 186, 189, 190, 192, 193, 194, 195, 198, 200, 201, 202, 204, 206, 209, 211, 212,
|
| 66 |
+
213, 214, 216, 217, 218, 219, 220, 221, 223, 224, 225, 227, 229, 231, 232, 233, 235, 236, 237, 238, 239, 240,
|
| 67 |
+
242, 243, 244, 245, 246, 248, 249, 250, 251, 254, 255, 256, 257, 259, 261, 262, 264, 265, 266, 267, 268, 269,
|
| 68 |
+
270, 272, 273, 274, 276, 277, 278, 279, 282, 283, 285, 286, 287, 288, 289, 292, 293, 294, 296, 297, 299, 300,
|
| 69 |
+
301, 302, 305, 306, 307, 308, 309, 310, 313, 314, 315, 316, 317, 318, 319, 320, 323, 325, 326, 327, 330, 331,
|
| 70 |
+
332, 333, 334, 335, 336, 338, 339, 340, 342, 343, 344, 345, 346, 347, 348, 349, 351, 353, 355, 356, 357, 358,
|
| 71 |
+
359, 360, 361, 362, 365, 367, 368, 369, 370, 371, 373, 374, 375, 377, 378, 379, 381, 383, 384, 385, 386, 388,
|
| 72 |
+
389, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 402, 404, 406, 407, 408, 409, 411, 412, 413, 414, 415,
|
| 73 |
+
416, 417, 418, 419, 420, 421, 422, 425, 426, 427, 430, 431, 433, 434, 435, 437, 438, 439, 440, 442, 443, 444,
|
| 74 |
+
445, 446, 448, 449, 450, 451, 452, 453, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469,
|
| 75 |
+
470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 488, 489, 490, 491, 492, 493,
|
| 76 |
+
495, 496, 497, 498, 499, 500,
|
| 77 |
+
]
|
| 78 |
+
|
| 79 |
+
FULL_VAL_IDS = [
|
| 80 |
+
24, 26, 29, 38, 41, 55, 59, 104, 108, 124, 133, 142, 158, 173, 180, 188, 196, 197, 199, 205, 207, 210, 222, 226,
|
| 81 |
+
230, 258, 263, 280, 281, 284, 290, 291, 295, 304, 312, 337, 350, 354, 363, 372, 387, 403, 405, 424, 428, 429,
|
| 82 |
+
432, 455, 472, 494,
|
| 83 |
+
]
|
| 84 |
+
|
| 85 |
+
FULL_TEST_IDS = [
|
| 86 |
+
4, 11, 12, 19, 20, 22, 56, 109, 127, 150, 165, 177, 187, 191, 203, 208, 215, 228, 234, 241, 247, 252, 253, 260,
|
| 87 |
+
271, 275, 298, 303, 311, 321, 322, 324, 328, 329, 341, 352, 364, 366, 376, 380, 382, 390, 401, 410, 423, 436,
|
| 88 |
+
441, 447, 454, 487,
|
| 89 |
+
]
|
| 90 |
+
|
| 91 |
+
|
| 92 |
+
def case_id(run_id: int) -> str:
|
| 93 |
+
return f"run_{run_id}"
|
| 94 |
+
|
| 95 |
+
|
| 96 |
+
def run_id(case_id_value: str) -> int:
|
| 97 |
+
if not case_id_value.startswith("run_"):
|
| 98 |
+
raise ValueError(f"Malformed case ID: {case_id_value!r}")
|
| 99 |
+
return int(case_id_value.split("_", 1)[1])
|
| 100 |
+
|
| 101 |
+
|
| 102 |
+
def make_case_ids(values: list[int]) -> list[str]:
|
| 103 |
+
return [case_id(value) for value in sorted(values)]
|
| 104 |
+
|
| 105 |
+
|
| 106 |
+
def _rng(salt: str) -> random.Random:
|
| 107 |
+
seed_bytes = hashlib.sha256(f"{SEED}:{salt}".encode("utf-8")).digest()[:8]
|
| 108 |
+
return random.Random(int.from_bytes(seed_bytes, "big"))
|
| 109 |
+
|
| 110 |
+
|
| 111 |
+
def _unit_hash(run: int, salt: str) -> float:
|
| 112 |
+
seed = hashlib.sha256(f"{SEED}:{salt}:{run}".encode("utf-8")).digest()[:8]
|
| 113 |
+
return int.from_bytes(seed, "big") / 2**64
|
| 114 |
+
|
| 115 |
+
|
| 116 |
+
def _split_pool(pool: list[int], *, salt: str) -> tuple[list[int], list[int]]:
|
| 117 |
+
shuffled = pool.copy()
|
| 118 |
+
_rng(salt).shuffle(shuffled)
|
| 119 |
+
n_val = round(len(pool) * VAL_FRACTION_OF_POOL)
|
| 120 |
+
val = sorted(shuffled[:n_val])
|
| 121 |
+
train = sorted(shuffled[n_val:])
|
| 122 |
+
return train, val
|
| 123 |
+
|
| 124 |
+
|
| 125 |
+
def _candidate_paths(filename: str) -> list[Path]:
|
| 126 |
+
roots = [
|
| 127 |
+
DATA_ROOT,
|
| 128 |
+
DATA_ROOT / "data",
|
| 129 |
+
DATA_ROOT / "dataset",
|
| 130 |
+
DATA_DIR,
|
| 131 |
+
DATA_DIR / "dataset",
|
| 132 |
+
PACKAGE_ROOT,
|
| 133 |
+
PACKAGE_ROOT / "dataset",
|
| 134 |
+
REPOSITORY_ROOT,
|
| 135 |
+
REPOSITORY_ROOT / "data",
|
| 136 |
+
Path.cwd(),
|
| 137 |
+
Path.cwd() / "data",
|
| 138 |
+
]
|
| 139 |
+
seen: set[Path] = set()
|
| 140 |
+
paths: list[Path] = []
|
| 141 |
+
for root in roots:
|
| 142 |
+
path = root / filename
|
| 143 |
+
key = path.resolve() if path.exists() else path.absolute()
|
| 144 |
+
if key not in seen:
|
| 145 |
+
paths.append(path)
|
| 146 |
+
seen.add(key)
|
| 147 |
+
return paths
|
| 148 |
+
|
| 149 |
+
|
| 150 |
+
def _clean_row(row: dict[str, str]) -> dict[str, str]:
|
| 151 |
+
return {key.strip(): value.strip() for key, value in row.items() if key is not None}
|
| 152 |
+
|
| 153 |
+
|
| 154 |
+
def _float(value: str) -> float:
|
| 155 |
+
return float(value.replace(" ", ""))
|
| 156 |
+
|
| 157 |
+
|
| 158 |
+
def load_force_mom() -> tuple[dict[int, dict[str, float]], str]:
|
| 159 |
+
for path in _candidate_paths("force_mom_all.csv"):
|
| 160 |
+
if not path.exists():
|
| 161 |
+
continue
|
| 162 |
+
records: dict[int, dict[str, float]] = {}
|
| 163 |
+
with path.open(encoding="utf-8-sig", newline="") as f:
|
| 164 |
+
for row in csv.DictReader(f):
|
| 165 |
+
clean = _clean_row(row)
|
| 166 |
+
rid = int(clean["run"])
|
| 167 |
+
records[rid] = {"cd": _float(clean["cd"]), "cl": _float(clean["cl"])}
|
| 168 |
+
missing = sorted(set(RUN_IDS) - set(records))
|
| 169 |
+
if missing:
|
| 170 |
+
raise ValueError(f"{path} is missing run IDs: {missing[:10]}")
|
| 171 |
+
return records, str(path)
|
| 172 |
+
raise FileNotFoundError("force_mom_all.csv not found; run splits/download_hf_inputs.py")
|
| 173 |
+
|
| 174 |
+
|
| 175 |
+
def load_geo_parameters() -> tuple[dict[int, dict[str, float]], dict[int, bool], str]:
|
| 176 |
+
for path in _candidate_paths("geo_parameters_all.csv"):
|
| 177 |
+
if not path.exists():
|
| 178 |
+
continue
|
| 179 |
+
observed_records: dict[int, dict[str, float]] = {}
|
| 180 |
+
with path.open(encoding="utf-8-sig", newline="") as f:
|
| 181 |
+
for row in csv.DictReader(f):
|
| 182 |
+
clean = _clean_row(row)
|
| 183 |
+
rid = int(clean["run"])
|
| 184 |
+
observed_records[rid] = {
|
| 185 |
+
key: _float(value)
|
| 186 |
+
for key, value in clean.items()
|
| 187 |
+
if key != "run"
|
| 188 |
+
}
|
| 189 |
+
if not observed_records:
|
| 190 |
+
raise ValueError(f"{path} has no geometry rows")
|
| 191 |
+
|
| 192 |
+
keys = sorted(next(iter(observed_records.values())).keys())
|
| 193 |
+
means = {
|
| 194 |
+
key: float(np.mean([record[key] for record in observed_records.values()]))
|
| 195 |
+
for key in keys
|
| 196 |
+
}
|
| 197 |
+
records: dict[int, dict[str, float]] = {}
|
| 198 |
+
observed: dict[int, bool] = {}
|
| 199 |
+
for rid in RUN_IDS:
|
| 200 |
+
if rid in observed_records:
|
| 201 |
+
records[rid] = observed_records[rid]
|
| 202 |
+
observed[rid] = True
|
| 203 |
+
else:
|
| 204 |
+
records[rid] = means.copy()
|
| 205 |
+
observed[rid] = False
|
| 206 |
+
return records, observed, str(path)
|
| 207 |
+
raise FileNotFoundError("geo_parameters_all.csv not found; run splits/download_hf_inputs.py")
|
| 208 |
+
|
| 209 |
+
|
| 210 |
+
def _standardized_matrix(records: dict[int, dict[str, float]], fields: list[str], runs: list[int]) -> np.ndarray:
|
| 211 |
+
matrix = np.asarray([[records[rid][field] for field in fields] for rid in runs], dtype=float)
|
| 212 |
+
means = matrix.mean(axis=0)
|
| 213 |
+
stds = matrix.std(axis=0)
|
| 214 |
+
stds[stds == 0.0] = 1.0
|
| 215 |
+
return (matrix - means) / stds
|
| 216 |
+
|
| 217 |
+
|
| 218 |
+
def _pairwise_distances(matrix: np.ndarray) -> np.ndarray:
|
| 219 |
+
diff = matrix[:, None, :] - matrix[None, :, :]
|
| 220 |
+
return np.sqrt(np.sum(diff * diff, axis=2))
|
| 221 |
+
|
| 222 |
+
|
| 223 |
+
def geometry_isolation_scores(
|
| 224 |
+
geo_records: dict[int, dict[str, float]],
|
| 225 |
+
) -> tuple[dict[int, float], dict[int, float]]:
|
| 226 |
+
runs = RUN_IDS.copy()
|
| 227 |
+
fields = sorted(next(iter(geo_records.values())).keys())
|
| 228 |
+
matrix = _standardized_matrix(geo_records, fields, runs)
|
| 229 |
+
distances = _pairwise_distances(matrix)
|
| 230 |
+
np.fill_diagonal(distances, np.inf)
|
| 231 |
+
nearest_10 = np.sort(distances, axis=1)[:, :10]
|
| 232 |
+
finite = np.where(np.isfinite(distances), distances, np.nan)
|
| 233 |
+
mean_10 = nearest_10.mean(axis=1)
|
| 234 |
+
mean_all = np.nanmean(finite, axis=1)
|
| 235 |
+
return (
|
| 236 |
+
{rid: float(mean_10[idx]) for idx, rid in enumerate(runs)},
|
| 237 |
+
{rid: float(mean_all[idx]) for idx, rid in enumerate(runs)},
|
| 238 |
+
)
|
| 239 |
+
|
| 240 |
+
|
| 241 |
+
def write_parameter_geometry_metrics(
|
| 242 |
+
scores: dict[int, float],
|
| 243 |
+
mean_all: dict[int, float],
|
| 244 |
+
observed: dict[int, bool],
|
| 245 |
+
) -> None:
|
| 246 |
+
DATA_DIR.mkdir(parents=True, exist_ok=True)
|
| 247 |
+
path = DATA_DIR / PARAMETER_GEOMETRY_METRICS
|
| 248 |
+
with path.open("w", encoding="utf-8", newline="") as f:
|
| 249 |
+
writer = csv.DictWriter(
|
| 250 |
+
f,
|
| 251 |
+
fieldnames=[
|
| 252 |
+
"run",
|
| 253 |
+
"geometry_observed",
|
| 254 |
+
"ood_score",
|
| 255 |
+
"mean_10_nn_parameter_distance",
|
| 256 |
+
"mean_all_parameter_distance",
|
| 257 |
+
],
|
| 258 |
+
)
|
| 259 |
+
writer.writeheader()
|
| 260 |
+
for rid in RUN_IDS:
|
| 261 |
+
writer.writerow(
|
| 262 |
+
{
|
| 263 |
+
"run": rid,
|
| 264 |
+
"geometry_observed": str(observed[rid]).lower(),
|
| 265 |
+
"ood_score": scores[rid],
|
| 266 |
+
"mean_10_nn_parameter_distance": scores[rid],
|
| 267 |
+
"mean_all_parameter_distance": mean_all[rid],
|
| 268 |
+
}
|
| 269 |
+
)
|
| 270 |
+
|
| 271 |
+
|
| 272 |
+
def load_metric_scores(
|
| 273 |
+
filename: str,
|
| 274 |
+
value_column: str,
|
| 275 |
+
*,
|
| 276 |
+
observed_column: str | None = None,
|
| 277 |
+
) -> tuple[dict[int, float], str]:
|
| 278 |
+
for path in _candidate_paths(filename):
|
| 279 |
+
if not path.exists():
|
| 280 |
+
continue
|
| 281 |
+
scores: dict[int, float] = {}
|
| 282 |
+
unobserved: list[int] = []
|
| 283 |
+
with path.open(encoding="utf-8-sig", newline="") as f:
|
| 284 |
+
for row in csv.DictReader(f):
|
| 285 |
+
clean = _clean_row(row)
|
| 286 |
+
rid = int(clean["run"])
|
| 287 |
+
if observed_column and clean.get(observed_column, "true").lower() != "true":
|
| 288 |
+
unobserved.append(rid)
|
| 289 |
+
continue
|
| 290 |
+
value = clean.get(value_column, "")
|
| 291 |
+
if value == "":
|
| 292 |
+
unobserved.append(rid)
|
| 293 |
+
continue
|
| 294 |
+
scores[rid] = _float(value)
|
| 295 |
+
missing = sorted(set(RUN_IDS) - set(scores))
|
| 296 |
+
if missing or unobserved:
|
| 297 |
+
missing_preview = ", ".join(str(x) for x in (missing + unobserved)[:12])
|
| 298 |
+
raise ValueError(
|
| 299 |
+
f"{path} does not contain complete observed {value_column} scores; "
|
| 300 |
+
f"missing/unobserved runs include: {missing_preview}"
|
| 301 |
+
)
|
| 302 |
+
return scores, str(path)
|
| 303 |
+
raise FileNotFoundError(f"{filename} not found; compute it before running this generator")
|
| 304 |
+
|
| 305 |
+
|
| 306 |
+
def load_chamfer_scores() -> tuple[dict[int, float], str]:
|
| 307 |
+
return load_metric_scores(CHAMFER_METRICS, "ood_score")
|
| 308 |
+
|
| 309 |
+
|
| 310 |
+
def load_image_wake_scores() -> tuple[dict[int, float], str]:
|
| 311 |
+
return load_metric_scores(IMAGE_METRICS, "image_wake_score", observed_column="image_wake_observed")
|
| 312 |
+
|
| 313 |
+
|
| 314 |
+
def force_scores(records: dict[int, dict[str, float]]) -> dict[str, dict[int, float]]:
|
| 315 |
+
cd = {rid: row["cd"] for rid, row in records.items()}
|
| 316 |
+
return {
|
| 317 |
+
"high_drag": cd,
|
| 318 |
+
"low_drag": {rid: -value for rid, value in cd.items()},
|
| 319 |
+
}
|
| 320 |
+
|
| 321 |
+
|
| 322 |
+
def ranked_ood_split(scores: dict[int, float], *, salt: str) -> tuple[list[int], list[int], list[int]]:
|
| 323 |
+
ranked = sorted(scores, key=lambda rid: (scores[rid], rid))
|
| 324 |
+
n_test = round(len(ranked) * OOD_TEST_FRACTION)
|
| 325 |
+
test = sorted(ranked[-n_test:])
|
| 326 |
+
pool = sorted(ranked[:-n_test])
|
| 327 |
+
train, val = _split_pool(pool, salt=salt)
|
| 328 |
+
return train, val, test
|
| 329 |
+
|
| 330 |
+
|
| 331 |
+
def diverse_training_order(
|
| 332 |
+
force_records: dict[int, dict[str, float]],
|
| 333 |
+
geo_records: dict[int, dict[str, float]],
|
| 334 |
+
) -> list[int]:
|
| 335 |
+
train_pool = FULL_TRAIN_IDS.copy()
|
| 336 |
+
feature_rows: dict[int, list[float]] = {rid: [] for rid in train_pool}
|
| 337 |
+
|
| 338 |
+
for field in ["cd", "cl"]:
|
| 339 |
+
values = np.asarray([force_records[rid][field] for rid in train_pool], dtype=float)
|
| 340 |
+
mean = float(values.mean())
|
| 341 |
+
std = float(values.std()) or 1.0
|
| 342 |
+
for rid in train_pool:
|
| 343 |
+
feature_rows[rid].append((force_records[rid][field] - mean) / std)
|
| 344 |
+
|
| 345 |
+
for field in sorted(next(iter(geo_records.values())).keys()):
|
| 346 |
+
values = np.asarray([geo_records[rid][field] for rid in train_pool], dtype=float)
|
| 347 |
+
mean = float(values.mean())
|
| 348 |
+
std = float(values.std()) or 1.0
|
| 349 |
+
for rid in train_pool:
|
| 350 |
+
feature_rows[rid].append((geo_records[rid][field] - mean) / std)
|
| 351 |
+
|
| 352 |
+
def distance(a: int, b: int) -> float:
|
| 353 |
+
return math.sqrt(sum((x - y) ** 2 for x, y in zip(feature_rows[a], feature_rows[b])))
|
| 354 |
+
|
| 355 |
+
first = max(
|
| 356 |
+
train_pool,
|
| 357 |
+
key=lambda rid: (
|
| 358 |
+
math.sqrt(sum(value * value for value in feature_rows[rid])),
|
| 359 |
+
_unit_hash(rid, "scarce_first_tie_break"),
|
| 360 |
+
),
|
| 361 |
+
)
|
| 362 |
+
selected = [first]
|
| 363 |
+
remaining = [rid for rid in train_pool if rid != first]
|
| 364 |
+
while remaining:
|
| 365 |
+
next_rid = max(
|
| 366 |
+
remaining,
|
| 367 |
+
key=lambda rid: (
|
| 368 |
+
min(distance(rid, chosen) for chosen in selected),
|
| 369 |
+
_unit_hash(rid, "scarce_tie_break"),
|
| 370 |
+
),
|
| 371 |
+
)
|
| 372 |
+
selected.append(next_rid)
|
| 373 |
+
remaining.remove(next_rid)
|
| 374 |
+
return selected
|
| 375 |
+
|
| 376 |
+
|
| 377 |
+
def _validate_noether_full_split() -> None:
|
| 378 |
+
groups = {
|
| 379 |
+
"full_train": FULL_TRAIN_IDS,
|
| 380 |
+
"full_val": FULL_VAL_IDS,
|
| 381 |
+
"full_test": FULL_TEST_IDS,
|
| 382 |
+
}
|
| 383 |
+
seen: dict[int, str] = {}
|
| 384 |
+
for name, ids in groups.items():
|
| 385 |
+
if len(ids) != len(set(ids)):
|
| 386 |
+
raise AssertionError(f"{name} contains duplicate run IDs")
|
| 387 |
+
for rid in ids:
|
| 388 |
+
if rid < 1 or rid > N_CASES:
|
| 389 |
+
raise AssertionError(f"{name} has invalid run ID {rid}")
|
| 390 |
+
if rid in seen:
|
| 391 |
+
raise AssertionError(f"run {rid} appears in {seen[rid]} and {name}")
|
| 392 |
+
seen[rid] = name
|
| 393 |
+
if set(seen) != set(RUN_IDS):
|
| 394 |
+
raise AssertionError("full split does not cover all AhmedML runs")
|
| 395 |
+
if (len(FULL_TRAIN_IDS), len(FULL_VAL_IDS), len(FULL_TEST_IDS)) != (400, 50, 50):
|
| 396 |
+
raise AssertionError("unexpected full split sizes")
|
| 397 |
+
|
| 398 |
+
|
| 399 |
+
def generate_splits() -> tuple[dict[str, list[str]], str, str, str, str]:
|
| 400 |
+
_validate_noether_full_split()
|
| 401 |
+
force_records, force_source = load_force_mom()
|
| 402 |
+
geo_records, geo_observed, geo_source = load_geo_parameters()
|
| 403 |
+
parameter_geometry_scores, parameter_geometry_mean_all = geometry_isolation_scores(geo_records)
|
| 404 |
+
write_parameter_geometry_metrics(parameter_geometry_scores, parameter_geometry_mean_all, geo_observed)
|
| 405 |
+
geometry_scores, geometry_source = load_chamfer_scores()
|
| 406 |
+
image_wake_scores, image_source = load_image_wake_scores()
|
| 407 |
+
|
| 408 |
+
splits: dict[str, list[str]] = {}
|
| 409 |
+
splits["full_train"] = make_case_ids(FULL_TRAIN_IDS)
|
| 410 |
+
splits["full_val"] = make_case_ids(FULL_VAL_IDS)
|
| 411 |
+
splits["full_test"] = make_case_ids(FULL_TEST_IDS)
|
| 412 |
+
|
| 413 |
+
order = diverse_training_order(force_records, geo_records)
|
| 414 |
+
n_medium = round(len(FULL_TRAIN_IDS) * MEDIUM_FRACTION)
|
| 415 |
+
n_scarce = round(len(FULL_TRAIN_IDS) * SCARCE_FRACTION)
|
| 416 |
+
n_super_scarce = round(len(FULL_TRAIN_IDS) * SUPER_SCARCE_FRACTION)
|
| 417 |
+
splits["medium_train"] = make_case_ids(sorted(order[:n_medium]))
|
| 418 |
+
splits["medium_val"] = splits["full_val"]
|
| 419 |
+
splits["medium_test"] = splits["full_test"]
|
| 420 |
+
splits["scarce_train"] = make_case_ids(sorted(order[:n_scarce]))
|
| 421 |
+
splits["scarce_val"] = splits["full_val"]
|
| 422 |
+
splits["scarce_test"] = splits["full_test"]
|
| 423 |
+
splits["super_scarce_train"] = make_case_ids(sorted(order[:n_super_scarce]))
|
| 424 |
+
splits["super_scarce_val"] = splits["full_val"]
|
| 425 |
+
splits["super_scarce_test"] = splits["full_test"]
|
| 426 |
+
|
| 427 |
+
for name, scores in force_scores(force_records).items():
|
| 428 |
+
train, val, test = ranked_ood_split(scores, salt=f"{name}_val_selection")
|
| 429 |
+
splits[f"{name}_train"] = make_case_ids(train)
|
| 430 |
+
splits[f"{name}_val"] = make_case_ids(val)
|
| 431 |
+
splits[f"{name}_test"] = make_case_ids(test)
|
| 432 |
+
|
| 433 |
+
train, val, test = ranked_ood_split(geometry_scores, salt="geometry_val_selection")
|
| 434 |
+
splits["geometry_train"] = make_case_ids(train)
|
| 435 |
+
splits["geometry_val"] = make_case_ids(val)
|
| 436 |
+
splits["geometry_test"] = make_case_ids(test)
|
| 437 |
+
|
| 438 |
+
train, val, test = ranked_ood_split(image_wake_scores, salt="image_wake_val_selection")
|
| 439 |
+
splits["image_wake_train"] = make_case_ids(train)
|
| 440 |
+
splits["image_wake_val"] = make_case_ids(val)
|
| 441 |
+
splits["image_wake_test"] = make_case_ids(test)
|
| 442 |
+
return splits, force_source, geo_source, geometry_source, image_source
|
| 443 |
+
|
| 444 |
+
|
| 445 |
+
def validate_splits(splits: dict[str, list[str]]) -> None:
|
| 446 |
+
all_cases = {case_id(rid) for rid in RUN_IDS}
|
| 447 |
+
split_names = sorted({key.rsplit("_", 1)[0] for key in splits})
|
| 448 |
+
for name in split_names:
|
| 449 |
+
train = set(splits[f"{name}_train"])
|
| 450 |
+
val = set(splits[f"{name}_val"])
|
| 451 |
+
test = set(splits[f"{name}_test"])
|
| 452 |
+
assert not (train & val), f"{name}: train/val overlap"
|
| 453 |
+
assert not (train & test), f"{name}: train/test overlap"
|
| 454 |
+
assert not (val & test), f"{name}: val/test overlap"
|
| 455 |
+
assert train | val | test <= all_cases, f"{name}: non-AhmedML run included"
|
| 456 |
+
|
| 457 |
+
assert (len(splits["full_train"]), len(splits["full_val"]), len(splits["full_test"])) == (400, 50, 50)
|
| 458 |
+
for prefix in ["medium", "scarce", "super_scarce"]:
|
| 459 |
+
assert splits[f"{prefix}_val"] == splits["full_val"], f"{prefix}_val must equal full_val"
|
| 460 |
+
assert splits[f"{prefix}_test"] == splits["full_test"], f"{prefix}_test must equal full_test"
|
| 461 |
+
|
| 462 |
+
assert set(splits["super_scarce_train"]) < set(splits["scarce_train"])
|
| 463 |
+
assert set(splits["scarce_train"]) < set(splits["medium_train"])
|
| 464 |
+
assert set(splits["medium_train"]) < set(splits["full_train"])
|
| 465 |
+
|
| 466 |
+
for prefix in ["full", "geometry", "high_drag", "low_drag", "image_wake"]:
|
| 467 |
+
total = len(splits[f"{prefix}_train"]) + len(splits[f"{prefix}_val"]) + len(splits[f"{prefix}_test"])
|
| 468 |
+
assert total == N_CASES, f"{prefix}: expected {N_CASES} cases, got {total}"
|
| 469 |
+
|
| 470 |
+
for prefix in ["geometry", "high_drag", "low_drag", "image_wake"]:
|
| 471 |
+
assert (
|
| 472 |
+
len(splits[f"{prefix}_train"]),
|
| 473 |
+
len(splits[f"{prefix}_val"]),
|
| 474 |
+
len(splits[f"{prefix}_test"]),
|
| 475 |
+
) == (350, 50, 100), f"{prefix}: unexpected OOD split sizes"
|
| 476 |
+
|
| 477 |
+
|
| 478 |
+
def main() -> None:
|
| 479 |
+
splits, force_source, geo_source, geometry_source, image_source = generate_splits()
|
| 480 |
+
validate_splits(splits)
|
| 481 |
+
|
| 482 |
+
SPLITS_DIR.mkdir(parents=True, exist_ok=True)
|
| 483 |
+
output = SPLITS_DIR / "manifest.json"
|
| 484 |
+
output.write_text(json.dumps(splits, indent=4) + "\n", encoding="utf-8")
|
| 485 |
+
|
| 486 |
+
print("AhmedML Splits")
|
| 487 |
+
print("=" * 60)
|
| 488 |
+
print(f" Runs: {N_CASES}")
|
| 489 |
+
print(f" Seed: {SEED}")
|
| 490 |
+
print(f" Force/moment source: {force_source}")
|
| 491 |
+
print(f" Geometry-parameter source: {geo_source}")
|
| 492 |
+
print(f" STL-Chamfer source: {geometry_source}")
|
| 493 |
+
print(f" Image-wake source: {image_source}")
|
| 494 |
+
print()
|
| 495 |
+
print(f" {'Split':<18s} {'Train':>6s} {'Val':>6s} {'Test':>6s} {'Total':>6s}")
|
| 496 |
+
print(f" {'-' * 46}")
|
| 497 |
+
for name in sorted({key.rsplit('_', 1)[0] for key in splits}):
|
| 498 |
+
n_train = len(splits[f"{name}_train"])
|
| 499 |
+
n_val = len(splits[f"{name}_val"])
|
| 500 |
+
n_test = len(splits[f"{name}_test"])
|
| 501 |
+
print(f" {name:<18s} {n_train:>6d} {n_val:>6d} {n_test:>6d} {n_train + n_val + n_test:>6d}")
|
| 502 |
+
print()
|
| 503 |
+
print(f" Manifest: {output}")
|
| 504 |
+
print(f" STL-Chamfer metrics: {DATA_DIR / CHAMFER_METRICS}")
|
| 505 |
+
print(f" Image metrics: {DATA_DIR / IMAGE_METRICS}")
|
| 506 |
+
print(f" Parameter geometry metrics: {DATA_DIR / PARAMETER_GEOMETRY_METRICS}")
|
| 507 |
+
print(f" Keys: {len(splits)}")
|
| 508 |
+
print("All validations passed.")
|
| 509 |
+
|
| 510 |
+
|
| 511 |
+
if __name__ == "__main__":
|
| 512 |
+
main()
|
splits/geometry_score_examples.png
ADDED
|
Git LFS Details
|
splits/image_metrics.csv
ADDED
|
@@ -0,0 +1,501 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
run,image_wake_score,image_wake_observed,uxmean_images,uxmean_slices
|
| 2 |
+
1,0.3461875865856806,true,4,Y-4;X-14;X-15;X-16
|
| 3 |
+
2,0.351776992281278,true,4,Y-4;X-14;X-15;X-16
|
| 4 |
+
3,0.3631688902775446,true,4,Y-4;X-14;X-15;X-16
|
| 5 |
+
4,0.357019712527593,true,4,Y-4;X-14;X-15;X-16
|
| 6 |
+
5,0.351190984249115,true,4,Y-4;X-14;X-15;X-16
|
| 7 |
+
6,0.38376043240229285,true,4,Y-4;X-14;X-15;X-16
|
| 8 |
+
7,0.3426342258850733,true,4,Y-4;X-14;X-15;X-16
|
| 9 |
+
8,0.3663400808970133,true,4,Y-4;X-14;X-15;X-16
|
| 10 |
+
9,0.3424033423264822,true,4,Y-4;X-14;X-15;X-16
|
| 11 |
+
10,0.3609602749347687,true,4,Y-4;X-14;X-15;X-16
|
| 12 |
+
11,0.33907972276210785,true,4,Y-4;X-14;X-15;X-16
|
| 13 |
+
12,0.381332149108251,true,4,Y-4;X-14;X-15;X-16
|
| 14 |
+
13,0.3817415783802668,true,4,Y-4;X-14;X-15;X-16
|
| 15 |
+
14,0.38172480960687005,true,4,Y-4;X-14;X-15;X-16
|
| 16 |
+
15,0.3451130837202072,true,4,Y-4;X-14;X-15;X-16
|
| 17 |
+
16,0.3515610297520956,true,4,Y-4;X-14;X-15;X-16
|
| 18 |
+
17,0.3418483932813009,true,4,Y-4;X-14;X-15;X-16
|
| 19 |
+
18,0.3787537068128586,true,4,Y-4;X-14;X-15;X-16
|
| 20 |
+
19,0.34178511798381805,true,4,Y-4;X-14;X-15;X-16
|
| 21 |
+
20,0.3646722733974457,true,4,Y-4;X-14;X-15;X-16
|
| 22 |
+
21,0.37189146379629767,true,4,Y-4;X-14;X-15;X-16
|
| 23 |
+
22,0.35373611748218536,true,4,Y-4;X-14;X-15;X-16
|
| 24 |
+
23,0.37545597056547797,true,4,Y-4;X-14;X-15;X-16
|
| 25 |
+
24,0.3514778365691503,true,4,Y-4;X-14;X-15;X-16
|
| 26 |
+
25,0.3433034668366114,true,4,Y-4;X-14;X-15;X-16
|
| 27 |
+
26,0.3771053453286489,true,4,Y-4;X-14;X-15;X-16
|
| 28 |
+
27,0.35247685511906945,true,4,Y-4;X-14;X-15;X-16
|
| 29 |
+
28,0.34733870128790534,true,4,Y-4;X-14;X-15;X-16
|
| 30 |
+
29,0.3406224399805069,true,4,Y-4;X-14;X-15;X-16
|
| 31 |
+
30,0.34595009684562683,true,4,Y-4;X-14;X-15;X-16
|
| 32 |
+
31,0.3439881602923075,true,4,Y-4;X-14;X-15;X-16
|
| 33 |
+
32,0.3570915758609772,true,4,Y-4;X-14;X-15;X-16
|
| 34 |
+
33,0.3531102190415064,true,4,Y-4;X-14;X-15;X-16
|
| 35 |
+
34,0.3848358591397604,true,4,Y-4;X-14;X-15;X-16
|
| 36 |
+
35,0.34848642349243164,true,4,Y-4;X-14;X-15;X-16
|
| 37 |
+
36,0.36217309534549713,true,4,Y-4;X-14;X-15;X-16
|
| 38 |
+
37,0.3483212242523829,true,4,Y-4;X-14;X-15;X-16
|
| 39 |
+
38,0.33929045498371124,true,4,Y-4;X-14;X-15;X-16
|
| 40 |
+
39,0.3441611478726069,true,4,Y-4;X-14;X-15;X-16
|
| 41 |
+
40,0.3530972748994827,true,4,Y-4;X-14;X-15;X-16
|
| 42 |
+
41,0.3833983143170675,true,4,Y-4;X-14;X-15;X-16
|
| 43 |
+
42,0.3438113828500112,true,4,Y-4;X-14;X-15;X-16
|
| 44 |
+
43,0.34940263628959656,true,4,Y-4;X-14;X-15;X-16
|
| 45 |
+
44,0.3445309648911158,true,4,Y-4;X-14;X-15;X-16
|
| 46 |
+
45,0.3501907934745153,true,4,Y-4;X-14;X-15;X-16
|
| 47 |
+
46,0.35458605984846747,true,4,Y-4;X-14;X-15;X-16
|
| 48 |
+
47,0.35241089264551795,true,4,Y-4;X-14;X-15;X-16
|
| 49 |
+
48,0.3517579436302185,true,4,Y-4;X-14;X-15;X-16
|
| 50 |
+
49,0.3495356192191442,true,4,Y-4;X-14;X-15;X-16
|
| 51 |
+
50,0.34348961214224494,true,4,Y-4;X-14;X-15;X-16
|
| 52 |
+
51,0.34816386799017585,true,4,Y-4;X-14;X-15;X-16
|
| 53 |
+
52,0.35219246645768487,true,4,Y-4;X-14;X-15;X-16
|
| 54 |
+
53,0.3491321156422297,true,4,Y-4;X-14;X-15;X-16
|
| 55 |
+
54,0.33699025213718414,true,4,Y-4;X-14;X-15;X-16
|
| 56 |
+
55,0.3794567584991455,true,4,Y-4;X-14;X-15;X-16
|
| 57 |
+
56,0.34859101474285126,true,4,Y-4;X-14;X-15;X-16
|
| 58 |
+
57,0.36692495147387183,true,4,Y-4;X-14;X-15;X-16
|
| 59 |
+
58,0.3380003720521927,true,4,Y-4;X-14;X-15;X-16
|
| 60 |
+
59,0.3460168093442917,true,4,Y-4;X-14;X-15;X-16
|
| 61 |
+
60,0.3728251407543818,true,4,Y-4;X-14;X-15;X-16
|
| 62 |
+
61,0.35211281975110376,true,4,Y-4;X-14;X-15;X-16
|
| 63 |
+
62,0.35988104840119683,true,4,Y-4;X-14;X-15;X-16
|
| 64 |
+
63,0.3542174200216929,true,4,Y-4;X-14;X-15;X-16
|
| 65 |
+
64,0.34016656378904975,true,4,Y-4;X-14;X-15;X-16
|
| 66 |
+
65,0.35790068904558814,true,4,Y-4;X-14;X-15;X-16
|
| 67 |
+
66,0.3379997809727987,true,4,Y-4;X-14;X-15;X-16
|
| 68 |
+
67,0.35174825290838874,true,4,Y-4;X-14;X-15;X-16
|
| 69 |
+
68,0.347043921550115,true,4,Y-4;X-14;X-15;X-16
|
| 70 |
+
69,0.3739911367495855,true,4,Y-4;X-14;X-15;X-16
|
| 71 |
+
70,0.3401368806759516,true,4,Y-4;X-14;X-15;X-16
|
| 72 |
+
71,0.37611752251784003,true,4,Y-4;X-14;X-15;X-16
|
| 73 |
+
72,0.34206880132357276,true,4,Y-4;X-14;X-15;X-16
|
| 74 |
+
73,0.3790056655804316,true,4,Y-4;X-14;X-15;X-16
|
| 75 |
+
74,0.3843736698230108,true,4,Y-4;X-14;X-15;X-16
|
| 76 |
+
75,0.3820884426434835,true,4,Y-4;X-14;X-15;X-16
|
| 77 |
+
76,0.37921497225761414,true,4,Y-4;X-14;X-15;X-16
|
| 78 |
+
77,0.35149887204170227,true,4,Y-4;X-14;X-15;X-16
|
| 79 |
+
78,0.3554788132508596,true,4,Y-4;X-14;X-15;X-16
|
| 80 |
+
79,0.3666918079058329,true,4,Y-4;X-14;X-15;X-16
|
| 81 |
+
80,0.3449161251386007,true,4,Y-4;X-14;X-15;X-16
|
| 82 |
+
81,0.38276966412862146,true,4,Y-4;X-14;X-15;X-16
|
| 83 |
+
82,0.3812187761068344,true,4,Y-4;X-14;X-15;X-16
|
| 84 |
+
83,0.3520535876353582,true,4,Y-4;X-14;X-15;X-16
|
| 85 |
+
84,0.3463789075613022,true,4,Y-4;X-14;X-15;X-16
|
| 86 |
+
85,0.34566865861415863,true,4,Y-4;X-14;X-15;X-16
|
| 87 |
+
86,0.3460667977730433,true,4,Y-4;X-14;X-15;X-16
|
| 88 |
+
87,0.3419599632422129,true,4,Y-4;X-14;X-15;X-16
|
| 89 |
+
88,0.3476617236932119,true,4,Y-4;X-14;X-15;X-16
|
| 90 |
+
89,0.3706303735574087,true,4,Y-4;X-14;X-15;X-16
|
| 91 |
+
90,0.34644113977750146,true,4,Y-4;X-14;X-15;X-16
|
| 92 |
+
91,0.3523273169994354,true,4,Y-4;X-14;X-15;X-16
|
| 93 |
+
92,0.3582994739214579,true,4,Y-4;X-14;X-15;X-16
|
| 94 |
+
93,0.3538975119590759,true,4,Y-4;X-14;X-15;X-16
|
| 95 |
+
94,0.3790803998708725,true,4,Y-4;X-14;X-15;X-16
|
| 96 |
+
95,0.3475813915332159,true,4,Y-4;X-14;X-15;X-16
|
| 97 |
+
96,0.3395392199357351,true,4,Y-4;X-14;X-15;X-16
|
| 98 |
+
97,0.3470164636770884,true,4,Y-4;X-14;X-15;X-16
|
| 99 |
+
98,0.3476693630218506,true,4,Y-4;X-14;X-15;X-16
|
| 100 |
+
99,0.3503692001104355,true,4,Y-4;X-14;X-15;X-16
|
| 101 |
+
100,0.3483559240897497,true,4,Y-4;X-14;X-15;X-16
|
| 102 |
+
101,0.3559330254793167,true,4,Y-4;X-14;X-15;X-16
|
| 103 |
+
102,0.3472145597139994,true,4,Y-4;X-14;X-15;X-16
|
| 104 |
+
103,0.3489331056674322,true,4,Y-4;X-14;X-15;X-16
|
| 105 |
+
104,0.3521694938341776,true,4,Y-4;X-14;X-15;X-16
|
| 106 |
+
105,0.3445242245992025,true,4,Y-4;X-14;X-15;X-16
|
| 107 |
+
106,0.34721974531809485,true,4,Y-4;X-14;X-15;X-16
|
| 108 |
+
107,0.37994764248530066,true,4,Y-4;X-14;X-15;X-16
|
| 109 |
+
108,0.3588190277417501,true,4,Y-4;X-14;X-15;X-16
|
| 110 |
+
109,0.34389907121658325,true,4,Y-4;X-14;X-15;X-16
|
| 111 |
+
110,0.36150750021139777,true,4,Y-4;X-14;X-15;X-16
|
| 112 |
+
111,0.3548774917920431,true,4,Y-4;X-14;X-15;X-16
|
| 113 |
+
112,0.3599904775619507,true,4,Y-4;X-14;X-15;X-16
|
| 114 |
+
113,0.3504287203152975,true,4,Y-4;X-14;X-15;X-16
|
| 115 |
+
114,0.35895157853762305,true,4,Y-4;X-14;X-15;X-16
|
| 116 |
+
115,0.3705332577228546,true,4,Y-4;X-14;X-15;X-16
|
| 117 |
+
116,0.3560210565725962,true,4,Y-4;X-14;X-15;X-16
|
| 118 |
+
117,0.3468300700187683,true,4,Y-4;X-14;X-15;X-16
|
| 119 |
+
118,0.3560007860263189,true,4,Y-4;X-14;X-15;X-16
|
| 120 |
+
119,0.3539868493874868,true,4,Y-4;X-14;X-15;X-16
|
| 121 |
+
120,0.33614909152189887,true,4,Y-4;X-14;X-15;X-16
|
| 122 |
+
121,0.34865080316861474,true,4,Y-4;X-14;X-15;X-16
|
| 123 |
+
122,0.3515466203292211,true,4,Y-4;X-14;X-15;X-16
|
| 124 |
+
123,0.35888379315535224,true,4,Y-4;X-14;X-15;X-16
|
| 125 |
+
124,0.34799129267533624,true,4,Y-4;X-14;X-15;X-16
|
| 126 |
+
125,0.3448231518268585,true,4,Y-4;X-14;X-15;X-16
|
| 127 |
+
126,0.3577128052711487,true,4,Y-4;X-14;X-15;X-16
|
| 128 |
+
127,0.350676084558169,true,4,Y-4;X-14;X-15;X-16
|
| 129 |
+
128,0.3510897010564804,true,4,Y-4;X-14;X-15;X-16
|
| 130 |
+
129,0.3526856452226639,true,4,Y-4;X-14;X-15;X-16
|
| 131 |
+
130,0.36019415160020196,true,4,Y-4;X-14;X-15;X-16
|
| 132 |
+
131,0.351927121480306,true,4,Y-4;X-14;X-15;X-16
|
| 133 |
+
132,0.33989305794239044,true,4,Y-4;X-14;X-15;X-16
|
| 134 |
+
133,0.34871854881445563,true,4,Y-4;X-14;X-15;X-16
|
| 135 |
+
134,0.34301573038101196,true,4,Y-4;X-14;X-15;X-16
|
| 136 |
+
135,0.35838388899962104,true,4,Y-4;X-14;X-15;X-16
|
| 137 |
+
136,0.34030034144719445,true,4,Y-4;X-14;X-15;X-16
|
| 138 |
+
137,0.3529029885927836,true,4,Y-4;X-14;X-15;X-16
|
| 139 |
+
138,0.3525668432315191,true,4,Y-4;X-14;X-15;X-16
|
| 140 |
+
139,0.34885677198568976,true,4,Y-4;X-14;X-15;X-16
|
| 141 |
+
140,0.35446813205877936,true,4,Y-4;X-14;X-15;X-16
|
| 142 |
+
141,0.3821118424336115,true,4,Y-4;X-14;X-15;X-16
|
| 143 |
+
142,0.34470916291077935,true,4,Y-4;X-14;X-15;X-16
|
| 144 |
+
143,0.34355669716993964,true,4,Y-4;X-14;X-15;X-16
|
| 145 |
+
144,0.3483401437600454,true,4,Y-4;X-14;X-15;X-16
|
| 146 |
+
145,0.35135207076867425,true,4,Y-4;X-14;X-15;X-16
|
| 147 |
+
146,0.3505520621935526,true,4,Y-4;X-14;X-15;X-16
|
| 148 |
+
147,0.3455455402533213,true,4,Y-4;X-14;X-15;X-16
|
| 149 |
+
148,0.37942679723103845,true,4,Y-4;X-14;X-15;X-16
|
| 150 |
+
149,0.3494625886281332,true,4,Y-4;X-14;X-15;X-16
|
| 151 |
+
150,0.35253724455833435,true,4,Y-4;X-14;X-15;X-16
|
| 152 |
+
151,0.35309371848901117,true,4,Y-4;X-14;X-15;X-16
|
| 153 |
+
152,0.38439940909544623,true,4,Y-4;X-14;X-15;X-16
|
| 154 |
+
153,0.34806210796038306,true,4,Y-4;X-14;X-15;X-16
|
| 155 |
+
154,0.3449005136887232,true,4,Y-4;X-14;X-15;X-16
|
| 156 |
+
155,0.34405648708343506,true,4,Y-4;X-14;X-15;X-16
|
| 157 |
+
156,0.34394633273283637,true,4,Y-4;X-14;X-15;X-16
|
| 158 |
+
157,0.3540697246789932,true,4,Y-4;X-14;X-15;X-16
|
| 159 |
+
158,0.34131025771299994,true,4,Y-4;X-14;X-15;X-16
|
| 160 |
+
159,0.3388786961634954,true,4,Y-4;X-14;X-15;X-16
|
| 161 |
+
160,0.34834580620129907,true,4,Y-4;X-14;X-15;X-16
|
| 162 |
+
161,0.35110872983932495,true,4,Y-4;X-14;X-15;X-16
|
| 163 |
+
162,0.3438411752382914,true,4,Y-4;X-14;X-15;X-16
|
| 164 |
+
163,0.3473967661460241,true,4,Y-4;X-14;X-15;X-16
|
| 165 |
+
164,0.34460139771302545,true,4,Y-4;X-14;X-15;X-16
|
| 166 |
+
165,0.3480007996161779,true,4,Y-4;X-14;X-15;X-16
|
| 167 |
+
166,0.35239056746164954,true,4,Y-4;X-14;X-15;X-16
|
| 168 |
+
167,0.35786113142967224,true,4,Y-4;X-14;X-15;X-16
|
| 169 |
+
168,0.3494000732898712,true,4,Y-4;X-14;X-15;X-16
|
| 170 |
+
169,0.3460137049357096,true,4,Y-4;X-14;X-15;X-16
|
| 171 |
+
170,0.3431391716003418,true,4,Y-4;X-14;X-15;X-16
|
| 172 |
+
171,0.3851578583319982,true,4,Y-4;X-14;X-15;X-16
|
| 173 |
+
172,0.35515041152636206,true,4,Y-4;X-14;X-15;X-16
|
| 174 |
+
173,0.3826426019271215,true,4,Y-4;X-14;X-15;X-16
|
| 175 |
+
174,0.38391278187433875,true,4,Y-4;X-14;X-15;X-16
|
| 176 |
+
175,0.3438434898853302,true,4,Y-4;X-14;X-15;X-16
|
| 177 |
+
176,0.3598177284002304,true,4,Y-4;X-14;X-15;X-16
|
| 178 |
+
177,0.3673089941342672,true,4,Y-4;X-14;X-15;X-16
|
| 179 |
+
178,0.3768031944831213,true,4,Y-4;X-14;X-15;X-16
|
| 180 |
+
179,0.3490620503822962,true,4,Y-4;X-14;X-15;X-16
|
| 181 |
+
180,0.33987779915332794,true,4,Y-4;X-14;X-15;X-16
|
| 182 |
+
181,0.3394384731849035,true,4,Y-4;X-14;X-15;X-16
|
| 183 |
+
182,0.3503947754700979,true,4,Y-4;X-14;X-15;X-16
|
| 184 |
+
183,0.3419712036848068,true,4,Y-4;X-14;X-15;X-16
|
| 185 |
+
184,0.3630563020706177,true,4,Y-4;X-14;X-15;X-16
|
| 186 |
+
185,0.3388984054327011,true,4,Y-4;X-14;X-15;X-16
|
| 187 |
+
186,0.34217621882756555,true,4,Y-4;X-14;X-15;X-16
|
| 188 |
+
187,0.37315139174461365,true,4,Y-4;X-14;X-15;X-16
|
| 189 |
+
188,0.35754188895225525,true,4,Y-4;X-14;X-15;X-16
|
| 190 |
+
189,0.36037887136141455,true,4,Y-4;X-14;X-15;X-16
|
| 191 |
+
190,0.3776668608188629,true,4,Y-4;X-14;X-15;X-16
|
| 192 |
+
191,0.3724663952986399,true,4,Y-4;X-14;X-15;X-16
|
| 193 |
+
192,0.35704356928666436,true,4,Y-4;X-14;X-15;X-16
|
| 194 |
+
193,0.362161785364151,true,4,Y-4;X-14;X-15;X-16
|
| 195 |
+
194,0.3536730309327444,true,4,Y-4;X-14;X-15;X-16
|
| 196 |
+
195,0.3517526239156723,true,4,Y-4;X-14;X-15;X-16
|
| 197 |
+
196,0.371451790134112,true,4,Y-4;X-14;X-15;X-16
|
| 198 |
+
197,0.37124224503835046,true,4,Y-4;X-14;X-15;X-16
|
| 199 |
+
198,0.34649654726187384,true,4,Y-4;X-14;X-15;X-16
|
| 200 |
+
199,0.353202223777771,true,4,Y-4;X-14;X-15;X-16
|
| 201 |
+
200,0.3502361923456192,true,4,Y-4;X-14;X-15;X-16
|
| 202 |
+
201,0.35929346084594727,true,4,Y-4;X-14;X-15;X-16
|
| 203 |
+
202,0.35148817797501886,true,4,Y-4;X-14;X-15;X-16
|
| 204 |
+
203,0.3406952073176702,true,4,Y-4;X-14;X-15;X-16
|
| 205 |
+
204,0.381009096900622,true,4,Y-4;X-14;X-15;X-16
|
| 206 |
+
205,0.3872829874356588,true,4,Y-4;X-14;X-15;X-16
|
| 207 |
+
206,0.33981030682722724,true,4,Y-4;X-14;X-15;X-16
|
| 208 |
+
207,0.3466399163007736,true,4,Y-4;X-14;X-15;X-16
|
| 209 |
+
208,0.36445675790309906,true,4,Y-4;X-14;X-15;X-16
|
| 210 |
+
209,0.3407026926676432,true,4,Y-4;X-14;X-15;X-16
|
| 211 |
+
210,0.3551466266314188,true,4,Y-4;X-14;X-15;X-16
|
| 212 |
+
211,0.34485720098018646,true,4,Y-4;X-14;X-15;X-16
|
| 213 |
+
212,0.3440009454886118,true,4,Y-4;X-14;X-15;X-16
|
| 214 |
+
213,0.3424153576294581,true,4,Y-4;X-14;X-15;X-16
|
| 215 |
+
214,0.3421995540459951,true,4,Y-4;X-14;X-15;X-16
|
| 216 |
+
215,0.34202566246191657,true,4,Y-4;X-14;X-15;X-16
|
| 217 |
+
216,0.37500021855036414,true,4,Y-4;X-14;X-15;X-16
|
| 218 |
+
217,0.37941510478655494,true,4,Y-4;X-14;X-15;X-16
|
| 219 |
+
218,0.3497963696718216,true,4,Y-4;X-14;X-15;X-16
|
| 220 |
+
219,0.3684433698654175,true,4,Y-4;X-14;X-15;X-16
|
| 221 |
+
220,0.3769674847523371,true,4,Y-4;X-14;X-15;X-16
|
| 222 |
+
221,0.34530789156754815,true,4,Y-4;X-14;X-15;X-16
|
| 223 |
+
222,0.3581785559654236,true,4,Y-4;X-14;X-15;X-16
|
| 224 |
+
223,0.3498951494693756,true,4,Y-4;X-14;X-15;X-16
|
| 225 |
+
224,0.34697679678599036,true,4,Y-4;X-14;X-15;X-16
|
| 226 |
+
225,0.34473489721616113,true,4,Y-4;X-14;X-15;X-16
|
| 227 |
+
226,0.340437059601148,true,4,Y-4;X-14;X-15;X-16
|
| 228 |
+
227,0.3490713139375051,true,4,Y-4;X-14;X-15;X-16
|
| 229 |
+
228,0.38375222186247504,true,4,Y-4;X-14;X-15;X-16
|
| 230 |
+
229,0.3442392200231552,true,4,Y-4;X-14;X-15;X-16
|
| 231 |
+
230,0.3454762349526087,true,4,Y-4;X-14;X-15;X-16
|
| 232 |
+
231,0.34291665752728784,true,4,Y-4;X-14;X-15;X-16
|
| 233 |
+
232,0.37564513087272644,true,4,Y-4;X-14;X-15;X-16
|
| 234 |
+
233,0.3497479359308878,true,4,Y-4;X-14;X-15;X-16
|
| 235 |
+
234,0.3589025388161341,true,4,Y-4;X-14;X-15;X-16
|
| 236 |
+
235,0.3473763714234034,true,4,Y-4;X-14;X-15;X-16
|
| 237 |
+
236,0.3824052860339483,true,4,Y-4;X-14;X-15;X-16
|
| 238 |
+
237,0.3558925986289978,true,4,Y-4;X-14;X-15;X-16
|
| 239 |
+
238,0.35916968186696374,true,4,Y-4;X-14;X-15;X-16
|
| 240 |
+
239,0.34153202176094055,true,4,Y-4;X-14;X-15;X-16
|
| 241 |
+
240,0.34265541533629096,true,4,Y-4;X-14;X-15;X-16
|
| 242 |
+
241,0.35240791738033295,true,4,Y-4;X-14;X-15;X-16
|
| 243 |
+
242,0.3386556704839071,true,4,Y-4;X-14;X-15;X-16
|
| 244 |
+
243,0.34625618159770966,true,4,Y-4;X-14;X-15;X-16
|
| 245 |
+
244,0.351157416899999,true,4,Y-4;X-14;X-15;X-16
|
| 246 |
+
245,0.35502021511395776,true,4,Y-4;X-14;X-15;X-16
|
| 247 |
+
246,0.3564945856730143,true,4,Y-4;X-14;X-15;X-16
|
| 248 |
+
247,0.3474683612585068,true,4,Y-4;X-14;X-15;X-16
|
| 249 |
+
248,0.34446648756663,true,4,Y-4;X-14;X-15;X-16
|
| 250 |
+
249,0.3455555637677511,true,4,Y-4;X-14;X-15;X-16
|
| 251 |
+
250,0.3782188842693964,true,4,Y-4;X-14;X-15;X-16
|
| 252 |
+
251,0.35077094535032904,true,4,Y-4;X-14;X-15;X-16
|
| 253 |
+
252,0.3635778079430262,true,4,Y-4;X-14;X-15;X-16
|
| 254 |
+
253,0.354649489124616,true,4,Y-4;X-14;X-15;X-16
|
| 255 |
+
254,0.3548106998205185,true,4,Y-4;X-14;X-15;X-16
|
| 256 |
+
255,0.34576425453027093,true,4,Y-4;X-14;X-15;X-16
|
| 257 |
+
256,0.35002402464548743,true,4,Y-4;X-14;X-15;X-16
|
| 258 |
+
257,0.3495090752840042,true,4,Y-4;X-14;X-15;X-16
|
| 259 |
+
258,0.3466632068157196,true,4,Y-4;X-14;X-15;X-16
|
| 260 |
+
259,0.3690320551395416,true,4,Y-4;X-14;X-15;X-16
|
| 261 |
+
260,0.34037482738494873,true,4,Y-4;X-14;X-15;X-16
|
| 262 |
+
261,0.34345343708992004,true,4,Y-4;X-14;X-15;X-16
|
| 263 |
+
262,0.3650604536135992,true,4,Y-4;X-14;X-15;X-16
|
| 264 |
+
263,0.34499774376551307,true,4,Y-4;X-14;X-15;X-16
|
| 265 |
+
264,0.37977453569571173,true,4,Y-4;X-14;X-15;X-16
|
| 266 |
+
265,0.35875863333543145,true,4,Y-4;X-14;X-15;X-16
|
| 267 |
+
266,0.3475164522727331,true,4,Y-4;X-14;X-15;X-16
|
| 268 |
+
267,0.3482773005962372,true,4,Y-4;X-14;X-15;X-16
|
| 269 |
+
268,0.3405672460794449,true,4,Y-4;X-14;X-15;X-16
|
| 270 |
+
269,0.3572241266568502,true,4,Y-4;X-14;X-15;X-16
|
| 271 |
+
270,0.3448906342188517,true,4,Y-4;X-14;X-15;X-16
|
| 272 |
+
271,0.3483964304129282,true,4,Y-4;X-14;X-15;X-16
|
| 273 |
+
272,0.3476826250553131,true,4,Y-4;X-14;X-15;X-16
|
| 274 |
+
273,0.34731615583101905,true,4,Y-4;X-14;X-15;X-16
|
| 275 |
+
274,0.38033088545004523,true,4,Y-4;X-14;X-15;X-16
|
| 276 |
+
275,0.33805207908153534,true,4,Y-4;X-14;X-15;X-16
|
| 277 |
+
276,0.3640700429677963,true,4,Y-4;X-14;X-15;X-16
|
| 278 |
+
277,0.3545143554608027,true,4,Y-4;X-14;X-15;X-16
|
| 279 |
+
278,0.36435363690058387,true,4,Y-4;X-14;X-15;X-16
|
| 280 |
+
279,0.36810829738775885,true,4,Y-4;X-14;X-15;X-16
|
| 281 |
+
280,0.3888605982065201,true,4,Y-4;X-14;X-15;X-16
|
| 282 |
+
281,0.34714781741301215,true,4,Y-4;X-14;X-15;X-16
|
| 283 |
+
282,0.359450618426005,true,4,Y-4;X-14;X-15;X-16
|
| 284 |
+
283,0.3845570832490921,true,4,Y-4;X-14;X-15;X-16
|
| 285 |
+
284,0.3869556188583374,true,4,Y-4;X-14;X-15;X-16
|
| 286 |
+
285,0.34323231875896454,true,4,Y-4;X-14;X-15;X-16
|
| 287 |
+
286,0.348299965262413,true,4,Y-4;X-14;X-15;X-16
|
| 288 |
+
287,0.34269658724466956,true,4,Y-4;X-14;X-15;X-16
|
| 289 |
+
288,0.3378242154916128,true,4,Y-4;X-14;X-15;X-16
|
| 290 |
+
289,0.3740089684724808,true,4,Y-4;X-14;X-15;X-16
|
| 291 |
+
290,0.3476622998714447,true,4,Y-4;X-14;X-15;X-16
|
| 292 |
+
291,0.3476293583710989,true,4,Y-4;X-14;X-15;X-16
|
| 293 |
+
292,0.34939021368821466,true,4,Y-4;X-14;X-15;X-16
|
| 294 |
+
293,0.33575011789798737,true,4,Y-4;X-14;X-15;X-16
|
| 295 |
+
294,0.3457184433937073,true,4,Y-4;X-14;X-15;X-16
|
| 296 |
+
295,0.38511334359645844,true,4,Y-4;X-14;X-15;X-16
|
| 297 |
+
296,0.35279574493567145,true,4,Y-4;X-14;X-15;X-16
|
| 298 |
+
297,0.34358036021391547,true,4,Y-4;X-14;X-15;X-16
|
| 299 |
+
298,0.3502629200617472,true,4,Y-4;X-14;X-15;X-16
|
| 300 |
+
299,0.3467387855052948,true,4,Y-4;X-14;X-15;X-16
|
| 301 |
+
300,0.34392705063025153,true,4,Y-4;X-14;X-15;X-16
|
| 302 |
+
301,0.34053896864255273,true,4,Y-4;X-14;X-15;X-16
|
| 303 |
+
302,0.35219883918762207,true,4,Y-4;X-14;X-15;X-16
|
| 304 |
+
303,0.3475775818030039,true,4,Y-4;X-14;X-15;X-16
|
| 305 |
+
304,0.3614586343367895,true,4,Y-4;X-14;X-15;X-16
|
| 306 |
+
305,0.3770411560932795,true,4,Y-4;X-14;X-15;X-16
|
| 307 |
+
306,0.3752357612053553,true,4,Y-4;X-14;X-15;X-16
|
| 308 |
+
307,0.3482293287913004,true,4,Y-4;X-14;X-15;X-16
|
| 309 |
+
308,0.34796094397703803,true,4,Y-4;X-14;X-15;X-16
|
| 310 |
+
309,0.38664020101229346,true,4,Y-4;X-14;X-15;X-16
|
| 311 |
+
310,0.34728945295015967,true,4,Y-4;X-14;X-15;X-16
|
| 312 |
+
311,0.3736526668071747,true,4,Y-4;X-14;X-15;X-16
|
| 313 |
+
312,0.3479018211364746,true,4,Y-4;X-14;X-15;X-16
|
| 314 |
+
313,0.35944311817487085,true,4,Y-4;X-14;X-15;X-16
|
| 315 |
+
314,0.3531447649002075,true,4,Y-4;X-14;X-15;X-16
|
| 316 |
+
315,0.38570666313171387,true,4,Y-4;X-14;X-15;X-16
|
| 317 |
+
316,0.37387348214785254,true,4,Y-4;X-14;X-15;X-16
|
| 318 |
+
317,0.3439298371473948,true,4,Y-4;X-14;X-15;X-16
|
| 319 |
+
318,0.3353104988733927,true,4,Y-4;X-14;X-15;X-16
|
| 320 |
+
319,0.35397067169348395,true,4,Y-4;X-14;X-15;X-16
|
| 321 |
+
320,0.34497537215550744,true,4,Y-4;X-14;X-15;X-16
|
| 322 |
+
321,0.3730275183916092,true,4,Y-4;X-14;X-15;X-16
|
| 323 |
+
322,0.35320294400056207,true,4,Y-4;X-14;X-15;X-16
|
| 324 |
+
323,0.34038640558719635,true,4,Y-4;X-14;X-15;X-16
|
| 325 |
+
324,0.35159268478552497,true,4,Y-4;X-14;X-15;X-16
|
| 326 |
+
325,0.3487641463677088,true,4,Y-4;X-14;X-15;X-16
|
| 327 |
+
326,0.36885527769724524,true,4,Y-4;X-14;X-15;X-16
|
| 328 |
+
327,0.3770240445931753,true,4,Y-4;X-14;X-15;X-16
|
| 329 |
+
328,0.3373940040667852,true,4,Y-4;X-14;X-15;X-16
|
| 330 |
+
329,0.3417827934026718,true,4,Y-4;X-14;X-15;X-16
|
| 331 |
+
330,0.36818612118562066,true,4,Y-4;X-14;X-15;X-16
|
| 332 |
+
331,0.38465508818626404,true,4,Y-4;X-14;X-15;X-16
|
| 333 |
+
332,0.35987590750058496,true,4,Y-4;X-14;X-15;X-16
|
| 334 |
+
333,0.3430445690949758,true,4,Y-4;X-14;X-15;X-16
|
| 335 |
+
334,0.35079263647397363,true,4,Y-4;X-14;X-15;X-16
|
| 336 |
+
335,0.353685071070989,true,4,Y-4;X-14;X-15;X-16
|
| 337 |
+
336,0.37935538589954376,true,4,Y-4;X-14;X-15;X-16
|
| 338 |
+
337,0.36845419804255164,true,4,Y-4;X-14;X-15;X-16
|
| 339 |
+
338,0.35356859862804413,true,4,Y-4;X-14;X-15;X-16
|
| 340 |
+
339,0.38415307799975074,true,4,Y-4;X-14;X-15;X-16
|
| 341 |
+
340,0.3448419074217478,true,4,Y-4;X-14;X-15;X-16
|
| 342 |
+
341,0.33807396392027533,true,4,Y-4;X-14;X-15;X-16
|
| 343 |
+
342,0.3400692890087763,true,4,Y-4;X-14;X-15;X-16
|
| 344 |
+
343,0.3474159588416418,true,4,Y-4;X-14;X-15;X-16
|
| 345 |
+
344,0.34031561513741815,true,4,Y-4;X-14;X-15;X-16
|
| 346 |
+
345,0.3524336864550909,true,4,Y-4;X-14;X-15;X-16
|
| 347 |
+
346,0.3512922525405884,true,4,Y-4;X-14;X-15;X-16
|
| 348 |
+
347,0.34686236580212915,true,4,Y-4;X-14;X-15;X-16
|
| 349 |
+
348,0.35651628176371253,true,4,Y-4;X-14;X-15;X-16
|
| 350 |
+
349,0.3492033779621124,true,4,Y-4;X-14;X-15;X-16
|
| 351 |
+
350,0.33871320386727655,true,4,Y-4;X-14;X-15;X-16
|
| 352 |
+
351,0.37716287871201837,true,4,Y-4;X-14;X-15;X-16
|
| 353 |
+
352,0.3464714835087458,true,4,Y-4;X-14;X-15;X-16
|
| 354 |
+
353,0.3731672714153925,true,4,Y-4;X-14;X-15;X-16
|
| 355 |
+
354,0.36943192283312476,true,4,Y-4;X-14;X-15;X-16
|
| 356 |
+
355,0.3616795291503271,true,4,Y-4;X-14;X-15;X-16
|
| 357 |
+
356,0.37275543312231696,true,4,Y-4;X-14;X-15;X-16
|
| 358 |
+
357,0.34717809657255805,true,4,Y-4;X-14;X-15;X-16
|
| 359 |
+
358,0.34475871423880255,true,4,Y-4;X-14;X-15;X-16
|
| 360 |
+
359,0.3459272483984629,true,4,Y-4;X-14;X-15;X-16
|
| 361 |
+
360,0.3452642112970352,true,4,Y-4;X-14;X-15;X-16
|
| 362 |
+
361,0.34677750865618384,true,4,Y-4;X-14;X-15;X-16
|
| 363 |
+
362,0.3854369670152664,true,4,Y-4;X-14;X-15;X-16
|
| 364 |
+
363,0.3514308830102285,true,4,Y-4;X-14;X-15;X-16
|
| 365 |
+
364,0.35168311993281043,true,4,Y-4;X-14;X-15;X-16
|
| 366 |
+
365,0.3759202708800634,true,4,Y-4;X-14;X-15;X-16
|
| 367 |
+
366,0.36055166025956475,true,4,Y-4;X-14;X-15;X-16
|
| 368 |
+
367,0.3768100539843241,true,4,Y-4;X-14;X-15;X-16
|
| 369 |
+
368,0.3437922795613607,true,4,Y-4;X-14;X-15;X-16
|
| 370 |
+
369,0.35572500030199683,true,4,Y-4;X-14;X-15;X-16
|
| 371 |
+
370,0.3481576244036356,true,4,Y-4;X-14;X-15;X-16
|
| 372 |
+
371,0.34677781661351526,true,4,Y-4;X-14;X-15;X-16
|
| 373 |
+
372,0.3462307006120682,true,4,Y-4;X-14;X-15;X-16
|
| 374 |
+
373,0.34408063193162286,true,4,Y-4;X-14;X-15;X-16
|
| 375 |
+
374,0.3673677444458008,true,4,Y-4;X-14;X-15;X-16
|
| 376 |
+
375,0.3577894320090612,true,4,Y-4;X-14;X-15;X-16
|
| 377 |
+
376,0.34725103775660193,true,4,Y-4;X-14;X-15;X-16
|
| 378 |
+
377,0.36311831076939904,true,4,Y-4;X-14;X-15;X-16
|
| 379 |
+
378,0.37317823370297754,true,4,Y-4;X-14;X-15;X-16
|
| 380 |
+
379,0.34453919529914856,true,4,Y-4;X-14;X-15;X-16
|
| 381 |
+
380,0.34403005739053094,true,4,Y-4;X-14;X-15;X-16
|
| 382 |
+
381,0.362069254120191,true,4,Y-4;X-14;X-15;X-16
|
| 383 |
+
382,0.3786483357350031,true,4,Y-4;X-14;X-15;X-16
|
| 384 |
+
383,0.37158315877119696,true,4,Y-4;X-14;X-15;X-16
|
| 385 |
+
384,0.3579365611076355,true,4,Y-4;X-14;X-15;X-16
|
| 386 |
+
385,0.3491609344879786,true,4,Y-4;X-14;X-15;X-16
|
| 387 |
+
386,0.3504734287659327,true,4,Y-4;X-14;X-15;X-16
|
| 388 |
+
387,0.352478489279747,true,4,Y-4;X-14;X-15;X-16
|
| 389 |
+
388,0.37410006423791253,true,4,Y-4;X-14;X-15;X-16
|
| 390 |
+
389,0.3443691978851954,true,4,Y-4;X-14;X-15;X-16
|
| 391 |
+
390,0.35530663530031836,true,4,Y-4;X-14;X-15;X-16
|
| 392 |
+
391,0.3454461544752121,true,4,Y-4;X-14;X-15;X-16
|
| 393 |
+
392,0.3381874511639277,true,4,Y-4;X-14;X-15;X-16
|
| 394 |
+
393,0.3424451450506846,true,4,Y-4;X-14;X-15;X-16
|
| 395 |
+
394,0.3355673452218374,true,4,Y-4;X-14;X-15;X-16
|
| 396 |
+
395,0.3489955017964045,true,4,Y-4;X-14;X-15;X-16
|
| 397 |
+
396,0.34954857329527533,true,4,Y-4;X-14;X-15;X-16
|
| 398 |
+
397,0.3521981487671534,true,4,Y-4;X-14;X-15;X-16
|
| 399 |
+
398,0.3658656279246012,true,4,Y-4;X-14;X-15;X-16
|
| 400 |
+
399,0.3798428177833557,true,4,Y-4;X-14;X-15;X-16
|
| 401 |
+
400,0.369214211901029,true,4,Y-4;X-14;X-15;X-16
|
| 402 |
+
401,0.3476307690143585,true,4,Y-4;X-14;X-15;X-16
|
| 403 |
+
402,0.3536028365294138,true,4,Y-4;X-14;X-15;X-16
|
| 404 |
+
403,0.35013577838738763,true,4,Y-4;X-14;X-15;X-16
|
| 405 |
+
404,0.34336300690968835,true,4,Y-4;X-14;X-15;X-16
|
| 406 |
+
405,0.34875816106796265,true,4,Y-4;X-14;X-15;X-16
|
| 407 |
+
406,0.34492671986420953,true,4,Y-4;X-14;X-15;X-16
|
| 408 |
+
407,0.36977139115333557,true,4,Y-4;X-14;X-15;X-16
|
| 409 |
+
408,0.3459320912758509,true,4,Y-4;X-14;X-15;X-16
|
| 410 |
+
409,0.3594076087077459,true,4,Y-4;X-14;X-15;X-16
|
| 411 |
+
410,0.34356271723906195,true,4,Y-4;X-14;X-15;X-16
|
| 412 |
+
411,0.3477467944224676,true,4,Y-4;X-14;X-15;X-16
|
| 413 |
+
412,0.346897155046463,true,4,Y-4;X-14;X-15;X-16
|
| 414 |
+
413,0.34138357639312744,true,4,Y-4;X-14;X-15;X-16
|
| 415 |
+
414,0.3776817421118418,true,4,Y-4;X-14;X-15;X-16
|
| 416 |
+
415,0.3462575376033783,true,4,Y-4;X-14;X-15;X-16
|
| 417 |
+
416,0.3464354624350866,true,4,Y-4;X-14;X-15;X-16
|
| 418 |
+
417,0.3485209047794342,true,4,Y-4;X-14;X-15;X-16
|
| 419 |
+
418,0.356380358338356,true,4,Y-4;X-14;X-15;X-16
|
| 420 |
+
419,0.3622211366891861,true,4,Y-4;X-14;X-15;X-16
|
| 421 |
+
420,0.3802957087755203,true,4,Y-4;X-14;X-15;X-16
|
| 422 |
+
421,0.3781160612901052,true,4,Y-4;X-14;X-15;X-16
|
| 423 |
+
422,0.3568030347426733,true,4,Y-4;X-14;X-15;X-16
|
| 424 |
+
423,0.35437195996443427,true,4,Y-4;X-14;X-15;X-16
|
| 425 |
+
424,0.37449347476164496,true,4,Y-4;X-14;X-15;X-16
|
| 426 |
+
425,0.3599476863940557,true,4,Y-4;X-14;X-15;X-16
|
| 427 |
+
426,0.36587279538313544,true,4,Y-4;X-14;X-15;X-16
|
| 428 |
+
427,0.34473858277002967,true,4,Y-4;X-14;X-15;X-16
|
| 429 |
+
428,0.3718041181564331,true,4,Y-4;X-14;X-15;X-16
|
| 430 |
+
429,0.34474337100982666,true,4,Y-4;X-14;X-15;X-16
|
| 431 |
+
430,0.34659707049528754,true,4,Y-4;X-14;X-15;X-16
|
| 432 |
+
431,0.3479718863964081,true,4,Y-4;X-14;X-15;X-16
|
| 433 |
+
432,0.35053028662999475,true,4,Y-4;X-14;X-15;X-16
|
| 434 |
+
433,0.3540815462668737,true,4,Y-4;X-14;X-15;X-16
|
| 435 |
+
434,0.34361936151981354,true,4,Y-4;X-14;X-15;X-16
|
| 436 |
+
435,0.37571406861146295,true,4,Y-4;X-14;X-15;X-16
|
| 437 |
+
436,0.3649645745754242,true,4,Y-4;X-14;X-15;X-16
|
| 438 |
+
437,0.34506329894065857,true,4,Y-4;X-14;X-15;X-16
|
| 439 |
+
438,0.34225400288899743,true,4,Y-4;X-14;X-15;X-16
|
| 440 |
+
439,0.3474563558896383,true,4,Y-4;X-14;X-15;X-16
|
| 441 |
+
440,0.36787719527880347,true,4,Y-4;X-14;X-15;X-16
|
| 442 |
+
441,0.3471689820289612,true,4,Y-4;X-14;X-15;X-16
|
| 443 |
+
442,0.3479464302460352,true,4,Y-4;X-14;X-15;X-16
|
| 444 |
+
443,0.38068240880966187,true,4,Y-4;X-14;X-15;X-16
|
| 445 |
+
444,0.35062445203463233,true,4,Y-4;X-14;X-15;X-16
|
| 446 |
+
445,0.354264035820961,true,4,Y-4;X-14;X-15;X-16
|
| 447 |
+
446,0.3536220441261927,true,4,Y-4;X-14;X-15;X-16
|
| 448 |
+
447,0.36916952331860864,true,4,Y-4;X-14;X-15;X-16
|
| 449 |
+
448,0.3783888866504034,true,4,Y-4;X-14;X-15;X-16
|
| 450 |
+
449,0.34361507991949714,true,4,Y-4;X-14;X-15;X-16
|
| 451 |
+
450,0.3384132583936056,true,4,Y-4;X-14;X-15;X-16
|
| 452 |
+
451,0.34414616227149963,true,4,Y-4;X-14;X-15;X-16
|
| 453 |
+
452,0.3513202567895254,true,4,Y-4;X-14;X-15;X-16
|
| 454 |
+
453,0.3832464963197708,true,4,Y-4;X-14;X-15;X-16
|
| 455 |
+
454,0.3387235005696615,true,4,Y-4;X-14;X-15;X-16
|
| 456 |
+
455,0.3844067851702372,true,4,Y-4;X-14;X-15;X-16
|
| 457 |
+
456,0.3385346929232279,true,4,Y-4;X-14;X-15;X-16
|
| 458 |
+
457,0.380063513914744,true,4,Y-4;X-14;X-15;X-16
|
| 459 |
+
458,0.35745571057001746,true,4,Y-4;X-14;X-15;X-16
|
| 460 |
+
459,0.38174636165301,true,4,Y-4;X-14;X-15;X-16
|
| 461 |
+
460,0.37748314440250397,true,4,Y-4;X-14;X-15;X-16
|
| 462 |
+
461,0.35280184944470727,true,4,Y-4;X-14;X-15;X-16
|
| 463 |
+
462,0.3719876011212667,true,4,Y-4;X-14;X-15;X-16
|
| 464 |
+
463,0.3541833211978277,true,4,Y-4;X-14;X-15;X-16
|
| 465 |
+
464,0.35079393784205115,true,4,Y-4;X-14;X-15;X-16
|
| 466 |
+
465,0.3714203735192617,true,4,Y-4;X-14;X-15;X-16
|
| 467 |
+
466,0.3437741746505102,true,4,Y-4;X-14;X-15;X-16
|
| 468 |
+
467,0.34273725251356757,true,4,Y-4;X-14;X-15;X-16
|
| 469 |
+
468,0.34443433582782745,true,4,Y-4;X-14;X-15;X-16
|
| 470 |
+
469,0.3401193171739578,true,4,Y-4;X-14;X-15;X-16
|
| 471 |
+
470,0.3783543755610784,true,4,Y-4;X-14;X-15;X-16
|
| 472 |
+
471,0.35678810377915704,true,4,Y-4;X-14;X-15;X-16
|
| 473 |
+
472,0.34605470299720764,true,4,Y-4;X-14;X-15;X-16
|
| 474 |
+
473,0.3520689904689789,true,4,Y-4;X-14;X-15;X-16
|
| 475 |
+
474,0.35699044167995453,true,4,Y-4;X-14;X-15;X-16
|
| 476 |
+
475,0.34458105762799585,true,4,Y-4;X-14;X-15;X-16
|
| 477 |
+
476,0.3486201812823614,true,4,Y-4;X-14;X-15;X-16
|
| 478 |
+
477,0.3526142040888468,true,4,Y-4;X-14;X-15;X-16
|
| 479 |
+
478,0.36300720274448395,true,4,Y-4;X-14;X-15;X-16
|
| 480 |
+
479,0.33719394604365027,true,4,Y-4;X-14;X-15;X-16
|
| 481 |
+
480,0.34897851943969727,true,4,Y-4;X-14;X-15;X-16
|
| 482 |
+
481,0.35256916781266534,true,4,Y-4;X-14;X-15;X-16
|
| 483 |
+
482,0.34800294538338983,true,4,Y-4;X-14;X-15;X-16
|
| 484 |
+
483,0.37704024712244666,true,4,Y-4;X-14;X-15;X-16
|
| 485 |
+
484,0.35326315462589264,true,4,Y-4;X-14;X-15;X-16
|
| 486 |
+
485,0.35626330971717834,true,4,Y-4;X-14;X-15;X-16
|
| 487 |
+
486,0.3522376914819082,true,4,Y-4;X-14;X-15;X-16
|
| 488 |
+
487,0.3575465728839239,true,4,Y-4;X-14;X-15;X-16
|
| 489 |
+
488,0.36018089950084686,true,4,Y-4;X-14;X-15;X-16
|
| 490 |
+
489,0.34959494074185693,true,4,Y-4;X-14;X-15;X-16
|
| 491 |
+
490,0.343854159116745,true,4,Y-4;X-14;X-15;X-16
|
| 492 |
+
491,0.3493368774652481,true,4,Y-4;X-14;X-15;X-16
|
| 493 |
+
492,0.3809196650981903,true,4,Y-4;X-14;X-15;X-16
|
| 494 |
+
493,0.34368080397446954,true,4,Y-4;X-14;X-15;X-16
|
| 495 |
+
494,0.37078663210074103,true,4,Y-4;X-14;X-15;X-16
|
| 496 |
+
495,0.3694220334291458,true,4,Y-4;X-14;X-15;X-16
|
| 497 |
+
496,0.34718597431977594,true,4,Y-4;X-14;X-15;X-16
|
| 498 |
+
497,0.37630823254585266,true,4,Y-4;X-14;X-15;X-16
|
| 499 |
+
498,0.34428847332795465,true,4,Y-4;X-14;X-15;X-16
|
| 500 |
+
499,0.3428070147832235,true,4,Y-4;X-14;X-15;X-16
|
| 501 |
+
500,0.37927844623724616,true,4,Y-4;X-14;X-15;X-16
|
splits/manifest.json
ADDED
|
@@ -0,0 +1,3061 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"full_train": [
|
| 3 |
+
"run_1",
|
| 4 |
+
"run_2",
|
| 5 |
+
"run_3",
|
| 6 |
+
"run_5",
|
| 7 |
+
"run_6",
|
| 8 |
+
"run_7",
|
| 9 |
+
"run_8",
|
| 10 |
+
"run_9",
|
| 11 |
+
"run_10",
|
| 12 |
+
"run_13",
|
| 13 |
+
"run_14",
|
| 14 |
+
"run_15",
|
| 15 |
+
"run_16",
|
| 16 |
+
"run_17",
|
| 17 |
+
"run_18",
|
| 18 |
+
"run_21",
|
| 19 |
+
"run_23",
|
| 20 |
+
"run_25",
|
| 21 |
+
"run_27",
|
| 22 |
+
"run_28",
|
| 23 |
+
"run_30",
|
| 24 |
+
"run_31",
|
| 25 |
+
"run_32",
|
| 26 |
+
"run_33",
|
| 27 |
+
"run_34",
|
| 28 |
+
"run_35",
|
| 29 |
+
"run_36",
|
| 30 |
+
"run_37",
|
| 31 |
+
"run_39",
|
| 32 |
+
"run_40",
|
| 33 |
+
"run_42",
|
| 34 |
+
"run_43",
|
| 35 |
+
"run_44",
|
| 36 |
+
"run_45",
|
| 37 |
+
"run_46",
|
| 38 |
+
"run_47",
|
| 39 |
+
"run_48",
|
| 40 |
+
"run_49",
|
| 41 |
+
"run_50",
|
| 42 |
+
"run_51",
|
| 43 |
+
"run_52",
|
| 44 |
+
"run_53",
|
| 45 |
+
"run_54",
|
| 46 |
+
"run_57",
|
| 47 |
+
"run_58",
|
| 48 |
+
"run_60",
|
| 49 |
+
"run_61",
|
| 50 |
+
"run_62",
|
| 51 |
+
"run_63",
|
| 52 |
+
"run_64",
|
| 53 |
+
"run_65",
|
| 54 |
+
"run_66",
|
| 55 |
+
"run_67",
|
| 56 |
+
"run_68",
|
| 57 |
+
"run_69",
|
| 58 |
+
"run_70",
|
| 59 |
+
"run_71",
|
| 60 |
+
"run_72",
|
| 61 |
+
"run_73",
|
| 62 |
+
"run_74",
|
| 63 |
+
"run_75",
|
| 64 |
+
"run_76",
|
| 65 |
+
"run_77",
|
| 66 |
+
"run_78",
|
| 67 |
+
"run_79",
|
| 68 |
+
"run_80",
|
| 69 |
+
"run_81",
|
| 70 |
+
"run_82",
|
| 71 |
+
"run_83",
|
| 72 |
+
"run_84",
|
| 73 |
+
"run_85",
|
| 74 |
+
"run_86",
|
| 75 |
+
"run_87",
|
| 76 |
+
"run_88",
|
| 77 |
+
"run_89",
|
| 78 |
+
"run_90",
|
| 79 |
+
"run_91",
|
| 80 |
+
"run_92",
|
| 81 |
+
"run_93",
|
| 82 |
+
"run_94",
|
| 83 |
+
"run_95",
|
| 84 |
+
"run_96",
|
| 85 |
+
"run_97",
|
| 86 |
+
"run_98",
|
| 87 |
+
"run_99",
|
| 88 |
+
"run_100",
|
| 89 |
+
"run_101",
|
| 90 |
+
"run_102",
|
| 91 |
+
"run_103",
|
| 92 |
+
"run_105",
|
| 93 |
+
"run_106",
|
| 94 |
+
"run_107",
|
| 95 |
+
"run_110",
|
| 96 |
+
"run_111",
|
| 97 |
+
"run_112",
|
| 98 |
+
"run_113",
|
| 99 |
+
"run_114",
|
| 100 |
+
"run_115",
|
| 101 |
+
"run_116",
|
| 102 |
+
"run_117",
|
| 103 |
+
"run_118",
|
| 104 |
+
"run_119",
|
| 105 |
+
"run_120",
|
| 106 |
+
"run_121",
|
| 107 |
+
"run_122",
|
| 108 |
+
"run_123",
|
| 109 |
+
"run_125",
|
| 110 |
+
"run_126",
|
| 111 |
+
"run_128",
|
| 112 |
+
"run_129",
|
| 113 |
+
"run_130",
|
| 114 |
+
"run_131",
|
| 115 |
+
"run_132",
|
| 116 |
+
"run_134",
|
| 117 |
+
"run_135",
|
| 118 |
+
"run_136",
|
| 119 |
+
"run_137",
|
| 120 |
+
"run_138",
|
| 121 |
+
"run_139",
|
| 122 |
+
"run_140",
|
| 123 |
+
"run_141",
|
| 124 |
+
"run_143",
|
| 125 |
+
"run_144",
|
| 126 |
+
"run_145",
|
| 127 |
+
"run_146",
|
| 128 |
+
"run_147",
|
| 129 |
+
"run_148",
|
| 130 |
+
"run_149",
|
| 131 |
+
"run_151",
|
| 132 |
+
"run_152",
|
| 133 |
+
"run_153",
|
| 134 |
+
"run_154",
|
| 135 |
+
"run_155",
|
| 136 |
+
"run_156",
|
| 137 |
+
"run_157",
|
| 138 |
+
"run_159",
|
| 139 |
+
"run_160",
|
| 140 |
+
"run_161",
|
| 141 |
+
"run_162",
|
| 142 |
+
"run_163",
|
| 143 |
+
"run_164",
|
| 144 |
+
"run_166",
|
| 145 |
+
"run_167",
|
| 146 |
+
"run_168",
|
| 147 |
+
"run_169",
|
| 148 |
+
"run_170",
|
| 149 |
+
"run_171",
|
| 150 |
+
"run_172",
|
| 151 |
+
"run_174",
|
| 152 |
+
"run_175",
|
| 153 |
+
"run_176",
|
| 154 |
+
"run_178",
|
| 155 |
+
"run_179",
|
| 156 |
+
"run_181",
|
| 157 |
+
"run_182",
|
| 158 |
+
"run_183",
|
| 159 |
+
"run_184",
|
| 160 |
+
"run_185",
|
| 161 |
+
"run_186",
|
| 162 |
+
"run_189",
|
| 163 |
+
"run_190",
|
| 164 |
+
"run_192",
|
| 165 |
+
"run_193",
|
| 166 |
+
"run_194",
|
| 167 |
+
"run_195",
|
| 168 |
+
"run_198",
|
| 169 |
+
"run_200",
|
| 170 |
+
"run_201",
|
| 171 |
+
"run_202",
|
| 172 |
+
"run_204",
|
| 173 |
+
"run_206",
|
| 174 |
+
"run_209",
|
| 175 |
+
"run_211",
|
| 176 |
+
"run_212",
|
| 177 |
+
"run_213",
|
| 178 |
+
"run_214",
|
| 179 |
+
"run_216",
|
| 180 |
+
"run_217",
|
| 181 |
+
"run_218",
|
| 182 |
+
"run_219",
|
| 183 |
+
"run_220",
|
| 184 |
+
"run_221",
|
| 185 |
+
"run_223",
|
| 186 |
+
"run_224",
|
| 187 |
+
"run_225",
|
| 188 |
+
"run_227",
|
| 189 |
+
"run_229",
|
| 190 |
+
"run_231",
|
| 191 |
+
"run_232",
|
| 192 |
+
"run_233",
|
| 193 |
+
"run_235",
|
| 194 |
+
"run_236",
|
| 195 |
+
"run_237",
|
| 196 |
+
"run_238",
|
| 197 |
+
"run_239",
|
| 198 |
+
"run_240",
|
| 199 |
+
"run_242",
|
| 200 |
+
"run_243",
|
| 201 |
+
"run_244",
|
| 202 |
+
"run_245",
|
| 203 |
+
"run_246",
|
| 204 |
+
"run_248",
|
| 205 |
+
"run_249",
|
| 206 |
+
"run_250",
|
| 207 |
+
"run_251",
|
| 208 |
+
"run_254",
|
| 209 |
+
"run_255",
|
| 210 |
+
"run_256",
|
| 211 |
+
"run_257",
|
| 212 |
+
"run_259",
|
| 213 |
+
"run_261",
|
| 214 |
+
"run_262",
|
| 215 |
+
"run_264",
|
| 216 |
+
"run_265",
|
| 217 |
+
"run_266",
|
| 218 |
+
"run_267",
|
| 219 |
+
"run_268",
|
| 220 |
+
"run_269",
|
| 221 |
+
"run_270",
|
| 222 |
+
"run_272",
|
| 223 |
+
"run_273",
|
| 224 |
+
"run_274",
|
| 225 |
+
"run_276",
|
| 226 |
+
"run_277",
|
| 227 |
+
"run_278",
|
| 228 |
+
"run_279",
|
| 229 |
+
"run_282",
|
| 230 |
+
"run_283",
|
| 231 |
+
"run_285",
|
| 232 |
+
"run_286",
|
| 233 |
+
"run_287",
|
| 234 |
+
"run_288",
|
| 235 |
+
"run_289",
|
| 236 |
+
"run_292",
|
| 237 |
+
"run_293",
|
| 238 |
+
"run_294",
|
| 239 |
+
"run_296",
|
| 240 |
+
"run_297",
|
| 241 |
+
"run_299",
|
| 242 |
+
"run_300",
|
| 243 |
+
"run_301",
|
| 244 |
+
"run_302",
|
| 245 |
+
"run_305",
|
| 246 |
+
"run_306",
|
| 247 |
+
"run_307",
|
| 248 |
+
"run_308",
|
| 249 |
+
"run_309",
|
| 250 |
+
"run_310",
|
| 251 |
+
"run_313",
|
| 252 |
+
"run_314",
|
| 253 |
+
"run_315",
|
| 254 |
+
"run_316",
|
| 255 |
+
"run_317",
|
| 256 |
+
"run_318",
|
| 257 |
+
"run_319",
|
| 258 |
+
"run_320",
|
| 259 |
+
"run_323",
|
| 260 |
+
"run_325",
|
| 261 |
+
"run_326",
|
| 262 |
+
"run_327",
|
| 263 |
+
"run_330",
|
| 264 |
+
"run_331",
|
| 265 |
+
"run_332",
|
| 266 |
+
"run_333",
|
| 267 |
+
"run_334",
|
| 268 |
+
"run_335",
|
| 269 |
+
"run_336",
|
| 270 |
+
"run_338",
|
| 271 |
+
"run_339",
|
| 272 |
+
"run_340",
|
| 273 |
+
"run_342",
|
| 274 |
+
"run_343",
|
| 275 |
+
"run_344",
|
| 276 |
+
"run_345",
|
| 277 |
+
"run_346",
|
| 278 |
+
"run_347",
|
| 279 |
+
"run_348",
|
| 280 |
+
"run_349",
|
| 281 |
+
"run_351",
|
| 282 |
+
"run_353",
|
| 283 |
+
"run_355",
|
| 284 |
+
"run_356",
|
| 285 |
+
"run_357",
|
| 286 |
+
"run_358",
|
| 287 |
+
"run_359",
|
| 288 |
+
"run_360",
|
| 289 |
+
"run_361",
|
| 290 |
+
"run_362",
|
| 291 |
+
"run_365",
|
| 292 |
+
"run_367",
|
| 293 |
+
"run_368",
|
| 294 |
+
"run_369",
|
| 295 |
+
"run_370",
|
| 296 |
+
"run_371",
|
| 297 |
+
"run_373",
|
| 298 |
+
"run_374",
|
| 299 |
+
"run_375",
|
| 300 |
+
"run_377",
|
| 301 |
+
"run_378",
|
| 302 |
+
"run_379",
|
| 303 |
+
"run_381",
|
| 304 |
+
"run_383",
|
| 305 |
+
"run_384",
|
| 306 |
+
"run_385",
|
| 307 |
+
"run_386",
|
| 308 |
+
"run_388",
|
| 309 |
+
"run_389",
|
| 310 |
+
"run_391",
|
| 311 |
+
"run_392",
|
| 312 |
+
"run_393",
|
| 313 |
+
"run_394",
|
| 314 |
+
"run_395",
|
| 315 |
+
"run_396",
|
| 316 |
+
"run_397",
|
| 317 |
+
"run_398",
|
| 318 |
+
"run_399",
|
| 319 |
+
"run_400",
|
| 320 |
+
"run_402",
|
| 321 |
+
"run_404",
|
| 322 |
+
"run_406",
|
| 323 |
+
"run_407",
|
| 324 |
+
"run_408",
|
| 325 |
+
"run_409",
|
| 326 |
+
"run_411",
|
| 327 |
+
"run_412",
|
| 328 |
+
"run_413",
|
| 329 |
+
"run_414",
|
| 330 |
+
"run_415",
|
| 331 |
+
"run_416",
|
| 332 |
+
"run_417",
|
| 333 |
+
"run_418",
|
| 334 |
+
"run_419",
|
| 335 |
+
"run_420",
|
| 336 |
+
"run_421",
|
| 337 |
+
"run_422",
|
| 338 |
+
"run_425",
|
| 339 |
+
"run_426",
|
| 340 |
+
"run_427",
|
| 341 |
+
"run_430",
|
| 342 |
+
"run_431",
|
| 343 |
+
"run_433",
|
| 344 |
+
"run_434",
|
| 345 |
+
"run_435",
|
| 346 |
+
"run_437",
|
| 347 |
+
"run_438",
|
| 348 |
+
"run_439",
|
| 349 |
+
"run_440",
|
| 350 |
+
"run_442",
|
| 351 |
+
"run_443",
|
| 352 |
+
"run_444",
|
| 353 |
+
"run_445",
|
| 354 |
+
"run_446",
|
| 355 |
+
"run_448",
|
| 356 |
+
"run_449",
|
| 357 |
+
"run_450",
|
| 358 |
+
"run_451",
|
| 359 |
+
"run_452",
|
| 360 |
+
"run_453",
|
| 361 |
+
"run_456",
|
| 362 |
+
"run_457",
|
| 363 |
+
"run_458",
|
| 364 |
+
"run_459",
|
| 365 |
+
"run_460",
|
| 366 |
+
"run_461",
|
| 367 |
+
"run_462",
|
| 368 |
+
"run_463",
|
| 369 |
+
"run_464",
|
| 370 |
+
"run_465",
|
| 371 |
+
"run_466",
|
| 372 |
+
"run_467",
|
| 373 |
+
"run_468",
|
| 374 |
+
"run_469",
|
| 375 |
+
"run_470",
|
| 376 |
+
"run_471",
|
| 377 |
+
"run_473",
|
| 378 |
+
"run_474",
|
| 379 |
+
"run_475",
|
| 380 |
+
"run_476",
|
| 381 |
+
"run_477",
|
| 382 |
+
"run_478",
|
| 383 |
+
"run_479",
|
| 384 |
+
"run_480",
|
| 385 |
+
"run_481",
|
| 386 |
+
"run_482",
|
| 387 |
+
"run_483",
|
| 388 |
+
"run_484",
|
| 389 |
+
"run_485",
|
| 390 |
+
"run_486",
|
| 391 |
+
"run_488",
|
| 392 |
+
"run_489",
|
| 393 |
+
"run_490",
|
| 394 |
+
"run_491",
|
| 395 |
+
"run_492",
|
| 396 |
+
"run_493",
|
| 397 |
+
"run_495",
|
| 398 |
+
"run_496",
|
| 399 |
+
"run_497",
|
| 400 |
+
"run_498",
|
| 401 |
+
"run_499",
|
| 402 |
+
"run_500"
|
| 403 |
+
],
|
| 404 |
+
"full_val": [
|
| 405 |
+
"run_24",
|
| 406 |
+
"run_26",
|
| 407 |
+
"run_29",
|
| 408 |
+
"run_38",
|
| 409 |
+
"run_41",
|
| 410 |
+
"run_55",
|
| 411 |
+
"run_59",
|
| 412 |
+
"run_104",
|
| 413 |
+
"run_108",
|
| 414 |
+
"run_124",
|
| 415 |
+
"run_133",
|
| 416 |
+
"run_142",
|
| 417 |
+
"run_158",
|
| 418 |
+
"run_173",
|
| 419 |
+
"run_180",
|
| 420 |
+
"run_188",
|
| 421 |
+
"run_196",
|
| 422 |
+
"run_197",
|
| 423 |
+
"run_199",
|
| 424 |
+
"run_205",
|
| 425 |
+
"run_207",
|
| 426 |
+
"run_210",
|
| 427 |
+
"run_222",
|
| 428 |
+
"run_226",
|
| 429 |
+
"run_230",
|
| 430 |
+
"run_258",
|
| 431 |
+
"run_263",
|
| 432 |
+
"run_280",
|
| 433 |
+
"run_281",
|
| 434 |
+
"run_284",
|
| 435 |
+
"run_290",
|
| 436 |
+
"run_291",
|
| 437 |
+
"run_295",
|
| 438 |
+
"run_304",
|
| 439 |
+
"run_312",
|
| 440 |
+
"run_337",
|
| 441 |
+
"run_350",
|
| 442 |
+
"run_354",
|
| 443 |
+
"run_363",
|
| 444 |
+
"run_372",
|
| 445 |
+
"run_387",
|
| 446 |
+
"run_403",
|
| 447 |
+
"run_405",
|
| 448 |
+
"run_424",
|
| 449 |
+
"run_428",
|
| 450 |
+
"run_429",
|
| 451 |
+
"run_432",
|
| 452 |
+
"run_455",
|
| 453 |
+
"run_472",
|
| 454 |
+
"run_494"
|
| 455 |
+
],
|
| 456 |
+
"full_test": [
|
| 457 |
+
"run_4",
|
| 458 |
+
"run_11",
|
| 459 |
+
"run_12",
|
| 460 |
+
"run_19",
|
| 461 |
+
"run_20",
|
| 462 |
+
"run_22",
|
| 463 |
+
"run_56",
|
| 464 |
+
"run_109",
|
| 465 |
+
"run_127",
|
| 466 |
+
"run_150",
|
| 467 |
+
"run_165",
|
| 468 |
+
"run_177",
|
| 469 |
+
"run_187",
|
| 470 |
+
"run_191",
|
| 471 |
+
"run_203",
|
| 472 |
+
"run_208",
|
| 473 |
+
"run_215",
|
| 474 |
+
"run_228",
|
| 475 |
+
"run_234",
|
| 476 |
+
"run_241",
|
| 477 |
+
"run_247",
|
| 478 |
+
"run_252",
|
| 479 |
+
"run_253",
|
| 480 |
+
"run_260",
|
| 481 |
+
"run_271",
|
| 482 |
+
"run_275",
|
| 483 |
+
"run_298",
|
| 484 |
+
"run_303",
|
| 485 |
+
"run_311",
|
| 486 |
+
"run_321",
|
| 487 |
+
"run_322",
|
| 488 |
+
"run_324",
|
| 489 |
+
"run_328",
|
| 490 |
+
"run_329",
|
| 491 |
+
"run_341",
|
| 492 |
+
"run_352",
|
| 493 |
+
"run_364",
|
| 494 |
+
"run_366",
|
| 495 |
+
"run_376",
|
| 496 |
+
"run_380",
|
| 497 |
+
"run_382",
|
| 498 |
+
"run_390",
|
| 499 |
+
"run_401",
|
| 500 |
+
"run_410",
|
| 501 |
+
"run_423",
|
| 502 |
+
"run_436",
|
| 503 |
+
"run_441",
|
| 504 |
+
"run_447",
|
| 505 |
+
"run_454",
|
| 506 |
+
"run_487"
|
| 507 |
+
],
|
| 508 |
+
"medium_train": [
|
| 509 |
+
"run_8",
|
| 510 |
+
"run_14",
|
| 511 |
+
"run_18",
|
| 512 |
+
"run_23",
|
| 513 |
+
"run_25",
|
| 514 |
+
"run_34",
|
| 515 |
+
"run_44",
|
| 516 |
+
"run_47",
|
| 517 |
+
"run_50",
|
| 518 |
+
"run_52",
|
| 519 |
+
"run_60",
|
| 520 |
+
"run_62",
|
| 521 |
+
"run_63",
|
| 522 |
+
"run_64",
|
| 523 |
+
"run_65",
|
| 524 |
+
"run_69",
|
| 525 |
+
"run_77",
|
| 526 |
+
"run_78",
|
| 527 |
+
"run_81",
|
| 528 |
+
"run_86",
|
| 529 |
+
"run_91",
|
| 530 |
+
"run_92",
|
| 531 |
+
"run_93",
|
| 532 |
+
"run_95",
|
| 533 |
+
"run_96",
|
| 534 |
+
"run_98",
|
| 535 |
+
"run_102",
|
| 536 |
+
"run_114",
|
| 537 |
+
"run_115",
|
| 538 |
+
"run_120",
|
| 539 |
+
"run_122",
|
| 540 |
+
"run_123",
|
| 541 |
+
"run_130",
|
| 542 |
+
"run_131",
|
| 543 |
+
"run_137",
|
| 544 |
+
"run_138",
|
| 545 |
+
"run_139",
|
| 546 |
+
"run_141",
|
| 547 |
+
"run_149",
|
| 548 |
+
"run_152",
|
| 549 |
+
"run_154",
|
| 550 |
+
"run_156",
|
| 551 |
+
"run_159",
|
| 552 |
+
"run_161",
|
| 553 |
+
"run_162",
|
| 554 |
+
"run_164",
|
| 555 |
+
"run_166",
|
| 556 |
+
"run_167",
|
| 557 |
+
"run_174",
|
| 558 |
+
"run_176",
|
| 559 |
+
"run_178",
|
| 560 |
+
"run_183",
|
| 561 |
+
"run_193",
|
| 562 |
+
"run_200",
|
| 563 |
+
"run_216",
|
| 564 |
+
"run_220",
|
| 565 |
+
"run_225",
|
| 566 |
+
"run_233",
|
| 567 |
+
"run_237",
|
| 568 |
+
"run_240",
|
| 569 |
+
"run_244",
|
| 570 |
+
"run_256",
|
| 571 |
+
"run_259",
|
| 572 |
+
"run_261",
|
| 573 |
+
"run_264",
|
| 574 |
+
"run_266",
|
| 575 |
+
"run_268",
|
| 576 |
+
"run_269",
|
| 577 |
+
"run_273",
|
| 578 |
+
"run_274",
|
| 579 |
+
"run_278",
|
| 580 |
+
"run_286",
|
| 581 |
+
"run_288",
|
| 582 |
+
"run_289",
|
| 583 |
+
"run_293",
|
| 584 |
+
"run_297",
|
| 585 |
+
"run_300",
|
| 586 |
+
"run_309",
|
| 587 |
+
"run_314",
|
| 588 |
+
"run_315",
|
| 589 |
+
"run_318",
|
| 590 |
+
"run_319",
|
| 591 |
+
"run_326",
|
| 592 |
+
"run_330",
|
| 593 |
+
"run_339",
|
| 594 |
+
"run_340",
|
| 595 |
+
"run_344",
|
| 596 |
+
"run_346",
|
| 597 |
+
"run_349",
|
| 598 |
+
"run_351",
|
| 599 |
+
"run_353",
|
| 600 |
+
"run_360",
|
| 601 |
+
"run_361",
|
| 602 |
+
"run_362",
|
| 603 |
+
"run_367",
|
| 604 |
+
"run_369",
|
| 605 |
+
"run_370",
|
| 606 |
+
"run_375",
|
| 607 |
+
"run_385",
|
| 608 |
+
"run_386",
|
| 609 |
+
"run_388",
|
| 610 |
+
"run_389",
|
| 611 |
+
"run_394",
|
| 612 |
+
"run_404",
|
| 613 |
+
"run_407",
|
| 614 |
+
"run_409",
|
| 615 |
+
"run_411",
|
| 616 |
+
"run_413",
|
| 617 |
+
"run_414",
|
| 618 |
+
"run_416",
|
| 619 |
+
"run_419",
|
| 620 |
+
"run_421",
|
| 621 |
+
"run_422",
|
| 622 |
+
"run_427",
|
| 623 |
+
"run_437",
|
| 624 |
+
"run_439",
|
| 625 |
+
"run_440",
|
| 626 |
+
"run_442",
|
| 627 |
+
"run_445",
|
| 628 |
+
"run_450",
|
| 629 |
+
"run_451",
|
| 630 |
+
"run_457",
|
| 631 |
+
"run_469",
|
| 632 |
+
"run_476",
|
| 633 |
+
"run_479",
|
| 634 |
+
"run_482",
|
| 635 |
+
"run_483",
|
| 636 |
+
"run_485",
|
| 637 |
+
"run_490",
|
| 638 |
+
"run_493",
|
| 639 |
+
"run_497",
|
| 640 |
+
"run_499",
|
| 641 |
+
"run_500"
|
| 642 |
+
],
|
| 643 |
+
"medium_val": [
|
| 644 |
+
"run_24",
|
| 645 |
+
"run_26",
|
| 646 |
+
"run_29",
|
| 647 |
+
"run_38",
|
| 648 |
+
"run_41",
|
| 649 |
+
"run_55",
|
| 650 |
+
"run_59",
|
| 651 |
+
"run_104",
|
| 652 |
+
"run_108",
|
| 653 |
+
"run_124",
|
| 654 |
+
"run_133",
|
| 655 |
+
"run_142",
|
| 656 |
+
"run_158",
|
| 657 |
+
"run_173",
|
| 658 |
+
"run_180",
|
| 659 |
+
"run_188",
|
| 660 |
+
"run_196",
|
| 661 |
+
"run_197",
|
| 662 |
+
"run_199",
|
| 663 |
+
"run_205",
|
| 664 |
+
"run_207",
|
| 665 |
+
"run_210",
|
| 666 |
+
"run_222",
|
| 667 |
+
"run_226",
|
| 668 |
+
"run_230",
|
| 669 |
+
"run_258",
|
| 670 |
+
"run_263",
|
| 671 |
+
"run_280",
|
| 672 |
+
"run_281",
|
| 673 |
+
"run_284",
|
| 674 |
+
"run_290",
|
| 675 |
+
"run_291",
|
| 676 |
+
"run_295",
|
| 677 |
+
"run_304",
|
| 678 |
+
"run_312",
|
| 679 |
+
"run_337",
|
| 680 |
+
"run_350",
|
| 681 |
+
"run_354",
|
| 682 |
+
"run_363",
|
| 683 |
+
"run_372",
|
| 684 |
+
"run_387",
|
| 685 |
+
"run_403",
|
| 686 |
+
"run_405",
|
| 687 |
+
"run_424",
|
| 688 |
+
"run_428",
|
| 689 |
+
"run_429",
|
| 690 |
+
"run_432",
|
| 691 |
+
"run_455",
|
| 692 |
+
"run_472",
|
| 693 |
+
"run_494"
|
| 694 |
+
],
|
| 695 |
+
"medium_test": [
|
| 696 |
+
"run_4",
|
| 697 |
+
"run_11",
|
| 698 |
+
"run_12",
|
| 699 |
+
"run_19",
|
| 700 |
+
"run_20",
|
| 701 |
+
"run_22",
|
| 702 |
+
"run_56",
|
| 703 |
+
"run_109",
|
| 704 |
+
"run_127",
|
| 705 |
+
"run_150",
|
| 706 |
+
"run_165",
|
| 707 |
+
"run_177",
|
| 708 |
+
"run_187",
|
| 709 |
+
"run_191",
|
| 710 |
+
"run_203",
|
| 711 |
+
"run_208",
|
| 712 |
+
"run_215",
|
| 713 |
+
"run_228",
|
| 714 |
+
"run_234",
|
| 715 |
+
"run_241",
|
| 716 |
+
"run_247",
|
| 717 |
+
"run_252",
|
| 718 |
+
"run_253",
|
| 719 |
+
"run_260",
|
| 720 |
+
"run_271",
|
| 721 |
+
"run_275",
|
| 722 |
+
"run_298",
|
| 723 |
+
"run_303",
|
| 724 |
+
"run_311",
|
| 725 |
+
"run_321",
|
| 726 |
+
"run_322",
|
| 727 |
+
"run_324",
|
| 728 |
+
"run_328",
|
| 729 |
+
"run_329",
|
| 730 |
+
"run_341",
|
| 731 |
+
"run_352",
|
| 732 |
+
"run_364",
|
| 733 |
+
"run_366",
|
| 734 |
+
"run_376",
|
| 735 |
+
"run_380",
|
| 736 |
+
"run_382",
|
| 737 |
+
"run_390",
|
| 738 |
+
"run_401",
|
| 739 |
+
"run_410",
|
| 740 |
+
"run_423",
|
| 741 |
+
"run_436",
|
| 742 |
+
"run_441",
|
| 743 |
+
"run_447",
|
| 744 |
+
"run_454",
|
| 745 |
+
"run_487"
|
| 746 |
+
],
|
| 747 |
+
"scarce_train": [
|
| 748 |
+
"run_8",
|
| 749 |
+
"run_14",
|
| 750 |
+
"run_18",
|
| 751 |
+
"run_25",
|
| 752 |
+
"run_34",
|
| 753 |
+
"run_50",
|
| 754 |
+
"run_52",
|
| 755 |
+
"run_69",
|
| 756 |
+
"run_78",
|
| 757 |
+
"run_81",
|
| 758 |
+
"run_86",
|
| 759 |
+
"run_91",
|
| 760 |
+
"run_92",
|
| 761 |
+
"run_93",
|
| 762 |
+
"run_95",
|
| 763 |
+
"run_96",
|
| 764 |
+
"run_98",
|
| 765 |
+
"run_114",
|
| 766 |
+
"run_120",
|
| 767 |
+
"run_122",
|
| 768 |
+
"run_137",
|
| 769 |
+
"run_139",
|
| 770 |
+
"run_152",
|
| 771 |
+
"run_164",
|
| 772 |
+
"run_166",
|
| 773 |
+
"run_167",
|
| 774 |
+
"run_176",
|
| 775 |
+
"run_183",
|
| 776 |
+
"run_200",
|
| 777 |
+
"run_220",
|
| 778 |
+
"run_225",
|
| 779 |
+
"run_237",
|
| 780 |
+
"run_244",
|
| 781 |
+
"run_259",
|
| 782 |
+
"run_261",
|
| 783 |
+
"run_268",
|
| 784 |
+
"run_274",
|
| 785 |
+
"run_286",
|
| 786 |
+
"run_297",
|
| 787 |
+
"run_314",
|
| 788 |
+
"run_315",
|
| 789 |
+
"run_318",
|
| 790 |
+
"run_339",
|
| 791 |
+
"run_340",
|
| 792 |
+
"run_349",
|
| 793 |
+
"run_351",
|
| 794 |
+
"run_353",
|
| 795 |
+
"run_362",
|
| 796 |
+
"run_367",
|
| 797 |
+
"run_369",
|
| 798 |
+
"run_375",
|
| 799 |
+
"run_386",
|
| 800 |
+
"run_389",
|
| 801 |
+
"run_394",
|
| 802 |
+
"run_409",
|
| 803 |
+
"run_416",
|
| 804 |
+
"run_419",
|
| 805 |
+
"run_439",
|
| 806 |
+
"run_440",
|
| 807 |
+
"run_442",
|
| 808 |
+
"run_450",
|
| 809 |
+
"run_479",
|
| 810 |
+
"run_482",
|
| 811 |
+
"run_490",
|
| 812 |
+
"run_493",
|
| 813 |
+
"run_497",
|
| 814 |
+
"run_500"
|
| 815 |
+
],
|
| 816 |
+
"scarce_val": [
|
| 817 |
+
"run_24",
|
| 818 |
+
"run_26",
|
| 819 |
+
"run_29",
|
| 820 |
+
"run_38",
|
| 821 |
+
"run_41",
|
| 822 |
+
"run_55",
|
| 823 |
+
"run_59",
|
| 824 |
+
"run_104",
|
| 825 |
+
"run_108",
|
| 826 |
+
"run_124",
|
| 827 |
+
"run_133",
|
| 828 |
+
"run_142",
|
| 829 |
+
"run_158",
|
| 830 |
+
"run_173",
|
| 831 |
+
"run_180",
|
| 832 |
+
"run_188",
|
| 833 |
+
"run_196",
|
| 834 |
+
"run_197",
|
| 835 |
+
"run_199",
|
| 836 |
+
"run_205",
|
| 837 |
+
"run_207",
|
| 838 |
+
"run_210",
|
| 839 |
+
"run_222",
|
| 840 |
+
"run_226",
|
| 841 |
+
"run_230",
|
| 842 |
+
"run_258",
|
| 843 |
+
"run_263",
|
| 844 |
+
"run_280",
|
| 845 |
+
"run_281",
|
| 846 |
+
"run_284",
|
| 847 |
+
"run_290",
|
| 848 |
+
"run_291",
|
| 849 |
+
"run_295",
|
| 850 |
+
"run_304",
|
| 851 |
+
"run_312",
|
| 852 |
+
"run_337",
|
| 853 |
+
"run_350",
|
| 854 |
+
"run_354",
|
| 855 |
+
"run_363",
|
| 856 |
+
"run_372",
|
| 857 |
+
"run_387",
|
| 858 |
+
"run_403",
|
| 859 |
+
"run_405",
|
| 860 |
+
"run_424",
|
| 861 |
+
"run_428",
|
| 862 |
+
"run_429",
|
| 863 |
+
"run_432",
|
| 864 |
+
"run_455",
|
| 865 |
+
"run_472",
|
| 866 |
+
"run_494"
|
| 867 |
+
],
|
| 868 |
+
"scarce_test": [
|
| 869 |
+
"run_4",
|
| 870 |
+
"run_11",
|
| 871 |
+
"run_12",
|
| 872 |
+
"run_19",
|
| 873 |
+
"run_20",
|
| 874 |
+
"run_22",
|
| 875 |
+
"run_56",
|
| 876 |
+
"run_109",
|
| 877 |
+
"run_127",
|
| 878 |
+
"run_150",
|
| 879 |
+
"run_165",
|
| 880 |
+
"run_177",
|
| 881 |
+
"run_187",
|
| 882 |
+
"run_191",
|
| 883 |
+
"run_203",
|
| 884 |
+
"run_208",
|
| 885 |
+
"run_215",
|
| 886 |
+
"run_228",
|
| 887 |
+
"run_234",
|
| 888 |
+
"run_241",
|
| 889 |
+
"run_247",
|
| 890 |
+
"run_252",
|
| 891 |
+
"run_253",
|
| 892 |
+
"run_260",
|
| 893 |
+
"run_271",
|
| 894 |
+
"run_275",
|
| 895 |
+
"run_298",
|
| 896 |
+
"run_303",
|
| 897 |
+
"run_311",
|
| 898 |
+
"run_321",
|
| 899 |
+
"run_322",
|
| 900 |
+
"run_324",
|
| 901 |
+
"run_328",
|
| 902 |
+
"run_329",
|
| 903 |
+
"run_341",
|
| 904 |
+
"run_352",
|
| 905 |
+
"run_364",
|
| 906 |
+
"run_366",
|
| 907 |
+
"run_376",
|
| 908 |
+
"run_380",
|
| 909 |
+
"run_382",
|
| 910 |
+
"run_390",
|
| 911 |
+
"run_401",
|
| 912 |
+
"run_410",
|
| 913 |
+
"run_423",
|
| 914 |
+
"run_436",
|
| 915 |
+
"run_441",
|
| 916 |
+
"run_447",
|
| 917 |
+
"run_454",
|
| 918 |
+
"run_487"
|
| 919 |
+
],
|
| 920 |
+
"super_scarce_train": [
|
| 921 |
+
"run_50",
|
| 922 |
+
"run_93",
|
| 923 |
+
"run_120",
|
| 924 |
+
"run_152",
|
| 925 |
+
"run_220",
|
| 926 |
+
"run_297",
|
| 927 |
+
"run_362",
|
| 928 |
+
"run_409",
|
| 929 |
+
"run_416",
|
| 930 |
+
"run_440",
|
| 931 |
+
"run_442"
|
| 932 |
+
],
|
| 933 |
+
"super_scarce_val": [
|
| 934 |
+
"run_24",
|
| 935 |
+
"run_26",
|
| 936 |
+
"run_29",
|
| 937 |
+
"run_38",
|
| 938 |
+
"run_41",
|
| 939 |
+
"run_55",
|
| 940 |
+
"run_59",
|
| 941 |
+
"run_104",
|
| 942 |
+
"run_108",
|
| 943 |
+
"run_124",
|
| 944 |
+
"run_133",
|
| 945 |
+
"run_142",
|
| 946 |
+
"run_158",
|
| 947 |
+
"run_173",
|
| 948 |
+
"run_180",
|
| 949 |
+
"run_188",
|
| 950 |
+
"run_196",
|
| 951 |
+
"run_197",
|
| 952 |
+
"run_199",
|
| 953 |
+
"run_205",
|
| 954 |
+
"run_207",
|
| 955 |
+
"run_210",
|
| 956 |
+
"run_222",
|
| 957 |
+
"run_226",
|
| 958 |
+
"run_230",
|
| 959 |
+
"run_258",
|
| 960 |
+
"run_263",
|
| 961 |
+
"run_280",
|
| 962 |
+
"run_281",
|
| 963 |
+
"run_284",
|
| 964 |
+
"run_290",
|
| 965 |
+
"run_291",
|
| 966 |
+
"run_295",
|
| 967 |
+
"run_304",
|
| 968 |
+
"run_312",
|
| 969 |
+
"run_337",
|
| 970 |
+
"run_350",
|
| 971 |
+
"run_354",
|
| 972 |
+
"run_363",
|
| 973 |
+
"run_372",
|
| 974 |
+
"run_387",
|
| 975 |
+
"run_403",
|
| 976 |
+
"run_405",
|
| 977 |
+
"run_424",
|
| 978 |
+
"run_428",
|
| 979 |
+
"run_429",
|
| 980 |
+
"run_432",
|
| 981 |
+
"run_455",
|
| 982 |
+
"run_472",
|
| 983 |
+
"run_494"
|
| 984 |
+
],
|
| 985 |
+
"super_scarce_test": [
|
| 986 |
+
"run_4",
|
| 987 |
+
"run_11",
|
| 988 |
+
"run_12",
|
| 989 |
+
"run_19",
|
| 990 |
+
"run_20",
|
| 991 |
+
"run_22",
|
| 992 |
+
"run_56",
|
| 993 |
+
"run_109",
|
| 994 |
+
"run_127",
|
| 995 |
+
"run_150",
|
| 996 |
+
"run_165",
|
| 997 |
+
"run_177",
|
| 998 |
+
"run_187",
|
| 999 |
+
"run_191",
|
| 1000 |
+
"run_203",
|
| 1001 |
+
"run_208",
|
| 1002 |
+
"run_215",
|
| 1003 |
+
"run_228",
|
| 1004 |
+
"run_234",
|
| 1005 |
+
"run_241",
|
| 1006 |
+
"run_247",
|
| 1007 |
+
"run_252",
|
| 1008 |
+
"run_253",
|
| 1009 |
+
"run_260",
|
| 1010 |
+
"run_271",
|
| 1011 |
+
"run_275",
|
| 1012 |
+
"run_298",
|
| 1013 |
+
"run_303",
|
| 1014 |
+
"run_311",
|
| 1015 |
+
"run_321",
|
| 1016 |
+
"run_322",
|
| 1017 |
+
"run_324",
|
| 1018 |
+
"run_328",
|
| 1019 |
+
"run_329",
|
| 1020 |
+
"run_341",
|
| 1021 |
+
"run_352",
|
| 1022 |
+
"run_364",
|
| 1023 |
+
"run_366",
|
| 1024 |
+
"run_376",
|
| 1025 |
+
"run_380",
|
| 1026 |
+
"run_382",
|
| 1027 |
+
"run_390",
|
| 1028 |
+
"run_401",
|
| 1029 |
+
"run_410",
|
| 1030 |
+
"run_423",
|
| 1031 |
+
"run_436",
|
| 1032 |
+
"run_441",
|
| 1033 |
+
"run_447",
|
| 1034 |
+
"run_454",
|
| 1035 |
+
"run_487"
|
| 1036 |
+
],
|
| 1037 |
+
"high_drag_train": [
|
| 1038 |
+
"run_1",
|
| 1039 |
+
"run_2",
|
| 1040 |
+
"run_3",
|
| 1041 |
+
"run_5",
|
| 1042 |
+
"run_7",
|
| 1043 |
+
"run_10",
|
| 1044 |
+
"run_11",
|
| 1045 |
+
"run_15",
|
| 1046 |
+
"run_16",
|
| 1047 |
+
"run_17",
|
| 1048 |
+
"run_19",
|
| 1049 |
+
"run_20",
|
| 1050 |
+
"run_21",
|
| 1051 |
+
"run_22",
|
| 1052 |
+
"run_24",
|
| 1053 |
+
"run_25",
|
| 1054 |
+
"run_27",
|
| 1055 |
+
"run_28",
|
| 1056 |
+
"run_29",
|
| 1057 |
+
"run_31",
|
| 1058 |
+
"run_32",
|
| 1059 |
+
"run_33",
|
| 1060 |
+
"run_35",
|
| 1061 |
+
"run_37",
|
| 1062 |
+
"run_39",
|
| 1063 |
+
"run_40",
|
| 1064 |
+
"run_42",
|
| 1065 |
+
"run_43",
|
| 1066 |
+
"run_44",
|
| 1067 |
+
"run_45",
|
| 1068 |
+
"run_46",
|
| 1069 |
+
"run_48",
|
| 1070 |
+
"run_50",
|
| 1071 |
+
"run_51",
|
| 1072 |
+
"run_53",
|
| 1073 |
+
"run_55",
|
| 1074 |
+
"run_56",
|
| 1075 |
+
"run_57",
|
| 1076 |
+
"run_59",
|
| 1077 |
+
"run_61",
|
| 1078 |
+
"run_62",
|
| 1079 |
+
"run_64",
|
| 1080 |
+
"run_65",
|
| 1081 |
+
"run_67",
|
| 1082 |
+
"run_68",
|
| 1083 |
+
"run_69",
|
| 1084 |
+
"run_70",
|
| 1085 |
+
"run_71",
|
| 1086 |
+
"run_72",
|
| 1087 |
+
"run_73",
|
| 1088 |
+
"run_75",
|
| 1089 |
+
"run_77",
|
| 1090 |
+
"run_78",
|
| 1091 |
+
"run_81",
|
| 1092 |
+
"run_84",
|
| 1093 |
+
"run_85",
|
| 1094 |
+
"run_86",
|
| 1095 |
+
"run_87",
|
| 1096 |
+
"run_89",
|
| 1097 |
+
"run_90",
|
| 1098 |
+
"run_91",
|
| 1099 |
+
"run_92",
|
| 1100 |
+
"run_93",
|
| 1101 |
+
"run_95",
|
| 1102 |
+
"run_97",
|
| 1103 |
+
"run_99",
|
| 1104 |
+
"run_100",
|
| 1105 |
+
"run_101",
|
| 1106 |
+
"run_102",
|
| 1107 |
+
"run_105",
|
| 1108 |
+
"run_106",
|
| 1109 |
+
"run_108",
|
| 1110 |
+
"run_109",
|
| 1111 |
+
"run_110",
|
| 1112 |
+
"run_111",
|
| 1113 |
+
"run_113",
|
| 1114 |
+
"run_114",
|
| 1115 |
+
"run_115",
|
| 1116 |
+
"run_116",
|
| 1117 |
+
"run_117",
|
| 1118 |
+
"run_118",
|
| 1119 |
+
"run_119",
|
| 1120 |
+
"run_121",
|
| 1121 |
+
"run_123",
|
| 1122 |
+
"run_124",
|
| 1123 |
+
"run_125",
|
| 1124 |
+
"run_126",
|
| 1125 |
+
"run_127",
|
| 1126 |
+
"run_128",
|
| 1127 |
+
"run_129",
|
| 1128 |
+
"run_131",
|
| 1129 |
+
"run_132",
|
| 1130 |
+
"run_134",
|
| 1131 |
+
"run_136",
|
| 1132 |
+
"run_139",
|
| 1133 |
+
"run_140",
|
| 1134 |
+
"run_142",
|
| 1135 |
+
"run_143",
|
| 1136 |
+
"run_144",
|
| 1137 |
+
"run_145",
|
| 1138 |
+
"run_146",
|
| 1139 |
+
"run_147",
|
| 1140 |
+
"run_149",
|
| 1141 |
+
"run_150",
|
| 1142 |
+
"run_151",
|
| 1143 |
+
"run_154",
|
| 1144 |
+
"run_155",
|
| 1145 |
+
"run_156",
|
| 1146 |
+
"run_157",
|
| 1147 |
+
"run_158",
|
| 1148 |
+
"run_159",
|
| 1149 |
+
"run_160",
|
| 1150 |
+
"run_162",
|
| 1151 |
+
"run_163",
|
| 1152 |
+
"run_164",
|
| 1153 |
+
"run_165",
|
| 1154 |
+
"run_166",
|
| 1155 |
+
"run_167",
|
| 1156 |
+
"run_169",
|
| 1157 |
+
"run_170",
|
| 1158 |
+
"run_172",
|
| 1159 |
+
"run_174",
|
| 1160 |
+
"run_175",
|
| 1161 |
+
"run_176",
|
| 1162 |
+
"run_177",
|
| 1163 |
+
"run_179",
|
| 1164 |
+
"run_181",
|
| 1165 |
+
"run_182",
|
| 1166 |
+
"run_183",
|
| 1167 |
+
"run_184",
|
| 1168 |
+
"run_186",
|
| 1169 |
+
"run_187",
|
| 1170 |
+
"run_188",
|
| 1171 |
+
"run_189",
|
| 1172 |
+
"run_192",
|
| 1173 |
+
"run_193",
|
| 1174 |
+
"run_194",
|
| 1175 |
+
"run_195",
|
| 1176 |
+
"run_196",
|
| 1177 |
+
"run_198",
|
| 1178 |
+
"run_199",
|
| 1179 |
+
"run_200",
|
| 1180 |
+
"run_202",
|
| 1181 |
+
"run_204",
|
| 1182 |
+
"run_206",
|
| 1183 |
+
"run_207",
|
| 1184 |
+
"run_208",
|
| 1185 |
+
"run_209",
|
| 1186 |
+
"run_210",
|
| 1187 |
+
"run_211",
|
| 1188 |
+
"run_212",
|
| 1189 |
+
"run_213",
|
| 1190 |
+
"run_214",
|
| 1191 |
+
"run_218",
|
| 1192 |
+
"run_219",
|
| 1193 |
+
"run_221",
|
| 1194 |
+
"run_224",
|
| 1195 |
+
"run_225",
|
| 1196 |
+
"run_226",
|
| 1197 |
+
"run_227",
|
| 1198 |
+
"run_229",
|
| 1199 |
+
"run_230",
|
| 1200 |
+
"run_231",
|
| 1201 |
+
"run_232",
|
| 1202 |
+
"run_233",
|
| 1203 |
+
"run_234",
|
| 1204 |
+
"run_235",
|
| 1205 |
+
"run_237",
|
| 1206 |
+
"run_238",
|
| 1207 |
+
"run_239",
|
| 1208 |
+
"run_240",
|
| 1209 |
+
"run_241",
|
| 1210 |
+
"run_245",
|
| 1211 |
+
"run_247",
|
| 1212 |
+
"run_249",
|
| 1213 |
+
"run_251",
|
| 1214 |
+
"run_252",
|
| 1215 |
+
"run_255",
|
| 1216 |
+
"run_256",
|
| 1217 |
+
"run_257",
|
| 1218 |
+
"run_258",
|
| 1219 |
+
"run_259",
|
| 1220 |
+
"run_261",
|
| 1221 |
+
"run_263",
|
| 1222 |
+
"run_265",
|
| 1223 |
+
"run_267",
|
| 1224 |
+
"run_268",
|
| 1225 |
+
"run_269",
|
| 1226 |
+
"run_270",
|
| 1227 |
+
"run_271",
|
| 1228 |
+
"run_272",
|
| 1229 |
+
"run_273",
|
| 1230 |
+
"run_276",
|
| 1231 |
+
"run_278",
|
| 1232 |
+
"run_279",
|
| 1233 |
+
"run_281",
|
| 1234 |
+
"run_282",
|
| 1235 |
+
"run_285",
|
| 1236 |
+
"run_286",
|
| 1237 |
+
"run_288",
|
| 1238 |
+
"run_289",
|
| 1239 |
+
"run_291",
|
| 1240 |
+
"run_294",
|
| 1241 |
+
"run_296",
|
| 1242 |
+
"run_298",
|
| 1243 |
+
"run_299",
|
| 1244 |
+
"run_300",
|
| 1245 |
+
"run_301",
|
| 1246 |
+
"run_302",
|
| 1247 |
+
"run_303",
|
| 1248 |
+
"run_304",
|
| 1249 |
+
"run_307",
|
| 1250 |
+
"run_311",
|
| 1251 |
+
"run_312",
|
| 1252 |
+
"run_313",
|
| 1253 |
+
"run_316",
|
| 1254 |
+
"run_317",
|
| 1255 |
+
"run_321",
|
| 1256 |
+
"run_322",
|
| 1257 |
+
"run_324",
|
| 1258 |
+
"run_325",
|
| 1259 |
+
"run_326",
|
| 1260 |
+
"run_327",
|
| 1261 |
+
"run_329",
|
| 1262 |
+
"run_330",
|
| 1263 |
+
"run_332",
|
| 1264 |
+
"run_334",
|
| 1265 |
+
"run_335",
|
| 1266 |
+
"run_338",
|
| 1267 |
+
"run_343",
|
| 1268 |
+
"run_344",
|
| 1269 |
+
"run_345",
|
| 1270 |
+
"run_346",
|
| 1271 |
+
"run_347",
|
| 1272 |
+
"run_348",
|
| 1273 |
+
"run_350",
|
| 1274 |
+
"run_352",
|
| 1275 |
+
"run_353",
|
| 1276 |
+
"run_354",
|
| 1277 |
+
"run_355",
|
| 1278 |
+
"run_356",
|
| 1279 |
+
"run_358",
|
| 1280 |
+
"run_359",
|
| 1281 |
+
"run_360",
|
| 1282 |
+
"run_361",
|
| 1283 |
+
"run_363",
|
| 1284 |
+
"run_365",
|
| 1285 |
+
"run_366",
|
| 1286 |
+
"run_367",
|
| 1287 |
+
"run_368",
|
| 1288 |
+
"run_369",
|
| 1289 |
+
"run_370",
|
| 1290 |
+
"run_371",
|
| 1291 |
+
"run_373",
|
| 1292 |
+
"run_374",
|
| 1293 |
+
"run_375",
|
| 1294 |
+
"run_377",
|
| 1295 |
+
"run_378",
|
| 1296 |
+
"run_379",
|
| 1297 |
+
"run_380",
|
| 1298 |
+
"run_381",
|
| 1299 |
+
"run_382",
|
| 1300 |
+
"run_384",
|
| 1301 |
+
"run_385",
|
| 1302 |
+
"run_386",
|
| 1303 |
+
"run_387",
|
| 1304 |
+
"run_389",
|
| 1305 |
+
"run_390",
|
| 1306 |
+
"run_391",
|
| 1307 |
+
"run_393",
|
| 1308 |
+
"run_395",
|
| 1309 |
+
"run_396",
|
| 1310 |
+
"run_397",
|
| 1311 |
+
"run_398",
|
| 1312 |
+
"run_399",
|
| 1313 |
+
"run_400",
|
| 1314 |
+
"run_401",
|
| 1315 |
+
"run_402",
|
| 1316 |
+
"run_403",
|
| 1317 |
+
"run_405",
|
| 1318 |
+
"run_406",
|
| 1319 |
+
"run_407",
|
| 1320 |
+
"run_408",
|
| 1321 |
+
"run_409",
|
| 1322 |
+
"run_410",
|
| 1323 |
+
"run_412",
|
| 1324 |
+
"run_414",
|
| 1325 |
+
"run_416",
|
| 1326 |
+
"run_417",
|
| 1327 |
+
"run_418",
|
| 1328 |
+
"run_419",
|
| 1329 |
+
"run_422",
|
| 1330 |
+
"run_424",
|
| 1331 |
+
"run_425",
|
| 1332 |
+
"run_427",
|
| 1333 |
+
"run_428",
|
| 1334 |
+
"run_429",
|
| 1335 |
+
"run_430",
|
| 1336 |
+
"run_431",
|
| 1337 |
+
"run_432",
|
| 1338 |
+
"run_433",
|
| 1339 |
+
"run_434",
|
| 1340 |
+
"run_435",
|
| 1341 |
+
"run_436",
|
| 1342 |
+
"run_437",
|
| 1343 |
+
"run_438",
|
| 1344 |
+
"run_439",
|
| 1345 |
+
"run_440",
|
| 1346 |
+
"run_441",
|
| 1347 |
+
"run_442",
|
| 1348 |
+
"run_445",
|
| 1349 |
+
"run_446",
|
| 1350 |
+
"run_447",
|
| 1351 |
+
"run_448",
|
| 1352 |
+
"run_449",
|
| 1353 |
+
"run_450",
|
| 1354 |
+
"run_452",
|
| 1355 |
+
"run_457",
|
| 1356 |
+
"run_458",
|
| 1357 |
+
"run_460",
|
| 1358 |
+
"run_462",
|
| 1359 |
+
"run_463",
|
| 1360 |
+
"run_464",
|
| 1361 |
+
"run_465",
|
| 1362 |
+
"run_466",
|
| 1363 |
+
"run_469",
|
| 1364 |
+
"run_470",
|
| 1365 |
+
"run_472",
|
| 1366 |
+
"run_473",
|
| 1367 |
+
"run_474",
|
| 1368 |
+
"run_475",
|
| 1369 |
+
"run_476",
|
| 1370 |
+
"run_477",
|
| 1371 |
+
"run_478",
|
| 1372 |
+
"run_479",
|
| 1373 |
+
"run_481",
|
| 1374 |
+
"run_483",
|
| 1375 |
+
"run_485",
|
| 1376 |
+
"run_486",
|
| 1377 |
+
"run_487",
|
| 1378 |
+
"run_488",
|
| 1379 |
+
"run_489",
|
| 1380 |
+
"run_492",
|
| 1381 |
+
"run_493",
|
| 1382 |
+
"run_494",
|
| 1383 |
+
"run_495",
|
| 1384 |
+
"run_496",
|
| 1385 |
+
"run_497",
|
| 1386 |
+
"run_498",
|
| 1387 |
+
"run_500"
|
| 1388 |
+
],
|
| 1389 |
+
"high_drag_val": [
|
| 1390 |
+
"run_30",
|
| 1391 |
+
"run_36",
|
| 1392 |
+
"run_47",
|
| 1393 |
+
"run_49",
|
| 1394 |
+
"run_58",
|
| 1395 |
+
"run_63",
|
| 1396 |
+
"run_76",
|
| 1397 |
+
"run_83",
|
| 1398 |
+
"run_88",
|
| 1399 |
+
"run_103",
|
| 1400 |
+
"run_112",
|
| 1401 |
+
"run_122",
|
| 1402 |
+
"run_130",
|
| 1403 |
+
"run_133",
|
| 1404 |
+
"run_137",
|
| 1405 |
+
"run_138",
|
| 1406 |
+
"run_153",
|
| 1407 |
+
"run_161",
|
| 1408 |
+
"run_191",
|
| 1409 |
+
"run_201",
|
| 1410 |
+
"run_203",
|
| 1411 |
+
"run_222",
|
| 1412 |
+
"run_236",
|
| 1413 |
+
"run_246",
|
| 1414 |
+
"run_248",
|
| 1415 |
+
"run_253",
|
| 1416 |
+
"run_254",
|
| 1417 |
+
"run_260",
|
| 1418 |
+
"run_262",
|
| 1419 |
+
"run_275",
|
| 1420 |
+
"run_277",
|
| 1421 |
+
"run_292",
|
| 1422 |
+
"run_308",
|
| 1423 |
+
"run_320",
|
| 1424 |
+
"run_337",
|
| 1425 |
+
"run_340",
|
| 1426 |
+
"run_341",
|
| 1427 |
+
"run_349",
|
| 1428 |
+
"run_351",
|
| 1429 |
+
"run_357",
|
| 1430 |
+
"run_364",
|
| 1431 |
+
"run_372",
|
| 1432 |
+
"run_388",
|
| 1433 |
+
"run_423",
|
| 1434 |
+
"run_426",
|
| 1435 |
+
"run_461",
|
| 1436 |
+
"run_484",
|
| 1437 |
+
"run_490",
|
| 1438 |
+
"run_491",
|
| 1439 |
+
"run_499"
|
| 1440 |
+
],
|
| 1441 |
+
"high_drag_test": [
|
| 1442 |
+
"run_4",
|
| 1443 |
+
"run_6",
|
| 1444 |
+
"run_8",
|
| 1445 |
+
"run_9",
|
| 1446 |
+
"run_12",
|
| 1447 |
+
"run_13",
|
| 1448 |
+
"run_14",
|
| 1449 |
+
"run_18",
|
| 1450 |
+
"run_23",
|
| 1451 |
+
"run_26",
|
| 1452 |
+
"run_34",
|
| 1453 |
+
"run_38",
|
| 1454 |
+
"run_41",
|
| 1455 |
+
"run_52",
|
| 1456 |
+
"run_54",
|
| 1457 |
+
"run_60",
|
| 1458 |
+
"run_66",
|
| 1459 |
+
"run_74",
|
| 1460 |
+
"run_79",
|
| 1461 |
+
"run_80",
|
| 1462 |
+
"run_82",
|
| 1463 |
+
"run_94",
|
| 1464 |
+
"run_96",
|
| 1465 |
+
"run_98",
|
| 1466 |
+
"run_104",
|
| 1467 |
+
"run_107",
|
| 1468 |
+
"run_120",
|
| 1469 |
+
"run_135",
|
| 1470 |
+
"run_141",
|
| 1471 |
+
"run_148",
|
| 1472 |
+
"run_152",
|
| 1473 |
+
"run_168",
|
| 1474 |
+
"run_171",
|
| 1475 |
+
"run_173",
|
| 1476 |
+
"run_178",
|
| 1477 |
+
"run_180",
|
| 1478 |
+
"run_185",
|
| 1479 |
+
"run_190",
|
| 1480 |
+
"run_197",
|
| 1481 |
+
"run_205",
|
| 1482 |
+
"run_215",
|
| 1483 |
+
"run_216",
|
| 1484 |
+
"run_217",
|
| 1485 |
+
"run_220",
|
| 1486 |
+
"run_223",
|
| 1487 |
+
"run_228",
|
| 1488 |
+
"run_242",
|
| 1489 |
+
"run_243",
|
| 1490 |
+
"run_244",
|
| 1491 |
+
"run_250",
|
| 1492 |
+
"run_264",
|
| 1493 |
+
"run_266",
|
| 1494 |
+
"run_274",
|
| 1495 |
+
"run_280",
|
| 1496 |
+
"run_283",
|
| 1497 |
+
"run_284",
|
| 1498 |
+
"run_287",
|
| 1499 |
+
"run_290",
|
| 1500 |
+
"run_293",
|
| 1501 |
+
"run_295",
|
| 1502 |
+
"run_297",
|
| 1503 |
+
"run_305",
|
| 1504 |
+
"run_306",
|
| 1505 |
+
"run_309",
|
| 1506 |
+
"run_310",
|
| 1507 |
+
"run_314",
|
| 1508 |
+
"run_315",
|
| 1509 |
+
"run_318",
|
| 1510 |
+
"run_319",
|
| 1511 |
+
"run_323",
|
| 1512 |
+
"run_328",
|
| 1513 |
+
"run_331",
|
| 1514 |
+
"run_333",
|
| 1515 |
+
"run_336",
|
| 1516 |
+
"run_339",
|
| 1517 |
+
"run_342",
|
| 1518 |
+
"run_362",
|
| 1519 |
+
"run_376",
|
| 1520 |
+
"run_383",
|
| 1521 |
+
"run_392",
|
| 1522 |
+
"run_394",
|
| 1523 |
+
"run_404",
|
| 1524 |
+
"run_411",
|
| 1525 |
+
"run_413",
|
| 1526 |
+
"run_415",
|
| 1527 |
+
"run_420",
|
| 1528 |
+
"run_421",
|
| 1529 |
+
"run_443",
|
| 1530 |
+
"run_444",
|
| 1531 |
+
"run_451",
|
| 1532 |
+
"run_453",
|
| 1533 |
+
"run_454",
|
| 1534 |
+
"run_455",
|
| 1535 |
+
"run_456",
|
| 1536 |
+
"run_459",
|
| 1537 |
+
"run_467",
|
| 1538 |
+
"run_468",
|
| 1539 |
+
"run_471",
|
| 1540 |
+
"run_480",
|
| 1541 |
+
"run_482"
|
| 1542 |
+
],
|
| 1543 |
+
"low_drag_train": [
|
| 1544 |
+
"run_2",
|
| 1545 |
+
"run_5",
|
| 1546 |
+
"run_6",
|
| 1547 |
+
"run_9",
|
| 1548 |
+
"run_11",
|
| 1549 |
+
"run_12",
|
| 1550 |
+
"run_13",
|
| 1551 |
+
"run_14",
|
| 1552 |
+
"run_16",
|
| 1553 |
+
"run_17",
|
| 1554 |
+
"run_18",
|
| 1555 |
+
"run_19",
|
| 1556 |
+
"run_21",
|
| 1557 |
+
"run_22",
|
| 1558 |
+
"run_23",
|
| 1559 |
+
"run_24",
|
| 1560 |
+
"run_25",
|
| 1561 |
+
"run_26",
|
| 1562 |
+
"run_28",
|
| 1563 |
+
"run_29",
|
| 1564 |
+
"run_30",
|
| 1565 |
+
"run_31",
|
| 1566 |
+
"run_34",
|
| 1567 |
+
"run_35",
|
| 1568 |
+
"run_38",
|
| 1569 |
+
"run_40",
|
| 1570 |
+
"run_41",
|
| 1571 |
+
"run_42",
|
| 1572 |
+
"run_47",
|
| 1573 |
+
"run_49",
|
| 1574 |
+
"run_50",
|
| 1575 |
+
"run_51",
|
| 1576 |
+
"run_52",
|
| 1577 |
+
"run_53",
|
| 1578 |
+
"run_54",
|
| 1579 |
+
"run_57",
|
| 1580 |
+
"run_58",
|
| 1581 |
+
"run_59",
|
| 1582 |
+
"run_60",
|
| 1583 |
+
"run_64",
|
| 1584 |
+
"run_65",
|
| 1585 |
+
"run_66",
|
| 1586 |
+
"run_67",
|
| 1587 |
+
"run_70",
|
| 1588 |
+
"run_71",
|
| 1589 |
+
"run_72",
|
| 1590 |
+
"run_74",
|
| 1591 |
+
"run_75",
|
| 1592 |
+
"run_76",
|
| 1593 |
+
"run_77",
|
| 1594 |
+
"run_79",
|
| 1595 |
+
"run_80",
|
| 1596 |
+
"run_81",
|
| 1597 |
+
"run_82",
|
| 1598 |
+
"run_84",
|
| 1599 |
+
"run_86",
|
| 1600 |
+
"run_87",
|
| 1601 |
+
"run_88",
|
| 1602 |
+
"run_89",
|
| 1603 |
+
"run_90",
|
| 1604 |
+
"run_91",
|
| 1605 |
+
"run_92",
|
| 1606 |
+
"run_94",
|
| 1607 |
+
"run_95",
|
| 1608 |
+
"run_96",
|
| 1609 |
+
"run_97",
|
| 1610 |
+
"run_98",
|
| 1611 |
+
"run_100",
|
| 1612 |
+
"run_102",
|
| 1613 |
+
"run_104",
|
| 1614 |
+
"run_105",
|
| 1615 |
+
"run_107",
|
| 1616 |
+
"run_108",
|
| 1617 |
+
"run_109",
|
| 1618 |
+
"run_111",
|
| 1619 |
+
"run_113",
|
| 1620 |
+
"run_115",
|
| 1621 |
+
"run_118",
|
| 1622 |
+
"run_119",
|
| 1623 |
+
"run_120",
|
| 1624 |
+
"run_125",
|
| 1625 |
+
"run_127",
|
| 1626 |
+
"run_128",
|
| 1627 |
+
"run_130",
|
| 1628 |
+
"run_131",
|
| 1629 |
+
"run_132",
|
| 1630 |
+
"run_133",
|
| 1631 |
+
"run_134",
|
| 1632 |
+
"run_136",
|
| 1633 |
+
"run_137",
|
| 1634 |
+
"run_138",
|
| 1635 |
+
"run_140",
|
| 1636 |
+
"run_141",
|
| 1637 |
+
"run_142",
|
| 1638 |
+
"run_143",
|
| 1639 |
+
"run_145",
|
| 1640 |
+
"run_146",
|
| 1641 |
+
"run_147",
|
| 1642 |
+
"run_148",
|
| 1643 |
+
"run_149",
|
| 1644 |
+
"run_152",
|
| 1645 |
+
"run_153",
|
| 1646 |
+
"run_155",
|
| 1647 |
+
"run_156",
|
| 1648 |
+
"run_160",
|
| 1649 |
+
"run_161",
|
| 1650 |
+
"run_162",
|
| 1651 |
+
"run_163",
|
| 1652 |
+
"run_164",
|
| 1653 |
+
"run_166",
|
| 1654 |
+
"run_170",
|
| 1655 |
+
"run_171",
|
| 1656 |
+
"run_172",
|
| 1657 |
+
"run_173",
|
| 1658 |
+
"run_174",
|
| 1659 |
+
"run_177",
|
| 1660 |
+
"run_178",
|
| 1661 |
+
"run_179",
|
| 1662 |
+
"run_180",
|
| 1663 |
+
"run_181",
|
| 1664 |
+
"run_182",
|
| 1665 |
+
"run_183",
|
| 1666 |
+
"run_184",
|
| 1667 |
+
"run_185",
|
| 1668 |
+
"run_186",
|
| 1669 |
+
"run_187",
|
| 1670 |
+
"run_188",
|
| 1671 |
+
"run_190",
|
| 1672 |
+
"run_191",
|
| 1673 |
+
"run_192",
|
| 1674 |
+
"run_194",
|
| 1675 |
+
"run_195",
|
| 1676 |
+
"run_196",
|
| 1677 |
+
"run_200",
|
| 1678 |
+
"run_203",
|
| 1679 |
+
"run_204",
|
| 1680 |
+
"run_205",
|
| 1681 |
+
"run_206",
|
| 1682 |
+
"run_208",
|
| 1683 |
+
"run_211",
|
| 1684 |
+
"run_213",
|
| 1685 |
+
"run_214",
|
| 1686 |
+
"run_215",
|
| 1687 |
+
"run_216",
|
| 1688 |
+
"run_217",
|
| 1689 |
+
"run_219",
|
| 1690 |
+
"run_220",
|
| 1691 |
+
"run_221",
|
| 1692 |
+
"run_223",
|
| 1693 |
+
"run_224",
|
| 1694 |
+
"run_225",
|
| 1695 |
+
"run_226",
|
| 1696 |
+
"run_227",
|
| 1697 |
+
"run_228",
|
| 1698 |
+
"run_229",
|
| 1699 |
+
"run_231",
|
| 1700 |
+
"run_232",
|
| 1701 |
+
"run_235",
|
| 1702 |
+
"run_236",
|
| 1703 |
+
"run_237",
|
| 1704 |
+
"run_239",
|
| 1705 |
+
"run_240",
|
| 1706 |
+
"run_242",
|
| 1707 |
+
"run_244",
|
| 1708 |
+
"run_245",
|
| 1709 |
+
"run_246",
|
| 1710 |
+
"run_248",
|
| 1711 |
+
"run_249",
|
| 1712 |
+
"run_250",
|
| 1713 |
+
"run_251",
|
| 1714 |
+
"run_252",
|
| 1715 |
+
"run_256",
|
| 1716 |
+
"run_257",
|
| 1717 |
+
"run_258",
|
| 1718 |
+
"run_260",
|
| 1719 |
+
"run_261",
|
| 1720 |
+
"run_263",
|
| 1721 |
+
"run_264",
|
| 1722 |
+
"run_265",
|
| 1723 |
+
"run_266",
|
| 1724 |
+
"run_267",
|
| 1725 |
+
"run_268",
|
| 1726 |
+
"run_270",
|
| 1727 |
+
"run_271",
|
| 1728 |
+
"run_272",
|
| 1729 |
+
"run_273",
|
| 1730 |
+
"run_274",
|
| 1731 |
+
"run_275",
|
| 1732 |
+
"run_277",
|
| 1733 |
+
"run_280",
|
| 1734 |
+
"run_281",
|
| 1735 |
+
"run_283",
|
| 1736 |
+
"run_284",
|
| 1737 |
+
"run_285",
|
| 1738 |
+
"run_288",
|
| 1739 |
+
"run_289",
|
| 1740 |
+
"run_290",
|
| 1741 |
+
"run_292",
|
| 1742 |
+
"run_293",
|
| 1743 |
+
"run_295",
|
| 1744 |
+
"run_296",
|
| 1745 |
+
"run_297",
|
| 1746 |
+
"run_298",
|
| 1747 |
+
"run_300",
|
| 1748 |
+
"run_301",
|
| 1749 |
+
"run_304",
|
| 1750 |
+
"run_306",
|
| 1751 |
+
"run_309",
|
| 1752 |
+
"run_310",
|
| 1753 |
+
"run_311",
|
| 1754 |
+
"run_312",
|
| 1755 |
+
"run_314",
|
| 1756 |
+
"run_315",
|
| 1757 |
+
"run_316",
|
| 1758 |
+
"run_317",
|
| 1759 |
+
"run_318",
|
| 1760 |
+
"run_319",
|
| 1761 |
+
"run_320",
|
| 1762 |
+
"run_321",
|
| 1763 |
+
"run_322",
|
| 1764 |
+
"run_323",
|
| 1765 |
+
"run_324",
|
| 1766 |
+
"run_325",
|
| 1767 |
+
"run_327",
|
| 1768 |
+
"run_328",
|
| 1769 |
+
"run_329",
|
| 1770 |
+
"run_331",
|
| 1771 |
+
"run_332",
|
| 1772 |
+
"run_333",
|
| 1773 |
+
"run_334",
|
| 1774 |
+
"run_335",
|
| 1775 |
+
"run_336",
|
| 1776 |
+
"run_337",
|
| 1777 |
+
"run_338",
|
| 1778 |
+
"run_339",
|
| 1779 |
+
"run_340",
|
| 1780 |
+
"run_341",
|
| 1781 |
+
"run_342",
|
| 1782 |
+
"run_343",
|
| 1783 |
+
"run_346",
|
| 1784 |
+
"run_347",
|
| 1785 |
+
"run_349",
|
| 1786 |
+
"run_350",
|
| 1787 |
+
"run_353",
|
| 1788 |
+
"run_356",
|
| 1789 |
+
"run_358",
|
| 1790 |
+
"run_361",
|
| 1791 |
+
"run_362",
|
| 1792 |
+
"run_363",
|
| 1793 |
+
"run_364",
|
| 1794 |
+
"run_365",
|
| 1795 |
+
"run_367",
|
| 1796 |
+
"run_368",
|
| 1797 |
+
"run_373",
|
| 1798 |
+
"run_374",
|
| 1799 |
+
"run_376",
|
| 1800 |
+
"run_377",
|
| 1801 |
+
"run_378",
|
| 1802 |
+
"run_379",
|
| 1803 |
+
"run_380",
|
| 1804 |
+
"run_381",
|
| 1805 |
+
"run_384",
|
| 1806 |
+
"run_385",
|
| 1807 |
+
"run_387",
|
| 1808 |
+
"run_388",
|
| 1809 |
+
"run_391",
|
| 1810 |
+
"run_392",
|
| 1811 |
+
"run_393",
|
| 1812 |
+
"run_396",
|
| 1813 |
+
"run_397",
|
| 1814 |
+
"run_399",
|
| 1815 |
+
"run_400",
|
| 1816 |
+
"run_401",
|
| 1817 |
+
"run_404",
|
| 1818 |
+
"run_406",
|
| 1819 |
+
"run_407",
|
| 1820 |
+
"run_409",
|
| 1821 |
+
"run_410",
|
| 1822 |
+
"run_411",
|
| 1823 |
+
"run_412",
|
| 1824 |
+
"run_413",
|
| 1825 |
+
"run_414",
|
| 1826 |
+
"run_416",
|
| 1827 |
+
"run_417",
|
| 1828 |
+
"run_419",
|
| 1829 |
+
"run_420",
|
| 1830 |
+
"run_421",
|
| 1831 |
+
"run_423",
|
| 1832 |
+
"run_424",
|
| 1833 |
+
"run_425",
|
| 1834 |
+
"run_426",
|
| 1835 |
+
"run_427",
|
| 1836 |
+
"run_428",
|
| 1837 |
+
"run_429",
|
| 1838 |
+
"run_430",
|
| 1839 |
+
"run_431",
|
| 1840 |
+
"run_433",
|
| 1841 |
+
"run_434",
|
| 1842 |
+
"run_435",
|
| 1843 |
+
"run_437",
|
| 1844 |
+
"run_438",
|
| 1845 |
+
"run_439",
|
| 1846 |
+
"run_441",
|
| 1847 |
+
"run_443",
|
| 1848 |
+
"run_444",
|
| 1849 |
+
"run_445",
|
| 1850 |
+
"run_446",
|
| 1851 |
+
"run_447",
|
| 1852 |
+
"run_448",
|
| 1853 |
+
"run_449",
|
| 1854 |
+
"run_450",
|
| 1855 |
+
"run_451",
|
| 1856 |
+
"run_452",
|
| 1857 |
+
"run_453",
|
| 1858 |
+
"run_454",
|
| 1859 |
+
"run_455",
|
| 1860 |
+
"run_456",
|
| 1861 |
+
"run_457",
|
| 1862 |
+
"run_458",
|
| 1863 |
+
"run_459",
|
| 1864 |
+
"run_461",
|
| 1865 |
+
"run_462",
|
| 1866 |
+
"run_464",
|
| 1867 |
+
"run_465",
|
| 1868 |
+
"run_467",
|
| 1869 |
+
"run_468",
|
| 1870 |
+
"run_469",
|
| 1871 |
+
"run_470",
|
| 1872 |
+
"run_471",
|
| 1873 |
+
"run_472",
|
| 1874 |
+
"run_473",
|
| 1875 |
+
"run_474",
|
| 1876 |
+
"run_475",
|
| 1877 |
+
"run_476",
|
| 1878 |
+
"run_477",
|
| 1879 |
+
"run_479",
|
| 1880 |
+
"run_480",
|
| 1881 |
+
"run_481",
|
| 1882 |
+
"run_482",
|
| 1883 |
+
"run_483",
|
| 1884 |
+
"run_487",
|
| 1885 |
+
"run_491",
|
| 1886 |
+
"run_492",
|
| 1887 |
+
"run_493",
|
| 1888 |
+
"run_494",
|
| 1889 |
+
"run_495",
|
| 1890 |
+
"run_496",
|
| 1891 |
+
"run_497",
|
| 1892 |
+
"run_498",
|
| 1893 |
+
"run_499"
|
| 1894 |
+
],
|
| 1895 |
+
"low_drag_val": [
|
| 1896 |
+
"run_4",
|
| 1897 |
+
"run_7",
|
| 1898 |
+
"run_8",
|
| 1899 |
+
"run_15",
|
| 1900 |
+
"run_37",
|
| 1901 |
+
"run_39",
|
| 1902 |
+
"run_55",
|
| 1903 |
+
"run_56",
|
| 1904 |
+
"run_61",
|
| 1905 |
+
"run_73",
|
| 1906 |
+
"run_101",
|
| 1907 |
+
"run_106",
|
| 1908 |
+
"run_135",
|
| 1909 |
+
"run_159",
|
| 1910 |
+
"run_165",
|
| 1911 |
+
"run_168",
|
| 1912 |
+
"run_169",
|
| 1913 |
+
"run_175",
|
| 1914 |
+
"run_197",
|
| 1915 |
+
"run_207",
|
| 1916 |
+
"run_209",
|
| 1917 |
+
"run_212",
|
| 1918 |
+
"run_222",
|
| 1919 |
+
"run_230",
|
| 1920 |
+
"run_243",
|
| 1921 |
+
"run_254",
|
| 1922 |
+
"run_255",
|
| 1923 |
+
"run_278",
|
| 1924 |
+
"run_287",
|
| 1925 |
+
"run_294",
|
| 1926 |
+
"run_305",
|
| 1927 |
+
"run_344",
|
| 1928 |
+
"run_351",
|
| 1929 |
+
"run_366",
|
| 1930 |
+
"run_370",
|
| 1931 |
+
"run_371",
|
| 1932 |
+
"run_382",
|
| 1933 |
+
"run_383",
|
| 1934 |
+
"run_389",
|
| 1935 |
+
"run_394",
|
| 1936 |
+
"run_402",
|
| 1937 |
+
"run_403",
|
| 1938 |
+
"run_415",
|
| 1939 |
+
"run_432",
|
| 1940 |
+
"run_460",
|
| 1941 |
+
"run_484",
|
| 1942 |
+
"run_485",
|
| 1943 |
+
"run_489",
|
| 1944 |
+
"run_490",
|
| 1945 |
+
"run_500"
|
| 1946 |
+
],
|
| 1947 |
+
"low_drag_test": [
|
| 1948 |
+
"run_1",
|
| 1949 |
+
"run_3",
|
| 1950 |
+
"run_10",
|
| 1951 |
+
"run_20",
|
| 1952 |
+
"run_27",
|
| 1953 |
+
"run_32",
|
| 1954 |
+
"run_33",
|
| 1955 |
+
"run_36",
|
| 1956 |
+
"run_43",
|
| 1957 |
+
"run_44",
|
| 1958 |
+
"run_45",
|
| 1959 |
+
"run_46",
|
| 1960 |
+
"run_48",
|
| 1961 |
+
"run_62",
|
| 1962 |
+
"run_63",
|
| 1963 |
+
"run_68",
|
| 1964 |
+
"run_69",
|
| 1965 |
+
"run_78",
|
| 1966 |
+
"run_83",
|
| 1967 |
+
"run_85",
|
| 1968 |
+
"run_93",
|
| 1969 |
+
"run_99",
|
| 1970 |
+
"run_103",
|
| 1971 |
+
"run_110",
|
| 1972 |
+
"run_112",
|
| 1973 |
+
"run_114",
|
| 1974 |
+
"run_116",
|
| 1975 |
+
"run_117",
|
| 1976 |
+
"run_121",
|
| 1977 |
+
"run_122",
|
| 1978 |
+
"run_123",
|
| 1979 |
+
"run_124",
|
| 1980 |
+
"run_126",
|
| 1981 |
+
"run_129",
|
| 1982 |
+
"run_139",
|
| 1983 |
+
"run_144",
|
| 1984 |
+
"run_150",
|
| 1985 |
+
"run_151",
|
| 1986 |
+
"run_154",
|
| 1987 |
+
"run_157",
|
| 1988 |
+
"run_158",
|
| 1989 |
+
"run_167",
|
| 1990 |
+
"run_176",
|
| 1991 |
+
"run_189",
|
| 1992 |
+
"run_193",
|
| 1993 |
+
"run_198",
|
| 1994 |
+
"run_199",
|
| 1995 |
+
"run_201",
|
| 1996 |
+
"run_202",
|
| 1997 |
+
"run_210",
|
| 1998 |
+
"run_218",
|
| 1999 |
+
"run_233",
|
| 2000 |
+
"run_234",
|
| 2001 |
+
"run_238",
|
| 2002 |
+
"run_241",
|
| 2003 |
+
"run_247",
|
| 2004 |
+
"run_253",
|
| 2005 |
+
"run_259",
|
| 2006 |
+
"run_262",
|
| 2007 |
+
"run_269",
|
| 2008 |
+
"run_276",
|
| 2009 |
+
"run_279",
|
| 2010 |
+
"run_282",
|
| 2011 |
+
"run_286",
|
| 2012 |
+
"run_291",
|
| 2013 |
+
"run_299",
|
| 2014 |
+
"run_302",
|
| 2015 |
+
"run_303",
|
| 2016 |
+
"run_307",
|
| 2017 |
+
"run_308",
|
| 2018 |
+
"run_313",
|
| 2019 |
+
"run_326",
|
| 2020 |
+
"run_330",
|
| 2021 |
+
"run_345",
|
| 2022 |
+
"run_348",
|
| 2023 |
+
"run_352",
|
| 2024 |
+
"run_354",
|
| 2025 |
+
"run_355",
|
| 2026 |
+
"run_357",
|
| 2027 |
+
"run_359",
|
| 2028 |
+
"run_360",
|
| 2029 |
+
"run_369",
|
| 2030 |
+
"run_372",
|
| 2031 |
+
"run_375",
|
| 2032 |
+
"run_386",
|
| 2033 |
+
"run_390",
|
| 2034 |
+
"run_395",
|
| 2035 |
+
"run_398",
|
| 2036 |
+
"run_405",
|
| 2037 |
+
"run_408",
|
| 2038 |
+
"run_418",
|
| 2039 |
+
"run_422",
|
| 2040 |
+
"run_436",
|
| 2041 |
+
"run_440",
|
| 2042 |
+
"run_442",
|
| 2043 |
+
"run_463",
|
| 2044 |
+
"run_466",
|
| 2045 |
+
"run_478",
|
| 2046 |
+
"run_486",
|
| 2047 |
+
"run_488"
|
| 2048 |
+
],
|
| 2049 |
+
"geometry_train": [
|
| 2050 |
+
"run_1",
|
| 2051 |
+
"run_2",
|
| 2052 |
+
"run_3",
|
| 2053 |
+
"run_4",
|
| 2054 |
+
"run_5",
|
| 2055 |
+
"run_6",
|
| 2056 |
+
"run_8",
|
| 2057 |
+
"run_9",
|
| 2058 |
+
"run_13",
|
| 2059 |
+
"run_15",
|
| 2060 |
+
"run_16",
|
| 2061 |
+
"run_18",
|
| 2062 |
+
"run_19",
|
| 2063 |
+
"run_20",
|
| 2064 |
+
"run_21",
|
| 2065 |
+
"run_22",
|
| 2066 |
+
"run_24",
|
| 2067 |
+
"run_25",
|
| 2068 |
+
"run_26",
|
| 2069 |
+
"run_27",
|
| 2070 |
+
"run_29",
|
| 2071 |
+
"run_30",
|
| 2072 |
+
"run_32",
|
| 2073 |
+
"run_33",
|
| 2074 |
+
"run_34",
|
| 2075 |
+
"run_37",
|
| 2076 |
+
"run_39",
|
| 2077 |
+
"run_40",
|
| 2078 |
+
"run_41",
|
| 2079 |
+
"run_42",
|
| 2080 |
+
"run_43",
|
| 2081 |
+
"run_44",
|
| 2082 |
+
"run_45",
|
| 2083 |
+
"run_46",
|
| 2084 |
+
"run_47",
|
| 2085 |
+
"run_51",
|
| 2086 |
+
"run_53",
|
| 2087 |
+
"run_57",
|
| 2088 |
+
"run_58",
|
| 2089 |
+
"run_64",
|
| 2090 |
+
"run_66",
|
| 2091 |
+
"run_68",
|
| 2092 |
+
"run_70",
|
| 2093 |
+
"run_71",
|
| 2094 |
+
"run_72",
|
| 2095 |
+
"run_73",
|
| 2096 |
+
"run_74",
|
| 2097 |
+
"run_75",
|
| 2098 |
+
"run_76",
|
| 2099 |
+
"run_77",
|
| 2100 |
+
"run_78",
|
| 2101 |
+
"run_79",
|
| 2102 |
+
"run_80",
|
| 2103 |
+
"run_82",
|
| 2104 |
+
"run_83",
|
| 2105 |
+
"run_84",
|
| 2106 |
+
"run_85",
|
| 2107 |
+
"run_86",
|
| 2108 |
+
"run_87",
|
| 2109 |
+
"run_88",
|
| 2110 |
+
"run_89",
|
| 2111 |
+
"run_93",
|
| 2112 |
+
"run_94",
|
| 2113 |
+
"run_95",
|
| 2114 |
+
"run_99",
|
| 2115 |
+
"run_100",
|
| 2116 |
+
"run_102",
|
| 2117 |
+
"run_103",
|
| 2118 |
+
"run_105",
|
| 2119 |
+
"run_106",
|
| 2120 |
+
"run_107",
|
| 2121 |
+
"run_108",
|
| 2122 |
+
"run_110",
|
| 2123 |
+
"run_111",
|
| 2124 |
+
"run_112",
|
| 2125 |
+
"run_113",
|
| 2126 |
+
"run_116",
|
| 2127 |
+
"run_117",
|
| 2128 |
+
"run_118",
|
| 2129 |
+
"run_119",
|
| 2130 |
+
"run_120",
|
| 2131 |
+
"run_121",
|
| 2132 |
+
"run_123",
|
| 2133 |
+
"run_124",
|
| 2134 |
+
"run_125",
|
| 2135 |
+
"run_126",
|
| 2136 |
+
"run_127",
|
| 2137 |
+
"run_129",
|
| 2138 |
+
"run_130",
|
| 2139 |
+
"run_131",
|
| 2140 |
+
"run_132",
|
| 2141 |
+
"run_133",
|
| 2142 |
+
"run_134",
|
| 2143 |
+
"run_136",
|
| 2144 |
+
"run_137",
|
| 2145 |
+
"run_138",
|
| 2146 |
+
"run_139",
|
| 2147 |
+
"run_140",
|
| 2148 |
+
"run_141",
|
| 2149 |
+
"run_143",
|
| 2150 |
+
"run_144",
|
| 2151 |
+
"run_146",
|
| 2152 |
+
"run_147",
|
| 2153 |
+
"run_148",
|
| 2154 |
+
"run_149",
|
| 2155 |
+
"run_150",
|
| 2156 |
+
"run_151",
|
| 2157 |
+
"run_154",
|
| 2158 |
+
"run_155",
|
| 2159 |
+
"run_157",
|
| 2160 |
+
"run_159",
|
| 2161 |
+
"run_160",
|
| 2162 |
+
"run_161",
|
| 2163 |
+
"run_163",
|
| 2164 |
+
"run_165",
|
| 2165 |
+
"run_166",
|
| 2166 |
+
"run_167",
|
| 2167 |
+
"run_168",
|
| 2168 |
+
"run_170",
|
| 2169 |
+
"run_171",
|
| 2170 |
+
"run_172",
|
| 2171 |
+
"run_173",
|
| 2172 |
+
"run_174",
|
| 2173 |
+
"run_175",
|
| 2174 |
+
"run_179",
|
| 2175 |
+
"run_180",
|
| 2176 |
+
"run_181",
|
| 2177 |
+
"run_184",
|
| 2178 |
+
"run_185",
|
| 2179 |
+
"run_186",
|
| 2180 |
+
"run_187",
|
| 2181 |
+
"run_188",
|
| 2182 |
+
"run_189",
|
| 2183 |
+
"run_190",
|
| 2184 |
+
"run_191",
|
| 2185 |
+
"run_192",
|
| 2186 |
+
"run_193",
|
| 2187 |
+
"run_194",
|
| 2188 |
+
"run_195",
|
| 2189 |
+
"run_196",
|
| 2190 |
+
"run_197",
|
| 2191 |
+
"run_198",
|
| 2192 |
+
"run_199",
|
| 2193 |
+
"run_201",
|
| 2194 |
+
"run_202",
|
| 2195 |
+
"run_204",
|
| 2196 |
+
"run_207",
|
| 2197 |
+
"run_208",
|
| 2198 |
+
"run_209",
|
| 2199 |
+
"run_210",
|
| 2200 |
+
"run_212",
|
| 2201 |
+
"run_213",
|
| 2202 |
+
"run_214",
|
| 2203 |
+
"run_215",
|
| 2204 |
+
"run_217",
|
| 2205 |
+
"run_218",
|
| 2206 |
+
"run_219",
|
| 2207 |
+
"run_220",
|
| 2208 |
+
"run_221",
|
| 2209 |
+
"run_224",
|
| 2210 |
+
"run_226",
|
| 2211 |
+
"run_227",
|
| 2212 |
+
"run_228",
|
| 2213 |
+
"run_231",
|
| 2214 |
+
"run_232",
|
| 2215 |
+
"run_234",
|
| 2216 |
+
"run_235",
|
| 2217 |
+
"run_236",
|
| 2218 |
+
"run_237",
|
| 2219 |
+
"run_238",
|
| 2220 |
+
"run_239",
|
| 2221 |
+
"run_241",
|
| 2222 |
+
"run_245",
|
| 2223 |
+
"run_246",
|
| 2224 |
+
"run_247",
|
| 2225 |
+
"run_248",
|
| 2226 |
+
"run_250",
|
| 2227 |
+
"run_251",
|
| 2228 |
+
"run_252",
|
| 2229 |
+
"run_255",
|
| 2230 |
+
"run_256",
|
| 2231 |
+
"run_257",
|
| 2232 |
+
"run_258",
|
| 2233 |
+
"run_259",
|
| 2234 |
+
"run_260",
|
| 2235 |
+
"run_261",
|
| 2236 |
+
"run_262",
|
| 2237 |
+
"run_264",
|
| 2238 |
+
"run_265",
|
| 2239 |
+
"run_267",
|
| 2240 |
+
"run_268",
|
| 2241 |
+
"run_269",
|
| 2242 |
+
"run_270",
|
| 2243 |
+
"run_271",
|
| 2244 |
+
"run_272",
|
| 2245 |
+
"run_274",
|
| 2246 |
+
"run_275",
|
| 2247 |
+
"run_276",
|
| 2248 |
+
"run_277",
|
| 2249 |
+
"run_278",
|
| 2250 |
+
"run_279",
|
| 2251 |
+
"run_280",
|
| 2252 |
+
"run_281",
|
| 2253 |
+
"run_282",
|
| 2254 |
+
"run_283",
|
| 2255 |
+
"run_284",
|
| 2256 |
+
"run_286",
|
| 2257 |
+
"run_287",
|
| 2258 |
+
"run_289",
|
| 2259 |
+
"run_290",
|
| 2260 |
+
"run_292",
|
| 2261 |
+
"run_293",
|
| 2262 |
+
"run_294",
|
| 2263 |
+
"run_298",
|
| 2264 |
+
"run_299",
|
| 2265 |
+
"run_300",
|
| 2266 |
+
"run_302",
|
| 2267 |
+
"run_303",
|
| 2268 |
+
"run_305",
|
| 2269 |
+
"run_306",
|
| 2270 |
+
"run_308",
|
| 2271 |
+
"run_310",
|
| 2272 |
+
"run_311",
|
| 2273 |
+
"run_312",
|
| 2274 |
+
"run_316",
|
| 2275 |
+
"run_317",
|
| 2276 |
+
"run_320",
|
| 2277 |
+
"run_324",
|
| 2278 |
+
"run_325",
|
| 2279 |
+
"run_326",
|
| 2280 |
+
"run_327",
|
| 2281 |
+
"run_328",
|
| 2282 |
+
"run_329",
|
| 2283 |
+
"run_330",
|
| 2284 |
+
"run_331",
|
| 2285 |
+
"run_332",
|
| 2286 |
+
"run_336",
|
| 2287 |
+
"run_337",
|
| 2288 |
+
"run_338",
|
| 2289 |
+
"run_340",
|
| 2290 |
+
"run_341",
|
| 2291 |
+
"run_342",
|
| 2292 |
+
"run_344",
|
| 2293 |
+
"run_345",
|
| 2294 |
+
"run_346",
|
| 2295 |
+
"run_347",
|
| 2296 |
+
"run_348",
|
| 2297 |
+
"run_350",
|
| 2298 |
+
"run_351",
|
| 2299 |
+
"run_352",
|
| 2300 |
+
"run_353",
|
| 2301 |
+
"run_354",
|
| 2302 |
+
"run_356",
|
| 2303 |
+
"run_358",
|
| 2304 |
+
"run_359",
|
| 2305 |
+
"run_360",
|
| 2306 |
+
"run_363",
|
| 2307 |
+
"run_365",
|
| 2308 |
+
"run_366",
|
| 2309 |
+
"run_368",
|
| 2310 |
+
"run_369",
|
| 2311 |
+
"run_370",
|
| 2312 |
+
"run_371",
|
| 2313 |
+
"run_372",
|
| 2314 |
+
"run_373",
|
| 2315 |
+
"run_374",
|
| 2316 |
+
"run_377",
|
| 2317 |
+
"run_378",
|
| 2318 |
+
"run_379",
|
| 2319 |
+
"run_380",
|
| 2320 |
+
"run_383",
|
| 2321 |
+
"run_384",
|
| 2322 |
+
"run_385",
|
| 2323 |
+
"run_386",
|
| 2324 |
+
"run_388",
|
| 2325 |
+
"run_389",
|
| 2326 |
+
"run_391",
|
| 2327 |
+
"run_392",
|
| 2328 |
+
"run_393",
|
| 2329 |
+
"run_395",
|
| 2330 |
+
"run_396",
|
| 2331 |
+
"run_397",
|
| 2332 |
+
"run_398",
|
| 2333 |
+
"run_399",
|
| 2334 |
+
"run_400",
|
| 2335 |
+
"run_401",
|
| 2336 |
+
"run_402",
|
| 2337 |
+
"run_403",
|
| 2338 |
+
"run_405",
|
| 2339 |
+
"run_406",
|
| 2340 |
+
"run_407",
|
| 2341 |
+
"run_408",
|
| 2342 |
+
"run_412",
|
| 2343 |
+
"run_414",
|
| 2344 |
+
"run_417",
|
| 2345 |
+
"run_418",
|
| 2346 |
+
"run_419",
|
| 2347 |
+
"run_420",
|
| 2348 |
+
"run_422",
|
| 2349 |
+
"run_423",
|
| 2350 |
+
"run_424",
|
| 2351 |
+
"run_427",
|
| 2352 |
+
"run_429",
|
| 2353 |
+
"run_430",
|
| 2354 |
+
"run_432",
|
| 2355 |
+
"run_434",
|
| 2356 |
+
"run_435",
|
| 2357 |
+
"run_436",
|
| 2358 |
+
"run_437",
|
| 2359 |
+
"run_438",
|
| 2360 |
+
"run_439",
|
| 2361 |
+
"run_440",
|
| 2362 |
+
"run_441",
|
| 2363 |
+
"run_442",
|
| 2364 |
+
"run_443",
|
| 2365 |
+
"run_445",
|
| 2366 |
+
"run_448",
|
| 2367 |
+
"run_449",
|
| 2368 |
+
"run_451",
|
| 2369 |
+
"run_452",
|
| 2370 |
+
"run_457",
|
| 2371 |
+
"run_459",
|
| 2372 |
+
"run_463",
|
| 2373 |
+
"run_464",
|
| 2374 |
+
"run_465",
|
| 2375 |
+
"run_466",
|
| 2376 |
+
"run_467",
|
| 2377 |
+
"run_469",
|
| 2378 |
+
"run_470",
|
| 2379 |
+
"run_471",
|
| 2380 |
+
"run_472",
|
| 2381 |
+
"run_473",
|
| 2382 |
+
"run_476",
|
| 2383 |
+
"run_478",
|
| 2384 |
+
"run_479",
|
| 2385 |
+
"run_481",
|
| 2386 |
+
"run_483",
|
| 2387 |
+
"run_484",
|
| 2388 |
+
"run_486",
|
| 2389 |
+
"run_487",
|
| 2390 |
+
"run_488",
|
| 2391 |
+
"run_490",
|
| 2392 |
+
"run_492",
|
| 2393 |
+
"run_493",
|
| 2394 |
+
"run_494",
|
| 2395 |
+
"run_495",
|
| 2396 |
+
"run_496",
|
| 2397 |
+
"run_498",
|
| 2398 |
+
"run_499",
|
| 2399 |
+
"run_500"
|
| 2400 |
+
],
|
| 2401 |
+
"geometry_val": [
|
| 2402 |
+
"run_7",
|
| 2403 |
+
"run_10",
|
| 2404 |
+
"run_23",
|
| 2405 |
+
"run_28",
|
| 2406 |
+
"run_31",
|
| 2407 |
+
"run_35",
|
| 2408 |
+
"run_36",
|
| 2409 |
+
"run_48",
|
| 2410 |
+
"run_49",
|
| 2411 |
+
"run_67",
|
| 2412 |
+
"run_69",
|
| 2413 |
+
"run_81",
|
| 2414 |
+
"run_90",
|
| 2415 |
+
"run_97",
|
| 2416 |
+
"run_101",
|
| 2417 |
+
"run_114",
|
| 2418 |
+
"run_122",
|
| 2419 |
+
"run_128",
|
| 2420 |
+
"run_142",
|
| 2421 |
+
"run_156",
|
| 2422 |
+
"run_158",
|
| 2423 |
+
"run_169",
|
| 2424 |
+
"run_177",
|
| 2425 |
+
"run_178",
|
| 2426 |
+
"run_203",
|
| 2427 |
+
"run_205",
|
| 2428 |
+
"run_222",
|
| 2429 |
+
"run_230",
|
| 2430 |
+
"run_233",
|
| 2431 |
+
"run_254",
|
| 2432 |
+
"run_263",
|
| 2433 |
+
"run_285",
|
| 2434 |
+
"run_304",
|
| 2435 |
+
"run_307",
|
| 2436 |
+
"run_313",
|
| 2437 |
+
"run_321",
|
| 2438 |
+
"run_322",
|
| 2439 |
+
"run_367",
|
| 2440 |
+
"run_376",
|
| 2441 |
+
"run_381",
|
| 2442 |
+
"run_387",
|
| 2443 |
+
"run_390",
|
| 2444 |
+
"run_416",
|
| 2445 |
+
"run_426",
|
| 2446 |
+
"run_447",
|
| 2447 |
+
"run_453",
|
| 2448 |
+
"run_460",
|
| 2449 |
+
"run_461",
|
| 2450 |
+
"run_475",
|
| 2451 |
+
"run_485"
|
| 2452 |
+
],
|
| 2453 |
+
"geometry_test": [
|
| 2454 |
+
"run_11",
|
| 2455 |
+
"run_12",
|
| 2456 |
+
"run_14",
|
| 2457 |
+
"run_17",
|
| 2458 |
+
"run_38",
|
| 2459 |
+
"run_50",
|
| 2460 |
+
"run_52",
|
| 2461 |
+
"run_54",
|
| 2462 |
+
"run_55",
|
| 2463 |
+
"run_56",
|
| 2464 |
+
"run_59",
|
| 2465 |
+
"run_60",
|
| 2466 |
+
"run_61",
|
| 2467 |
+
"run_62",
|
| 2468 |
+
"run_63",
|
| 2469 |
+
"run_65",
|
| 2470 |
+
"run_91",
|
| 2471 |
+
"run_92",
|
| 2472 |
+
"run_96",
|
| 2473 |
+
"run_98",
|
| 2474 |
+
"run_104",
|
| 2475 |
+
"run_109",
|
| 2476 |
+
"run_115",
|
| 2477 |
+
"run_135",
|
| 2478 |
+
"run_145",
|
| 2479 |
+
"run_152",
|
| 2480 |
+
"run_153",
|
| 2481 |
+
"run_162",
|
| 2482 |
+
"run_164",
|
| 2483 |
+
"run_176",
|
| 2484 |
+
"run_182",
|
| 2485 |
+
"run_183",
|
| 2486 |
+
"run_200",
|
| 2487 |
+
"run_206",
|
| 2488 |
+
"run_211",
|
| 2489 |
+
"run_216",
|
| 2490 |
+
"run_223",
|
| 2491 |
+
"run_225",
|
| 2492 |
+
"run_229",
|
| 2493 |
+
"run_240",
|
| 2494 |
+
"run_242",
|
| 2495 |
+
"run_243",
|
| 2496 |
+
"run_244",
|
| 2497 |
+
"run_249",
|
| 2498 |
+
"run_253",
|
| 2499 |
+
"run_266",
|
| 2500 |
+
"run_273",
|
| 2501 |
+
"run_288",
|
| 2502 |
+
"run_291",
|
| 2503 |
+
"run_295",
|
| 2504 |
+
"run_296",
|
| 2505 |
+
"run_297",
|
| 2506 |
+
"run_301",
|
| 2507 |
+
"run_309",
|
| 2508 |
+
"run_314",
|
| 2509 |
+
"run_315",
|
| 2510 |
+
"run_318",
|
| 2511 |
+
"run_319",
|
| 2512 |
+
"run_323",
|
| 2513 |
+
"run_333",
|
| 2514 |
+
"run_334",
|
| 2515 |
+
"run_335",
|
| 2516 |
+
"run_339",
|
| 2517 |
+
"run_343",
|
| 2518 |
+
"run_349",
|
| 2519 |
+
"run_355",
|
| 2520 |
+
"run_357",
|
| 2521 |
+
"run_361",
|
| 2522 |
+
"run_362",
|
| 2523 |
+
"run_364",
|
| 2524 |
+
"run_375",
|
| 2525 |
+
"run_382",
|
| 2526 |
+
"run_394",
|
| 2527 |
+
"run_404",
|
| 2528 |
+
"run_409",
|
| 2529 |
+
"run_410",
|
| 2530 |
+
"run_411",
|
| 2531 |
+
"run_413",
|
| 2532 |
+
"run_415",
|
| 2533 |
+
"run_421",
|
| 2534 |
+
"run_425",
|
| 2535 |
+
"run_428",
|
| 2536 |
+
"run_431",
|
| 2537 |
+
"run_433",
|
| 2538 |
+
"run_444",
|
| 2539 |
+
"run_446",
|
| 2540 |
+
"run_450",
|
| 2541 |
+
"run_454",
|
| 2542 |
+
"run_455",
|
| 2543 |
+
"run_456",
|
| 2544 |
+
"run_458",
|
| 2545 |
+
"run_462",
|
| 2546 |
+
"run_468",
|
| 2547 |
+
"run_474",
|
| 2548 |
+
"run_477",
|
| 2549 |
+
"run_480",
|
| 2550 |
+
"run_482",
|
| 2551 |
+
"run_489",
|
| 2552 |
+
"run_491",
|
| 2553 |
+
"run_497"
|
| 2554 |
+
],
|
| 2555 |
+
"image_wake_train": [
|
| 2556 |
+
"run_2",
|
| 2557 |
+
"run_3",
|
| 2558 |
+
"run_4",
|
| 2559 |
+
"run_7",
|
| 2560 |
+
"run_9",
|
| 2561 |
+
"run_10",
|
| 2562 |
+
"run_11",
|
| 2563 |
+
"run_15",
|
| 2564 |
+
"run_16",
|
| 2565 |
+
"run_17",
|
| 2566 |
+
"run_19",
|
| 2567 |
+
"run_20",
|
| 2568 |
+
"run_22",
|
| 2569 |
+
"run_24",
|
| 2570 |
+
"run_27",
|
| 2571 |
+
"run_28",
|
| 2572 |
+
"run_29",
|
| 2573 |
+
"run_30",
|
| 2574 |
+
"run_32",
|
| 2575 |
+
"run_33",
|
| 2576 |
+
"run_35",
|
| 2577 |
+
"run_36",
|
| 2578 |
+
"run_37",
|
| 2579 |
+
"run_38",
|
| 2580 |
+
"run_39",
|
| 2581 |
+
"run_40",
|
| 2582 |
+
"run_42",
|
| 2583 |
+
"run_43",
|
| 2584 |
+
"run_44",
|
| 2585 |
+
"run_45",
|
| 2586 |
+
"run_46",
|
| 2587 |
+
"run_47",
|
| 2588 |
+
"run_49",
|
| 2589 |
+
"run_50",
|
| 2590 |
+
"run_51",
|
| 2591 |
+
"run_52",
|
| 2592 |
+
"run_53",
|
| 2593 |
+
"run_54",
|
| 2594 |
+
"run_56",
|
| 2595 |
+
"run_57",
|
| 2596 |
+
"run_58",
|
| 2597 |
+
"run_59",
|
| 2598 |
+
"run_61",
|
| 2599 |
+
"run_62",
|
| 2600 |
+
"run_66",
|
| 2601 |
+
"run_67",
|
| 2602 |
+
"run_68",
|
| 2603 |
+
"run_70",
|
| 2604 |
+
"run_72",
|
| 2605 |
+
"run_77",
|
| 2606 |
+
"run_78",
|
| 2607 |
+
"run_79",
|
| 2608 |
+
"run_80",
|
| 2609 |
+
"run_83",
|
| 2610 |
+
"run_84",
|
| 2611 |
+
"run_86",
|
| 2612 |
+
"run_87",
|
| 2613 |
+
"run_88",
|
| 2614 |
+
"run_91",
|
| 2615 |
+
"run_92",
|
| 2616 |
+
"run_93",
|
| 2617 |
+
"run_95",
|
| 2618 |
+
"run_96",
|
| 2619 |
+
"run_97",
|
| 2620 |
+
"run_98",
|
| 2621 |
+
"run_99",
|
| 2622 |
+
"run_101",
|
| 2623 |
+
"run_102",
|
| 2624 |
+
"run_103",
|
| 2625 |
+
"run_104",
|
| 2626 |
+
"run_105",
|
| 2627 |
+
"run_106",
|
| 2628 |
+
"run_109",
|
| 2629 |
+
"run_110",
|
| 2630 |
+
"run_111",
|
| 2631 |
+
"run_112",
|
| 2632 |
+
"run_113",
|
| 2633 |
+
"run_114",
|
| 2634 |
+
"run_116",
|
| 2635 |
+
"run_117",
|
| 2636 |
+
"run_118",
|
| 2637 |
+
"run_119",
|
| 2638 |
+
"run_120",
|
| 2639 |
+
"run_121",
|
| 2640 |
+
"run_122",
|
| 2641 |
+
"run_123",
|
| 2642 |
+
"run_124",
|
| 2643 |
+
"run_125",
|
| 2644 |
+
"run_126",
|
| 2645 |
+
"run_127",
|
| 2646 |
+
"run_128",
|
| 2647 |
+
"run_129",
|
| 2648 |
+
"run_131",
|
| 2649 |
+
"run_133",
|
| 2650 |
+
"run_134",
|
| 2651 |
+
"run_135",
|
| 2652 |
+
"run_136",
|
| 2653 |
+
"run_137",
|
| 2654 |
+
"run_139",
|
| 2655 |
+
"run_140",
|
| 2656 |
+
"run_142",
|
| 2657 |
+
"run_143",
|
| 2658 |
+
"run_144",
|
| 2659 |
+
"run_145",
|
| 2660 |
+
"run_146",
|
| 2661 |
+
"run_147",
|
| 2662 |
+
"run_149",
|
| 2663 |
+
"run_150",
|
| 2664 |
+
"run_151",
|
| 2665 |
+
"run_153",
|
| 2666 |
+
"run_154",
|
| 2667 |
+
"run_155",
|
| 2668 |
+
"run_156",
|
| 2669 |
+
"run_157",
|
| 2670 |
+
"run_159",
|
| 2671 |
+
"run_160",
|
| 2672 |
+
"run_161",
|
| 2673 |
+
"run_163",
|
| 2674 |
+
"run_165",
|
| 2675 |
+
"run_166",
|
| 2676 |
+
"run_167",
|
| 2677 |
+
"run_168",
|
| 2678 |
+
"run_169",
|
| 2679 |
+
"run_170",
|
| 2680 |
+
"run_172",
|
| 2681 |
+
"run_175",
|
| 2682 |
+
"run_176",
|
| 2683 |
+
"run_177",
|
| 2684 |
+
"run_180",
|
| 2685 |
+
"run_181",
|
| 2686 |
+
"run_182",
|
| 2687 |
+
"run_184",
|
| 2688 |
+
"run_185",
|
| 2689 |
+
"run_186",
|
| 2690 |
+
"run_188",
|
| 2691 |
+
"run_189",
|
| 2692 |
+
"run_192",
|
| 2693 |
+
"run_193",
|
| 2694 |
+
"run_194",
|
| 2695 |
+
"run_199",
|
| 2696 |
+
"run_200",
|
| 2697 |
+
"run_201",
|
| 2698 |
+
"run_202",
|
| 2699 |
+
"run_203",
|
| 2700 |
+
"run_206",
|
| 2701 |
+
"run_208",
|
| 2702 |
+
"run_210",
|
| 2703 |
+
"run_211",
|
| 2704 |
+
"run_212",
|
| 2705 |
+
"run_213",
|
| 2706 |
+
"run_214",
|
| 2707 |
+
"run_215",
|
| 2708 |
+
"run_219",
|
| 2709 |
+
"run_221",
|
| 2710 |
+
"run_222",
|
| 2711 |
+
"run_223",
|
| 2712 |
+
"run_224",
|
| 2713 |
+
"run_225",
|
| 2714 |
+
"run_226",
|
| 2715 |
+
"run_229",
|
| 2716 |
+
"run_230",
|
| 2717 |
+
"run_231",
|
| 2718 |
+
"run_233",
|
| 2719 |
+
"run_234",
|
| 2720 |
+
"run_235",
|
| 2721 |
+
"run_237",
|
| 2722 |
+
"run_238",
|
| 2723 |
+
"run_239",
|
| 2724 |
+
"run_240",
|
| 2725 |
+
"run_241",
|
| 2726 |
+
"run_242",
|
| 2727 |
+
"run_244",
|
| 2728 |
+
"run_245",
|
| 2729 |
+
"run_246",
|
| 2730 |
+
"run_247",
|
| 2731 |
+
"run_248",
|
| 2732 |
+
"run_251",
|
| 2733 |
+
"run_252",
|
| 2734 |
+
"run_253",
|
| 2735 |
+
"run_257",
|
| 2736 |
+
"run_258",
|
| 2737 |
+
"run_259",
|
| 2738 |
+
"run_260",
|
| 2739 |
+
"run_261",
|
| 2740 |
+
"run_262",
|
| 2741 |
+
"run_263",
|
| 2742 |
+
"run_265",
|
| 2743 |
+
"run_266",
|
| 2744 |
+
"run_267",
|
| 2745 |
+
"run_268",
|
| 2746 |
+
"run_270",
|
| 2747 |
+
"run_271",
|
| 2748 |
+
"run_272",
|
| 2749 |
+
"run_273",
|
| 2750 |
+
"run_275",
|
| 2751 |
+
"run_276",
|
| 2752 |
+
"run_277",
|
| 2753 |
+
"run_278",
|
| 2754 |
+
"run_279",
|
| 2755 |
+
"run_282",
|
| 2756 |
+
"run_285",
|
| 2757 |
+
"run_286",
|
| 2758 |
+
"run_287",
|
| 2759 |
+
"run_288",
|
| 2760 |
+
"run_290",
|
| 2761 |
+
"run_291",
|
| 2762 |
+
"run_292",
|
| 2763 |
+
"run_293",
|
| 2764 |
+
"run_294",
|
| 2765 |
+
"run_296",
|
| 2766 |
+
"run_297",
|
| 2767 |
+
"run_298",
|
| 2768 |
+
"run_299",
|
| 2769 |
+
"run_300",
|
| 2770 |
+
"run_301",
|
| 2771 |
+
"run_302",
|
| 2772 |
+
"run_303",
|
| 2773 |
+
"run_304",
|
| 2774 |
+
"run_307",
|
| 2775 |
+
"run_308",
|
| 2776 |
+
"run_312",
|
| 2777 |
+
"run_313",
|
| 2778 |
+
"run_314",
|
| 2779 |
+
"run_317",
|
| 2780 |
+
"run_318",
|
| 2781 |
+
"run_319",
|
| 2782 |
+
"run_320",
|
| 2783 |
+
"run_322",
|
| 2784 |
+
"run_323",
|
| 2785 |
+
"run_324",
|
| 2786 |
+
"run_325",
|
| 2787 |
+
"run_326",
|
| 2788 |
+
"run_328",
|
| 2789 |
+
"run_329",
|
| 2790 |
+
"run_330",
|
| 2791 |
+
"run_332",
|
| 2792 |
+
"run_333",
|
| 2793 |
+
"run_334",
|
| 2794 |
+
"run_335",
|
| 2795 |
+
"run_337",
|
| 2796 |
+
"run_338",
|
| 2797 |
+
"run_340",
|
| 2798 |
+
"run_341",
|
| 2799 |
+
"run_342",
|
| 2800 |
+
"run_343",
|
| 2801 |
+
"run_344",
|
| 2802 |
+
"run_346",
|
| 2803 |
+
"run_348",
|
| 2804 |
+
"run_349",
|
| 2805 |
+
"run_350",
|
| 2806 |
+
"run_352",
|
| 2807 |
+
"run_355",
|
| 2808 |
+
"run_357",
|
| 2809 |
+
"run_358",
|
| 2810 |
+
"run_359",
|
| 2811 |
+
"run_360",
|
| 2812 |
+
"run_361",
|
| 2813 |
+
"run_363",
|
| 2814 |
+
"run_364",
|
| 2815 |
+
"run_366",
|
| 2816 |
+
"run_368",
|
| 2817 |
+
"run_369",
|
| 2818 |
+
"run_370",
|
| 2819 |
+
"run_371",
|
| 2820 |
+
"run_372",
|
| 2821 |
+
"run_373",
|
| 2822 |
+
"run_374",
|
| 2823 |
+
"run_375",
|
| 2824 |
+
"run_376",
|
| 2825 |
+
"run_379",
|
| 2826 |
+
"run_380",
|
| 2827 |
+
"run_381",
|
| 2828 |
+
"run_384",
|
| 2829 |
+
"run_386",
|
| 2830 |
+
"run_387",
|
| 2831 |
+
"run_389",
|
| 2832 |
+
"run_390",
|
| 2833 |
+
"run_391",
|
| 2834 |
+
"run_392",
|
| 2835 |
+
"run_393",
|
| 2836 |
+
"run_394",
|
| 2837 |
+
"run_395",
|
| 2838 |
+
"run_396",
|
| 2839 |
+
"run_398",
|
| 2840 |
+
"run_401",
|
| 2841 |
+
"run_402",
|
| 2842 |
+
"run_403",
|
| 2843 |
+
"run_404",
|
| 2844 |
+
"run_405",
|
| 2845 |
+
"run_406",
|
| 2846 |
+
"run_408",
|
| 2847 |
+
"run_409",
|
| 2848 |
+
"run_411",
|
| 2849 |
+
"run_412",
|
| 2850 |
+
"run_413",
|
| 2851 |
+
"run_415",
|
| 2852 |
+
"run_416",
|
| 2853 |
+
"run_417",
|
| 2854 |
+
"run_418",
|
| 2855 |
+
"run_419",
|
| 2856 |
+
"run_422",
|
| 2857 |
+
"run_423",
|
| 2858 |
+
"run_425",
|
| 2859 |
+
"run_426",
|
| 2860 |
+
"run_427",
|
| 2861 |
+
"run_429",
|
| 2862 |
+
"run_431",
|
| 2863 |
+
"run_432",
|
| 2864 |
+
"run_433",
|
| 2865 |
+
"run_434",
|
| 2866 |
+
"run_436",
|
| 2867 |
+
"run_439",
|
| 2868 |
+
"run_440",
|
| 2869 |
+
"run_441",
|
| 2870 |
+
"run_442",
|
| 2871 |
+
"run_444",
|
| 2872 |
+
"run_445",
|
| 2873 |
+
"run_446",
|
| 2874 |
+
"run_450",
|
| 2875 |
+
"run_451",
|
| 2876 |
+
"run_454",
|
| 2877 |
+
"run_456",
|
| 2878 |
+
"run_458",
|
| 2879 |
+
"run_461",
|
| 2880 |
+
"run_463",
|
| 2881 |
+
"run_464",
|
| 2882 |
+
"run_466",
|
| 2883 |
+
"run_467",
|
| 2884 |
+
"run_469",
|
| 2885 |
+
"run_471",
|
| 2886 |
+
"run_472",
|
| 2887 |
+
"run_473",
|
| 2888 |
+
"run_474",
|
| 2889 |
+
"run_475",
|
| 2890 |
+
"run_476",
|
| 2891 |
+
"run_477",
|
| 2892 |
+
"run_478",
|
| 2893 |
+
"run_479",
|
| 2894 |
+
"run_480",
|
| 2895 |
+
"run_484",
|
| 2896 |
+
"run_485",
|
| 2897 |
+
"run_486",
|
| 2898 |
+
"run_487",
|
| 2899 |
+
"run_488",
|
| 2900 |
+
"run_490",
|
| 2901 |
+
"run_491",
|
| 2902 |
+
"run_493",
|
| 2903 |
+
"run_496",
|
| 2904 |
+
"run_498",
|
| 2905 |
+
"run_499"
|
| 2906 |
+
],
|
| 2907 |
+
"image_wake_val": [
|
| 2908 |
+
"run_1",
|
| 2909 |
+
"run_5",
|
| 2910 |
+
"run_8",
|
| 2911 |
+
"run_25",
|
| 2912 |
+
"run_31",
|
| 2913 |
+
"run_48",
|
| 2914 |
+
"run_63",
|
| 2915 |
+
"run_64",
|
| 2916 |
+
"run_65",
|
| 2917 |
+
"run_85",
|
| 2918 |
+
"run_90",
|
| 2919 |
+
"run_100",
|
| 2920 |
+
"run_108",
|
| 2921 |
+
"run_130",
|
| 2922 |
+
"run_132",
|
| 2923 |
+
"run_138",
|
| 2924 |
+
"run_158",
|
| 2925 |
+
"run_162",
|
| 2926 |
+
"run_164",
|
| 2927 |
+
"run_179",
|
| 2928 |
+
"run_183",
|
| 2929 |
+
"run_195",
|
| 2930 |
+
"run_198",
|
| 2931 |
+
"run_207",
|
| 2932 |
+
"run_209",
|
| 2933 |
+
"run_218",
|
| 2934 |
+
"run_227",
|
| 2935 |
+
"run_243",
|
| 2936 |
+
"run_249",
|
| 2937 |
+
"run_254",
|
| 2938 |
+
"run_255",
|
| 2939 |
+
"run_256",
|
| 2940 |
+
"run_269",
|
| 2941 |
+
"run_281",
|
| 2942 |
+
"run_310",
|
| 2943 |
+
"run_345",
|
| 2944 |
+
"run_347",
|
| 2945 |
+
"run_377",
|
| 2946 |
+
"run_385",
|
| 2947 |
+
"run_397",
|
| 2948 |
+
"run_410",
|
| 2949 |
+
"run_430",
|
| 2950 |
+
"run_437",
|
| 2951 |
+
"run_438",
|
| 2952 |
+
"run_449",
|
| 2953 |
+
"run_452",
|
| 2954 |
+
"run_468",
|
| 2955 |
+
"run_481",
|
| 2956 |
+
"run_482",
|
| 2957 |
+
"run_489"
|
| 2958 |
+
],
|
| 2959 |
+
"image_wake_test": [
|
| 2960 |
+
"run_6",
|
| 2961 |
+
"run_12",
|
| 2962 |
+
"run_13",
|
| 2963 |
+
"run_14",
|
| 2964 |
+
"run_18",
|
| 2965 |
+
"run_21",
|
| 2966 |
+
"run_23",
|
| 2967 |
+
"run_26",
|
| 2968 |
+
"run_34",
|
| 2969 |
+
"run_41",
|
| 2970 |
+
"run_55",
|
| 2971 |
+
"run_60",
|
| 2972 |
+
"run_69",
|
| 2973 |
+
"run_71",
|
| 2974 |
+
"run_73",
|
| 2975 |
+
"run_74",
|
| 2976 |
+
"run_75",
|
| 2977 |
+
"run_76",
|
| 2978 |
+
"run_81",
|
| 2979 |
+
"run_82",
|
| 2980 |
+
"run_89",
|
| 2981 |
+
"run_94",
|
| 2982 |
+
"run_107",
|
| 2983 |
+
"run_115",
|
| 2984 |
+
"run_141",
|
| 2985 |
+
"run_148",
|
| 2986 |
+
"run_152",
|
| 2987 |
+
"run_171",
|
| 2988 |
+
"run_173",
|
| 2989 |
+
"run_174",
|
| 2990 |
+
"run_178",
|
| 2991 |
+
"run_187",
|
| 2992 |
+
"run_190",
|
| 2993 |
+
"run_191",
|
| 2994 |
+
"run_196",
|
| 2995 |
+
"run_197",
|
| 2996 |
+
"run_204",
|
| 2997 |
+
"run_205",
|
| 2998 |
+
"run_216",
|
| 2999 |
+
"run_217",
|
| 3000 |
+
"run_220",
|
| 3001 |
+
"run_228",
|
| 3002 |
+
"run_232",
|
| 3003 |
+
"run_236",
|
| 3004 |
+
"run_250",
|
| 3005 |
+
"run_264",
|
| 3006 |
+
"run_274",
|
| 3007 |
+
"run_280",
|
| 3008 |
+
"run_283",
|
| 3009 |
+
"run_284",
|
| 3010 |
+
"run_289",
|
| 3011 |
+
"run_295",
|
| 3012 |
+
"run_305",
|
| 3013 |
+
"run_306",
|
| 3014 |
+
"run_309",
|
| 3015 |
+
"run_311",
|
| 3016 |
+
"run_315",
|
| 3017 |
+
"run_316",
|
| 3018 |
+
"run_321",
|
| 3019 |
+
"run_327",
|
| 3020 |
+
"run_331",
|
| 3021 |
+
"run_336",
|
| 3022 |
+
"run_339",
|
| 3023 |
+
"run_351",
|
| 3024 |
+
"run_353",
|
| 3025 |
+
"run_354",
|
| 3026 |
+
"run_356",
|
| 3027 |
+
"run_362",
|
| 3028 |
+
"run_365",
|
| 3029 |
+
"run_367",
|
| 3030 |
+
"run_378",
|
| 3031 |
+
"run_382",
|
| 3032 |
+
"run_383",
|
| 3033 |
+
"run_388",
|
| 3034 |
+
"run_399",
|
| 3035 |
+
"run_400",
|
| 3036 |
+
"run_407",
|
| 3037 |
+
"run_414",
|
| 3038 |
+
"run_420",
|
| 3039 |
+
"run_421",
|
| 3040 |
+
"run_424",
|
| 3041 |
+
"run_428",
|
| 3042 |
+
"run_435",
|
| 3043 |
+
"run_443",
|
| 3044 |
+
"run_447",
|
| 3045 |
+
"run_448",
|
| 3046 |
+
"run_453",
|
| 3047 |
+
"run_455",
|
| 3048 |
+
"run_457",
|
| 3049 |
+
"run_459",
|
| 3050 |
+
"run_460",
|
| 3051 |
+
"run_462",
|
| 3052 |
+
"run_465",
|
| 3053 |
+
"run_470",
|
| 3054 |
+
"run_483",
|
| 3055 |
+
"run_492",
|
| 3056 |
+
"run_494",
|
| 3057 |
+
"run_495",
|
| 3058 |
+
"run_497",
|
| 3059 |
+
"run_500"
|
| 3060 |
+
]
|
| 3061 |
+
}
|
splits/parameter_geometry_metrics.csv
ADDED
|
@@ -0,0 +1,501 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
run,geometry_observed,ood_score,mean_10_nn_parameter_distance,mean_all_parameter_distance
|
| 2 |
+
1,true,1.5371733399829923,1.5371733399829923,4.199731382417224
|
| 3 |
+
2,true,1.4457567606929893,1.4457567606929893,3.643387473648818
|
| 4 |
+
3,true,1.3189681131530917,1.3189681131530917,3.35612935034657
|
| 5 |
+
4,true,1.4637477105727439,1.4637477105727439,3.605043103191509
|
| 6 |
+
5,true,1.4537520206700978,1.4537520206700978,3.974757639523387
|
| 7 |
+
6,true,1.365176865740792,1.365176865740792,3.8453861852612605
|
| 8 |
+
7,true,1.2694473876511527,1.2694473876511527,3.2423345370647625
|
| 9 |
+
8,true,1.5092872398730628,1.5092872398730628,4.034250219149982
|
| 10 |
+
9,true,1.4984929417418336,1.4984929417418336,3.7149773093263545
|
| 11 |
+
10,true,1.4112894153192828,1.4112894153192828,4.013813504220453
|
| 12 |
+
11,true,1.8251202002021731,1.8251202002021731,4.532237727003187
|
| 13 |
+
12,true,1.7712793033405727,1.7712793033405727,3.930804887593982
|
| 14 |
+
13,true,1.3728479009245877,1.3728479009245877,3.3227738862855456
|
| 15 |
+
14,true,1.968277047586993,1.968277047586993,4.277672628834627
|
| 16 |
+
15,true,1.51700391755795,1.51700391755795,3.860611458610603
|
| 17 |
+
16,true,1.491179657734723,1.491179657734723,3.5705746292863356
|
| 18 |
+
17,true,1.8151770518836585,1.8151770518836585,4.454243690420919
|
| 19 |
+
18,true,1.2425136674783155,1.2425136674783155,3.7099203668773617
|
| 20 |
+
19,true,1.9366994787623184,1.9366994787623184,4.300523616915295
|
| 21 |
+
20,true,1.6541944498218613,1.6541944498218613,3.808239982221566
|
| 22 |
+
21,true,1.4989923349794088,1.4989923349794088,3.617694239894782
|
| 23 |
+
22,true,1.5885224877940947,1.5885224877940947,4.683458684595786
|
| 24 |
+
23,true,1.4953705034562617,1.4953705034562617,3.518936957690446
|
| 25 |
+
24,true,1.487681441561694,1.487681441561694,3.4777791385117873
|
| 26 |
+
25,true,1.8454082571389812,1.8454082571389812,4.254133885400819
|
| 27 |
+
26,true,1.5365936800782911,1.5365936800782911,3.3199332227966383
|
| 28 |
+
27,true,1.3970045311559727,1.3970045311559727,3.7933758739257315
|
| 29 |
+
28,true,1.4745004264323,1.4745004264323,3.5335530641974446
|
| 30 |
+
29,true,1.3761190025066437,1.3761190025066437,3.3004267985172113
|
| 31 |
+
30,true,1.6893560216752586,1.6893560216752586,3.9962169886671584
|
| 32 |
+
31,true,1.545621702962044,1.545621702962044,3.5267752580256215
|
| 33 |
+
32,true,1.6889309056680966,1.6889309056680966,3.760402654267447
|
| 34 |
+
33,true,1.4310336992451789,1.4310336992451789,3.587550074637966
|
| 35 |
+
34,true,1.7397834960200353,1.7397834960200353,3.8012203702726968
|
| 36 |
+
35,true,1.33856233573376,1.33856233573376,3.2424276247642267
|
| 37 |
+
36,true,1.6189911615062065,1.6189911615062065,3.978705649462621
|
| 38 |
+
37,true,1.4139180883261935,1.4139180883261935,3.2499973775608963
|
| 39 |
+
38,true,1.6770964866407307,1.6770964866407307,3.821484950355596
|
| 40 |
+
39,true,1.3548187132170022,1.3548187132170022,3.406777441274412
|
| 41 |
+
40,true,1.6557060501522805,1.6557060501522805,3.407621123089733
|
| 42 |
+
41,true,1.4376302338623428,1.4376302338623428,3.412314420814256
|
| 43 |
+
42,true,1.6989847984410862,1.6989847984410862,4.193548468789302
|
| 44 |
+
43,true,1.4477911205941505,1.4477911205941505,3.9458349095031995
|
| 45 |
+
44,true,1.4744137561868589,1.4744137561868589,4.009791043161175
|
| 46 |
+
45,true,1.754005359467222,1.754005359467222,3.706431531481122
|
| 47 |
+
46,true,1.823165410165522,1.823165410165522,4.310895435146352
|
| 48 |
+
47,true,1.6916700526409845,1.6916700526409845,3.704412318413234
|
| 49 |
+
48,true,1.4391015095848254,1.4391015095848254,3.6568167122340443
|
| 50 |
+
49,true,1.3956524392748952,1.3956524392748952,3.4060303385280606
|
| 51 |
+
50,true,1.8907191285272638,1.8907191285272638,4.720967852857075
|
| 52 |
+
51,true,1.7893969917047123,1.7893969917047123,3.7488823164207283
|
| 53 |
+
52,true,2.309282868545322,2.309282868545322,4.768504835949298
|
| 54 |
+
53,true,1.6497577994800028,1.6497577994800028,4.207021978009715
|
| 55 |
+
54,true,1.9264315428222236,1.9264315428222236,4.375363995160352
|
| 56 |
+
55,true,1.4602410845533815,1.4602410845533815,4.296239310035959
|
| 57 |
+
56,true,2.00997154823524,2.00997154823524,4.3028316342666155
|
| 58 |
+
57,true,1.682830682672233,1.682830682672233,3.788080553087215
|
| 59 |
+
58,true,1.620887287124845,1.620887287124845,4.049923317465914
|
| 60 |
+
59,true,1.624696725696135,1.624696725696135,4.479079928660714
|
| 61 |
+
60,true,1.8290648944465844,1.8290648944465844,3.938631142580382
|
| 62 |
+
61,true,1.5688593528957715,1.5688593528957715,3.933310793887141
|
| 63 |
+
62,true,1.9165782635278668,1.9165782635278668,4.123295657796598
|
| 64 |
+
63,true,1.6877121111162885,1.6877121111162885,3.9226317047368986
|
| 65 |
+
64,true,1.8509594776263154,1.8509594776263154,4.377195316735396
|
| 66 |
+
65,true,1.5709692377174886,1.5709692377174886,4.025412137718886
|
| 67 |
+
66,true,1.5718055414874172,1.5718055414874172,3.9417203385067787
|
| 68 |
+
67,true,1.3692193227006528,1.3692193227006528,3.099839273305964
|
| 69 |
+
68,true,1.5374225220524156,1.5374225220524156,3.90330701058173
|
| 70 |
+
69,true,1.3286517771489355,1.3286517771489355,3.562948488606504
|
| 71 |
+
70,true,1.4225706735091213,1.4225706735091213,3.761488447899334
|
| 72 |
+
71,true,1.083451807365487,1.083451807365487,3.406889003487848
|
| 73 |
+
72,true,1.3799166377376035,1.3799166377376035,3.8555909942172644
|
| 74 |
+
73,true,1.3741014027201444,1.3741014027201444,3.173782952181643
|
| 75 |
+
74,true,1.5053233531809995,1.5053233531809995,4.1250857969598655
|
| 76 |
+
75,true,1.7506473635808342,1.7506473635808342,4.116616578952039
|
| 77 |
+
76,true,1.458204620468242,1.458204620468242,3.2634205245687276
|
| 78 |
+
77,true,1.8185581729849627,1.8185581729849627,3.8328932727908347
|
| 79 |
+
78,true,1.5531491381911433,1.5531491381911433,3.6420691452681724
|
| 80 |
+
79,true,1.4641335851408752,1.4641335851408752,3.4385044109216545
|
| 81 |
+
80,true,1.5853516582137321,1.5853516582137321,3.4828392403975132
|
| 82 |
+
81,true,1.5016173850537036,1.5016173850537036,4.126321204830208
|
| 83 |
+
82,true,1.231829270569848,1.231829270569848,3.8331919954302602
|
| 84 |
+
83,true,1.7429301423139887,1.7429301423139887,4.3377907657112695
|
| 85 |
+
84,true,1.4569497478590012,1.4569497478590012,3.694709947440542
|
| 86 |
+
85,true,1.907333589286227,1.907333589286227,4.385421965606942
|
| 87 |
+
86,true,1.5990679910368417,1.5990679910368417,4.0436722271511165
|
| 88 |
+
87,true,1.3852075134203237,1.3852075134203237,4.010298556134474
|
| 89 |
+
88,true,1.301818625756542,1.301818625756542,3.379433395623079
|
| 90 |
+
89,true,1.2342852884850912,1.2342852884850912,3.6087925765451954
|
| 91 |
+
90,true,1.5162832449183785,1.5162832449183785,3.9262912924427162
|
| 92 |
+
91,true,1.6079192889485596,1.6079192889485596,4.022377516778384
|
| 93 |
+
92,true,1.6336931969081878,1.6336931969081878,4.285207943492267
|
| 94 |
+
93,true,2.2213372481698133,2.2213372481698133,5.071586810401775
|
| 95 |
+
94,true,1.4467328890796982,1.4467328890796982,3.690955465678884
|
| 96 |
+
95,true,1.6308090897689795,1.6308090897689795,4.164440447719747
|
| 97 |
+
96,true,2.0062888892131014,2.0062888892131014,4.2199078502423575
|
| 98 |
+
97,true,1.4734040300026445,1.4734040300026445,3.6031866346525523
|
| 99 |
+
98,true,1.7609987934622708,1.7609987934622708,3.5560480013947338
|
| 100 |
+
99,true,1.2920265450446036,1.2920265450446036,3.6396381560843185
|
| 101 |
+
100,true,1.5577806476755307,1.5577806476755307,3.9738473715604945
|
| 102 |
+
101,true,1.5666692997826677,1.5666692997826677,3.827994554172128
|
| 103 |
+
102,true,1.503418391611525,1.503418391611525,3.9232942943165448
|
| 104 |
+
103,true,1.866972530233232,1.866972530233232,4.516924538014431
|
| 105 |
+
104,true,1.329272387419678,1.329272387419678,3.7686685166402043
|
| 106 |
+
105,true,1.7659789516467626,1.7659789516467626,4.603390267694349
|
| 107 |
+
106,true,1.513333885908281,1.513333885908281,3.8701484435678037
|
| 108 |
+
107,true,1.4019711644283679,1.4019711644283679,3.1959798186124897
|
| 109 |
+
108,true,1.384244101952318,1.384244101952318,3.5136350071822817
|
| 110 |
+
109,true,1.598152773354302,1.598152773354302,4.297062213695695
|
| 111 |
+
110,true,1.5537827299165634,1.5537827299165634,3.795912198655318
|
| 112 |
+
111,true,1.4990687886531358,1.4990687886531358,3.662523668905521
|
| 113 |
+
112,true,1.7059166438732767,1.7059166438732767,4.489260535982661
|
| 114 |
+
113,true,1.416561609923958,1.416561609923958,3.697305251714732
|
| 115 |
+
114,true,1.3424313110870458,1.3424313110870458,3.8253418961071306
|
| 116 |
+
115,true,1.9123890123640013,1.9123890123640013,4.035519602925534
|
| 117 |
+
116,true,1.773010513727894,1.773010513727894,4.518845115013138
|
| 118 |
+
117,true,1.8510929041365287,1.8510929041365287,4.258679591411199
|
| 119 |
+
118,true,1.5086183142581073,1.5086183142581073,4.050039795106349
|
| 120 |
+
119,true,1.4168010613617503,1.4168010613617503,3.570965617638404
|
| 121 |
+
120,true,1.8150002778042265,1.8150002778042265,4.294952446745636
|
| 122 |
+
121,true,1.6981522445303685,1.6981522445303685,4.106364615592783
|
| 123 |
+
122,true,1.8868375002086952,1.8868375002086952,4.38873749475354
|
| 124 |
+
123,true,1.6569146885490185,1.6569146885490185,4.107576147721832
|
| 125 |
+
124,true,1.6974542933906733,1.6974542933906733,4.066510216556818
|
| 126 |
+
125,true,1.5491074453582854,1.5491074453582854,4.011479978981576
|
| 127 |
+
126,true,1.5384045239015844,1.5384045239015844,3.82230289186579
|
| 128 |
+
127,true,1.4903642596825828,1.4903642596825828,3.32856181624478
|
| 129 |
+
128,true,1.6183935445201283,1.6183935445201283,3.9026798883704372
|
| 130 |
+
129,true,1.430622492729711,1.430622492729711,3.8516607805356546
|
| 131 |
+
130,true,1.643520267904035,1.643520267904035,4.264588000757018
|
| 132 |
+
131,true,1.8186863015363244,1.8186863015363244,4.388337954474262
|
| 133 |
+
132,true,1.3417771058965968,1.3417771058965968,4.084096813373756
|
| 134 |
+
133,true,1.5855573278009807,1.5855573278009807,3.9888205324798878
|
| 135 |
+
134,true,1.3160390736685117,1.3160390736685117,3.3206357088486844
|
| 136 |
+
135,true,1.9237306666996237,1.9237306666996237,4.781593657086239
|
| 137 |
+
136,true,1.3387125083778972,1.3387125083778972,3.524712033994034
|
| 138 |
+
137,true,1.4206716301610673,1.4206716301610673,3.1473648200263407
|
| 139 |
+
138,true,1.5661818161732375,1.5661818161732375,3.9958459703812617
|
| 140 |
+
139,true,1.8776698909096872,1.8776698909096872,4.513687443367072
|
| 141 |
+
140,true,1.6772516821164896,1.6772516821164896,3.681922263980017
|
| 142 |
+
141,true,1.4230269799494033,1.4230269799494033,3.550802190367728
|
| 143 |
+
142,true,1.4621891124779869,1.4621891124779869,3.2878100520751
|
| 144 |
+
143,true,1.434927239029477,1.434927239029477,3.1303910146268374
|
| 145 |
+
144,true,1.7492852055084573,1.7492852055084573,4.266224692621611
|
| 146 |
+
145,true,1.8142617004317614,1.8142617004317614,4.05907918866984
|
| 147 |
+
146,true,1.4361906507815738,1.4361906507815738,3.149397725635229
|
| 148 |
+
147,true,1.3405042799540927,1.3405042799540927,3.617573082841226
|
| 149 |
+
148,true,1.4960221740966344,1.4960221740966344,3.3071721483419756
|
| 150 |
+
149,true,1.587769545464882,1.587769545464882,3.762286353941433
|
| 151 |
+
150,true,1.5328195510695175,1.5328195510695175,3.7762772967098743
|
| 152 |
+
151,true,1.525584596798803,1.525584596798803,3.506494477078765
|
| 153 |
+
152,true,2.0290502850557472,2.0290502850557472,4.59474056522266
|
| 154 |
+
153,true,1.674808809207961,1.674808809207961,4.423064271390135
|
| 155 |
+
154,true,1.660721583580795,1.660721583580795,4.093659768445963
|
| 156 |
+
155,true,1.7033023050179217,1.7033023050179217,4.576473858905595
|
| 157 |
+
156,true,1.8431260481805576,1.8431260481805576,4.059210340326662
|
| 158 |
+
157,true,1.6617799057996314,1.6617799057996314,4.200185091833271
|
| 159 |
+
158,true,1.751472749570747,1.751472749570747,4.351711379334925
|
| 160 |
+
159,true,1.630941123885798,1.630941123885798,4.038355072561369
|
| 161 |
+
160,true,1.477996981966692,1.477996981966692,3.5577895723337556
|
| 162 |
+
161,true,1.6091362248455805,1.6091362248455805,3.777465268627914
|
| 163 |
+
162,true,1.9023111149479917,1.9023111149479917,4.449125378971031
|
| 164 |
+
163,true,1.5692527278034554,1.5692527278034554,3.943460799498046
|
| 165 |
+
164,true,2.0165650348331723,2.0165650348331723,4.827079504989251
|
| 166 |
+
165,true,1.4756260409626782,1.4756260409626782,3.4790884789314838
|
| 167 |
+
166,true,1.765067819369215,1.765067819369215,4.3575809754969566
|
| 168 |
+
167,true,1.968666423129207,1.968666423129207,4.806530587116946
|
| 169 |
+
168,true,1.441254724538593,1.441254724538593,3.3571999323196833
|
| 170 |
+
169,true,1.5294551218558556,1.5294551218558556,3.8964200472634847
|
| 171 |
+
170,true,1.632686892807427,1.632686892807427,4.1451942488544695
|
| 172 |
+
171,true,1.2764347510860659,1.2764347510860659,3.9586919360452653
|
| 173 |
+
172,true,1.5118139054815074,1.5118139054815074,3.650379136356431
|
| 174 |
+
173,true,1.3992759846553315,1.3992759846553315,3.7369280772726827
|
| 175 |
+
174,true,1.3266707170166816,1.3266707170166816,3.7848426023705275
|
| 176 |
+
175,true,1.488498974885008,1.488498974885008,3.6993479123093698
|
| 177 |
+
176,true,1.7686188210820286,1.7686188210820286,4.152237067358615
|
| 178 |
+
177,true,1.4336569886253003,1.4336569886253003,3.3859366885876008
|
| 179 |
+
178,true,1.4774675288050207,1.4774675288050207,3.7722946674496045
|
| 180 |
+
179,true,1.2598843489656582,1.2598843489656582,3.3668756694499806
|
| 181 |
+
180,true,1.9511579018962535,1.9511579018962535,4.119390079632346
|
| 182 |
+
181,true,1.6142815834751147,1.6142815834751147,4.162612081542571
|
| 183 |
+
182,true,1.6339558613447207,1.6339558613447207,3.771458579031521
|
| 184 |
+
183,true,1.691462833025458,1.691462833025458,4.272925601063628
|
| 185 |
+
184,true,1.6730207810808544,1.6730207810808544,3.880910999149458
|
| 186 |
+
185,true,1.580686358708466,1.580686358708466,3.94689074807866
|
| 187 |
+
186,true,1.703984694626201,1.703984694626201,4.500703769831264
|
| 188 |
+
187,true,1.39017741488616,1.39017741488616,3.275242323805824
|
| 189 |
+
188,true,1.5255931184870264,1.5255931184870264,3.9408541316271517
|
| 190 |
+
189,true,1.2731759202107171,1.2731759202107171,3.4274090911942574
|
| 191 |
+
190,true,1.4450729527376085,1.4450729527376085,4.257778215105246
|
| 192 |
+
191,true,1.3663790649339724,1.3663790649339724,3.2643450502058022
|
| 193 |
+
192,true,1.5977635909028203,1.5977635909028203,3.846389265143639
|
| 194 |
+
193,true,1.6187821445722879,1.6187821445722879,4.218166013830504
|
| 195 |
+
194,true,1.2768093904995577,1.2768093904995577,3.9482100817754326
|
| 196 |
+
195,true,1.3302452008629913,1.3302452008629913,3.5301269605395857
|
| 197 |
+
196,true,1.3768259080530505,1.3768259080530505,3.34753222820955
|
| 198 |
+
197,true,1.6308037461313194,1.6308037461313194,3.597480747663258
|
| 199 |
+
198,true,1.4473173876681946,1.4473173876681946,4.160570982383998
|
| 200 |
+
199,true,1.698859945411184,1.698859945411184,4.046620143608707
|
| 201 |
+
200,true,2.092319445083557,2.092319445083557,4.706548868021713
|
| 202 |
+
201,true,1.2878642769225557,1.2878642769225557,3.6135827076033644
|
| 203 |
+
202,true,1.5046112136192584,1.5046112136192584,3.4910459705936447
|
| 204 |
+
203,true,1.5784028711775087,1.5784028711775087,4.142574065458008
|
| 205 |
+
204,true,1.449223993374568,1.449223993374568,3.7066178941635473
|
| 206 |
+
205,true,1.4023548643502521,1.4023548643502521,4.1950033991508064
|
| 207 |
+
206,true,1.7659293532361748,1.7659293532361748,4.369807963744033
|
| 208 |
+
207,true,1.5795932756129072,1.5795932756129072,3.5126272416649815
|
| 209 |
+
208,true,1.4920479895665453,1.4920479895665453,3.6686007860465573
|
| 210 |
+
209,true,1.430814315188954,1.430814315188954,3.8971423613988754
|
| 211 |
+
210,true,1.4032800786398665,1.4032800786398665,3.9521825042895444
|
| 212 |
+
211,true,1.7241113150382485,1.7241113150382485,4.570427170986842
|
| 213 |
+
212,true,1.331555746545235,1.331555746545235,3.1786058575244023
|
| 214 |
+
213,true,1.4706606955700192,1.4706606955700192,3.44419218568043
|
| 215 |
+
214,true,1.5310881640190934,1.5310881640190934,3.8132245024288878
|
| 216 |
+
215,true,1.7213387359046322,1.7213387359046322,4.578378367913626
|
| 217 |
+
216,true,1.531687980500113,1.531687980500113,3.375077593523281
|
| 218 |
+
217,true,1.4646845206652388,1.4646845206652388,3.3473789469031967
|
| 219 |
+
218,true,1.502754253048365,1.502754253048365,3.578138938479329
|
| 220 |
+
219,true,1.2666702567098516,1.2666702567098516,3.1401111922234892
|
| 221 |
+
220,true,1.6346609392485156,1.6346609392485156,3.651500420376014
|
| 222 |
+
221,true,1.6917388993139255,1.6917388993139255,4.187951283343251
|
| 223 |
+
222,true,1.762639043619157,1.762639043619157,4.035365349386163
|
| 224 |
+
223,true,1.630651795962183,1.630651795962183,4.077008159680319
|
| 225 |
+
224,true,1.4186918970467592,1.4186918970467592,3.3371086661654816
|
| 226 |
+
225,true,1.9860321720179868,1.9860321720179868,4.402211078673647
|
| 227 |
+
226,true,1.4193351671580323,1.4193351671580323,3.595522326343532
|
| 228 |
+
227,true,1.4788378987303592,1.4788378987303592,3.8478466865948375
|
| 229 |
+
228,true,1.4789517578022864,1.4789517578022864,3.6494468663007282
|
| 230 |
+
229,true,1.3196590656353597,1.3196590656353597,4.182756735713919
|
| 231 |
+
230,true,1.2594321337975736,1.2594321337975736,3.7683955563516034
|
| 232 |
+
231,true,1.4418883948589767,1.4418883948589767,3.612297640443388
|
| 233 |
+
232,true,1.7810911379943657,1.7810911379943657,3.891206391345554
|
| 234 |
+
233,true,1.6388770901005458,1.6388770901005458,3.9721706158291514
|
| 235 |
+
234,true,1.3341526863053559,1.3341526863053559,3.601126813281968
|
| 236 |
+
235,true,1.5551106867702988,1.5551106867702988,3.6405799038860764
|
| 237 |
+
236,true,1.4773490485819527,1.4773490485819527,3.9761706448135774
|
| 238 |
+
237,true,1.5127150599732122,1.5127150599732122,3.683908548054631
|
| 239 |
+
238,true,1.5193867931045688,1.5193867931045688,3.9843098555583865
|
| 240 |
+
239,true,1.6474960940940815,1.6474960940940815,4.081018636595739
|
| 241 |
+
240,true,1.4787627784876005,1.4787627784876005,3.421542389176913
|
| 242 |
+
241,true,1.4466690787794565,1.4466690787794565,3.7867830158211837
|
| 243 |
+
242,true,1.4742719870183278,1.4742719870183278,3.9760727200506776
|
| 244 |
+
243,true,1.6184559704501111,1.6184559704501111,4.045217072412992
|
| 245 |
+
244,true,2.012624630146699,2.012624630146699,4.7698662423591225
|
| 246 |
+
245,true,1.3666806897391455,1.3666806897391455,4.087180572283866
|
| 247 |
+
246,true,1.2231877372146116,1.2231877372146116,4.02681623795392
|
| 248 |
+
247,true,1.4281133372401829,1.4281133372401829,4.096414598565276
|
| 249 |
+
248,true,1.5118507266175427,1.5118507266175427,3.7869217597047586
|
| 250 |
+
249,true,1.8646922827742967,1.8646922827742967,4.149717790233465
|
| 251 |
+
250,true,1.4568880969468727,1.4568880969468727,3.5275715972428068
|
| 252 |
+
251,true,1.7885070449424112,1.7885070449424112,3.6202985090741615
|
| 253 |
+
252,true,1.5761604217960012,1.5761604217960012,3.979728813912061
|
| 254 |
+
253,true,1.8884535604219441,1.8884535604219441,4.756034168891553
|
| 255 |
+
254,true,1.3854725431786492,1.3854725431786492,3.541793180953965
|
| 256 |
+
255,true,1.5634092293390327,1.5634092293390327,4.058433206016442
|
| 257 |
+
256,true,1.712897059583618,1.712897059583618,3.7837848609514264
|
| 258 |
+
257,true,1.3453022814819469,1.3453022814819469,3.4030472637086455
|
| 259 |
+
258,true,1.7506886682973222,1.7506886682973222,3.795711837933805
|
| 260 |
+
259,true,1.573909900272678,1.573909900272678,3.9499565254852556
|
| 261 |
+
260,true,1.4255626157986476,1.4255626157986476,3.7606668771138145
|
| 262 |
+
261,true,1.5640531668544082,1.5640531668544082,4.477926636146256
|
| 263 |
+
262,true,1.2929072929701366,1.2929072929701366,3.4005631775722076
|
| 264 |
+
263,true,1.5852808264354339,1.5852808264354339,3.2123028035211783
|
| 265 |
+
264,true,1.415264100409358,1.415264100409358,3.1599084329613687
|
| 266 |
+
265,true,1.4912956043498158,1.4912956043498158,3.554678125546315
|
| 267 |
+
266,true,1.9635891442248485,1.9635891442248485,4.134938876452722
|
| 268 |
+
267,true,1.543160821241698,1.543160821241698,3.616506496643573
|
| 269 |
+
268,true,1.7992999718217568,1.7992999718217568,4.133794004328868
|
| 270 |
+
269,true,1.9783090829105816,1.9783090829105816,4.573608357187377
|
| 271 |
+
270,true,1.2324962917335254,1.2324962917335254,2.963512871133029
|
| 272 |
+
271,true,2.0658388549421938,2.0658388549421938,4.457116840444852
|
| 273 |
+
272,true,1.3702147171394319,1.3702147171394319,3.2439214359484354
|
| 274 |
+
273,true,1.929893680254637,1.929893680254637,4.535385752519869
|
| 275 |
+
274,true,1.6640089097356998,1.6640089097356998,3.7073982460350683
|
| 276 |
+
275,true,1.3756489842048603,1.3756489842048603,3.841503261321753
|
| 277 |
+
276,true,1.5147437740285603,1.5147437740285603,3.840453323829047
|
| 278 |
+
277,true,1.5195497028918563,1.5195497028918563,3.698763544825648
|
| 279 |
+
278,true,1.5621248637731227,1.5621248637731227,3.3913350038075096
|
| 280 |
+
279,true,1.6099655068549867,1.6099655068549867,3.8716815897546764
|
| 281 |
+
280,true,1.190512599182044,1.190512599182044,3.880039425028463
|
| 282 |
+
281,true,1.4112553725167563,1.4112553725167563,3.758313929356346
|
| 283 |
+
282,true,1.7438215873241525,1.7438215873241525,4.145734964247106
|
| 284 |
+
283,true,1.3920747158303193,1.3920747158303193,3.719161667219829
|
| 285 |
+
284,true,1.3451803007960965,1.3451803007960965,3.767064094148237
|
| 286 |
+
285,true,1.2813724076867763,1.2813724076867763,3.754617620760507
|
| 287 |
+
286,true,1.7514658257955276,1.7514658257955276,4.321965454972766
|
| 288 |
+
287,true,1.4505832791562818,1.4505832791562818,3.3159488047893664
|
| 289 |
+
288,true,1.964490387810811,1.964490387810811,4.223261710404559
|
| 290 |
+
289,true,1.5869095951440357,1.5869095951440357,3.41881133235518
|
| 291 |
+
290,true,1.4737386431837085,1.4737386431837085,4.022346415508156
|
| 292 |
+
291,true,1.8319195189132926,1.8319195189132926,4.707881097803055
|
| 293 |
+
292,true,1.3729848575432864,1.3729848575432864,3.6173533999669227
|
| 294 |
+
293,true,1.9580605771396684,1.9580605771396684,4.282016383370361
|
| 295 |
+
294,true,1.4275329412281363,1.4275329412281363,3.4942892826036474
|
| 296 |
+
295,true,1.695957696269208,1.695957696269208,3.89279973836442
|
| 297 |
+
296,true,1.7175602917835158,1.7175602917835158,4.049120115914259
|
| 298 |
+
297,true,2.0393198532739207,2.0393198532739207,4.5581734707314085
|
| 299 |
+
298,true,1.2575670744252732,1.2575670744252732,3.059770166100042
|
| 300 |
+
299,true,1.489515090178933,1.489515090178933,3.9671771007957988
|
| 301 |
+
300,true,1.5813971038974706,1.5813971038974706,3.9419941916705343
|
| 302 |
+
301,true,1.7418082847659027,1.7418082847659027,4.038183804356725
|
| 303 |
+
302,true,1.5395003255250306,1.5395003255250306,4.006495391399913
|
| 304 |
+
303,true,1.7583540827675033,1.7583540827675033,4.113066838494202
|
| 305 |
+
304,true,1.272690875909428,1.272690875909428,3.6802763203842392
|
| 306 |
+
305,true,1.3854950787338907,1.3854950787338907,3.661869524964353
|
| 307 |
+
306,true,1.6006793053903672,1.6006793053903672,3.383612612826422
|
| 308 |
+
307,true,1.5991364980061227,1.5991364980061227,3.777100586711148
|
| 309 |
+
308,true,2.0153575680600353,2.0153575680600353,4.583708518098553
|
| 310 |
+
309,true,1.9493949695757788,1.9493949695757788,4.238552987356972
|
| 311 |
+
310,true,1.5919967705376323,1.5919967705376323,3.709109320872328
|
| 312 |
+
311,true,1.5843548914124965,1.5843548914124965,3.5456192412593674
|
| 313 |
+
312,true,1.413238410607534,1.413238410607534,3.672465309773166
|
| 314 |
+
313,true,1.4547576588156674,1.4547576588156674,4.054025187867071
|
| 315 |
+
314,true,1.699124039295338,1.699124039295338,4.594606060052904
|
| 316 |
+
315,true,1.3650155412026483,1.3650155412026483,3.496545069908438
|
| 317 |
+
316,true,1.5411591174365182,1.5411591174365182,3.749699747609708
|
| 318 |
+
317,true,1.238298340180521,1.238298340180521,3.051113755847939
|
| 319 |
+
318,true,1.9144442966848891,1.9144442966848891,4.692673960932498
|
| 320 |
+
319,true,1.5031449116504683,1.5031449116504683,3.804859532752375
|
| 321 |
+
320,true,1.672615864995017,1.672615864995017,3.8698779186503565
|
| 322 |
+
321,true,1.457937956176289,1.457937956176289,3.4518343257370927
|
| 323 |
+
322,true,1.756874239922358,1.756874239922358,4.01773954670625
|
| 324 |
+
323,true,1.6161645552460544,1.6161645552460544,3.7236829087213414
|
| 325 |
+
324,true,1.5365997225832653,1.5365997225832653,4.10655000002635
|
| 326 |
+
325,true,1.4836262568469911,1.4836262568469911,3.419566387423208
|
| 327 |
+
326,true,1.5983955610940046,1.5983955610940046,3.51439331100331
|
| 328 |
+
327,true,1.2170393770048604,1.2170393770048604,3.3612497216087562
|
| 329 |
+
328,true,1.543614196507575,1.543614196507575,3.541742102411004
|
| 330 |
+
329,true,1.6944332843856387,1.6944332843856387,3.8278883974778006
|
| 331 |
+
330,true,1.6709576589374202,1.6709576589374202,4.0586506977054455
|
| 332 |
+
331,true,1.3439577096720214,1.3439577096720214,3.66945558844034
|
| 333 |
+
332,true,1.551822825936339,1.551822825936339,3.64327766035966
|
| 334 |
+
333,true,1.6346947831930727,1.6346947831930727,3.8717608951284195
|
| 335 |
+
334,true,1.5626820495558313,1.5626820495558313,4.323958498765296
|
| 336 |
+
335,true,1.7473387079024036,1.7473387079024036,4.295609619453712
|
| 337 |
+
336,true,1.3495188220510645,1.3495188220510645,3.674924462798825
|
| 338 |
+
337,true,1.4402430629822165,1.4402430629822165,3.85193183034893
|
| 339 |
+
338,true,1.4357319429076596,1.4357319429076596,3.740682727329855
|
| 340 |
+
339,true,1.4306357398664542,1.4306357398664542,4.464331225078595
|
| 341 |
+
340,true,1.7323377865037688,1.7323377865037688,3.943682538474043
|
| 342 |
+
341,true,1.881865562203058,1.881865562203058,4.468956904297487
|
| 343 |
+
342,true,1.3966851227151482,1.3966851227151482,4.232846913366065
|
| 344 |
+
343,true,1.466135840254499,1.466135840254499,3.7336052566594975
|
| 345 |
+
344,true,1.3428766419182,1.3428766419182,3.586209580918887
|
| 346 |
+
345,true,1.4571093716544543,1.4571093716544543,3.820494908077694
|
| 347 |
+
346,true,1.3136272149577801,1.3136272149577801,3.040564541627838
|
| 348 |
+
347,true,1.5813477806999459,1.5813477806999459,3.589502100570865
|
| 349 |
+
348,true,1.4841310151695728,1.4841310151695728,3.7095789208807184
|
| 350 |
+
349,true,1.8245905716610071,1.8245905716610071,3.718362766130906
|
| 351 |
+
350,true,1.4477731522050523,1.4477731522050523,3.5812517688974457
|
| 352 |
+
351,true,1.6227670757916273,1.6227670757916273,3.800225239950953
|
| 353 |
+
352,true,1.5323896629815077,1.5323896629815077,4.045390184855502
|
| 354 |
+
353,true,1.7176117367433907,1.7176117367433907,3.8697912012784688
|
| 355 |
+
354,true,1.4848741087817285,1.4848741087817285,3.7484570160182797
|
| 356 |
+
355,true,1.7737307338837875,1.7737307338837875,4.335856486898491
|
| 357 |
+
356,true,1.3314859062903628,1.3314859062903628,3.4913071666554067
|
| 358 |
+
357,true,1.673372611913874,1.673372611913874,3.984368638497204
|
| 359 |
+
358,true,1.871755412653434,1.871755412653434,4.228374555412362
|
| 360 |
+
359,true,1.3299584054327251,1.3299584054327251,3.341026386926293
|
| 361 |
+
360,true,1.4529611071570252,1.4529611071570252,3.788896632562718
|
| 362 |
+
361,true,1.6467965299702776,1.6467965299702776,3.8600698707056282
|
| 363 |
+
362,true,1.6100841470105653,1.6100841470105653,4.15870499554287
|
| 364 |
+
363,true,1.5234493441783155,1.5234493441783155,3.9808699396158556
|
| 365 |
+
364,true,1.6527619700035985,1.6527619700035985,3.991246289225501
|
| 366 |
+
365,true,1.2012774721668553,1.2012774721668553,3.4315691047053107
|
| 367 |
+
366,true,1.4713041432864058,1.4713041432864058,3.507183392498813
|
| 368 |
+
367,true,1.425264960859607,1.425264960859607,3.674294414339645
|
| 369 |
+
368,true,1.4551655286106935,1.4551655286106935,3.0654153062832483
|
| 370 |
+
369,true,1.4473560682280495,1.4473560682280495,3.845383263340203
|
| 371 |
+
370,true,1.8501507769766092,1.8501507769766092,4.058666567582153
|
| 372 |
+
371,true,1.502167282389066,1.502167282389066,3.4532832748531224
|
| 373 |
+
372,true,1.5621700059656802,1.5621700059656802,4.007337916258039
|
| 374 |
+
373,true,1.3762907321569164,1.3762907321569164,3.432453142400082
|
| 375 |
+
374,true,1.7709283226857664,1.7709283226857664,3.884978623871526
|
| 376 |
+
375,true,1.811829528568731,1.811829528568731,4.210506981549323
|
| 377 |
+
376,true,1.8197610498760457,1.8197610498760457,3.8915658578451073
|
| 378 |
+
377,true,1.4535677426143327,1.4535677426143327,3.6753161653703907
|
| 379 |
+
378,true,1.6166247663712874,1.6166247663712874,3.3401366068834997
|
| 380 |
+
379,true,1.4869278540914936,1.4869278540914936,3.9676570441120576
|
| 381 |
+
380,true,1.4143944199154839,1.4143944199154839,4.385777496366048
|
| 382 |
+
381,true,1.4389711839784236,1.4389711839784236,3.4269175693720815
|
| 383 |
+
382,true,1.8941894462583668,1.8941894462583668,4.218332727141845
|
| 384 |
+
383,true,1.2778808626016882,1.2778808626016882,3.3212462646627925
|
| 385 |
+
384,true,1.480054795875954,1.480054795875954,3.777936684488486
|
| 386 |
+
385,true,1.8934845743509516,1.8934845743509516,4.613453895083935
|
| 387 |
+
386,true,1.7003360496336661,1.7003360496336661,4.365345618721074
|
| 388 |
+
387,true,1.4469271128664167,1.4469271128664167,3.1230290964554817
|
| 389 |
+
388,true,1.5113472196465378,1.5113472196465378,3.648544829453335
|
| 390 |
+
389,true,1.5686950883401258,1.5686950883401258,4.028431350700472
|
| 391 |
+
390,true,1.7036336347252465,1.7036336347252465,4.227966867251441
|
| 392 |
+
391,true,1.5814976361432738,1.5814976361432738,3.6783022551220106
|
| 393 |
+
392,true,1.5499234635378625,1.5499234635378625,3.651217841421992
|
| 394 |
+
393,true,1.5937259642087942,1.5937259642087942,3.5202730753887175
|
| 395 |
+
394,true,1.8163123139438966,1.8163123139438966,4.215568027224527
|
| 396 |
+
395,true,1.2944491728548218,1.2944491728548218,3.3499974337053
|
| 397 |
+
396,true,1.5708410422660564,1.5708410422660564,3.708484694073777
|
| 398 |
+
397,true,1.5169390640461131,1.5169390640461131,3.6783535594430825
|
| 399 |
+
398,true,1.3570970225944075,1.3570970225944075,3.4078188487724876
|
| 400 |
+
399,true,1.5274482177392728,1.5274482177392728,4.212579218605488
|
| 401 |
+
400,true,1.44405400717944,1.44405400717944,3.1446663928383263
|
| 402 |
+
401,true,1.2241571983830084,1.2241571983830084,3.7872859277955233
|
| 403 |
+
402,true,1.3194787018301852,1.3194787018301852,4.034832891896527
|
| 404 |
+
403,true,1.253364519447087,1.253364519447087,3.0100240806411405
|
| 405 |
+
404,true,1.7684924597456786,1.7684924597456786,3.9665236881171113
|
| 406 |
+
405,true,1.6420646863200268,1.6420646863200268,4.038661291510588
|
| 407 |
+
406,true,1.2494041360320156,1.2494041360320156,3.1862494890526665
|
| 408 |
+
407,true,1.3039157175562313,1.3039157175562313,3.5152490059894164
|
| 409 |
+
408,true,1.3983811053054258,1.3983811053054258,3.6365175300419055
|
| 410 |
+
409,true,1.7894967581705998,1.7894967581705998,4.527672613230798
|
| 411 |
+
410,true,1.6174344360754866,1.6174344360754866,4.143823407993336
|
| 412 |
+
411,true,1.9104325845813581,1.9104325845813581,4.328909400058235
|
| 413 |
+
412,true,1.5052970034886308,1.5052970034886308,3.79517993210204
|
| 414 |
+
413,true,1.6843204663658462,1.6843204663658462,3.7291704756342074
|
| 415 |
+
414,true,1.3711106652413387,1.3711106652413387,3.3614977453781356
|
| 416 |
+
415,true,1.3265883522853787,1.3265883522853787,3.954490868557078
|
| 417 |
+
416,true,1.714784060847229,1.714784060847229,4.093960951396613
|
| 418 |
+
417,true,1.2762124940746433,1.2762124940746433,3.4157915763084183
|
| 419 |
+
418,true,1.5772513514086177,1.5772513514086177,4.090482723350529
|
| 420 |
+
419,true,1.6557017835721812,1.6557017835721812,4.070424503584702
|
| 421 |
+
420,true,1.3803111943084654,1.3803111943084654,2.9027988031175127
|
| 422 |
+
421,true,1.471043510745189,1.471043510745189,3.363027124937417
|
| 423 |
+
422,true,1.9058825359917655,1.9058825359917655,4.541633127442881
|
| 424 |
+
423,true,1.7759746413316475,1.7759746413316475,4.161860534341669
|
| 425 |
+
424,true,1.4970796969341014,1.4970796969341014,3.3457092914191073
|
| 426 |
+
425,true,1.604821914372458,1.604821914372458,4.163129597410047
|
| 427 |
+
426,true,1.3434640465023029,1.3434640465023029,3.503183384020432
|
| 428 |
+
427,true,1.7909283250908867,1.7909283250908867,4.432529711520907
|
| 429 |
+
428,true,1.4305848548281015,1.4305848548281015,4.195801250270497
|
| 430 |
+
429,true,1.6605872449592112,1.6605872449592112,3.763321063454855
|
| 431 |
+
430,true,1.62734775393244,1.62734775393244,4.28413142439014
|
| 432 |
+
431,true,1.6746881091338206,1.6746881091338206,4.256537428696876
|
| 433 |
+
432,true,1.9589219363272359,1.9589219363272359,4.326568498709326
|
| 434 |
+
433,true,1.3108825360670564,1.3108825360670564,4.009813966445045
|
| 435 |
+
434,true,1.779504068348248,1.779504068348248,4.372322060148389
|
| 436 |
+
435,true,1.6038841723346688,1.6038841723346688,3.618920113664016
|
| 437 |
+
436,true,1.678092298868299,1.678092298868299,4.067670743448085
|
| 438 |
+
437,true,1.5746553695993313,1.5746553695993313,4.056648307546258
|
| 439 |
+
438,true,1.9596110339421835,1.9596110339421835,4.415420741474174
|
| 440 |
+
439,true,1.495554959065674,1.495554959065674,3.3940441996234862
|
| 441 |
+
440,true,1.913961770672302,1.913961770672302,4.106746031964286
|
| 442 |
+
441,true,1.461464772827889,1.461464772827889,3.6542318604654933
|
| 443 |
+
442,true,1.635348397554095,1.635348397554095,4.249447678472901
|
| 444 |
+
443,true,1.2950917733519398,1.2950917733519398,3.412594652155775
|
| 445 |
+
444,true,1.635286942730621,1.635286942730621,4.103960566287238
|
| 446 |
+
445,true,1.4686600363315807,1.4686600363315807,3.833666096754398
|
| 447 |
+
446,true,1.7457794936490771,1.7457794936490771,4.140389783324262
|
| 448 |
+
447,true,1.4192035489510444,1.4192035489510444,3.4005922109735436
|
| 449 |
+
448,true,1.4497408750842735,1.4497408750842735,3.573785168875676
|
| 450 |
+
449,true,1.3444367828555284,1.3444367828555284,3.30715059102383
|
| 451 |
+
450,true,2.013158797782876,2.013158797782876,4.781842804774659
|
| 452 |
+
451,true,1.5275066868860012,1.5275066868860012,3.833606172043597
|
| 453 |
+
452,true,1.4574025725300443,1.4574025725300443,3.8680726487954726
|
| 454 |
+
453,true,1.609782806681718,1.609782806681718,3.5168056761934223
|
| 455 |
+
454,true,1.7319480829873648,1.7319480829873648,3.8170177774318796
|
| 456 |
+
455,true,1.89925704317932,1.89925704317932,4.49547905196923
|
| 457 |
+
456,true,1.5736728381265512,1.5736728381265512,4.122117079187223
|
| 458 |
+
457,true,1.4300190066152716,1.4300190066152716,3.388253713848369
|
| 459 |
+
458,true,1.6597934478648404,1.6597934478648404,4.042290607193892
|
| 460 |
+
459,true,1.4056803744462627,1.4056803744462627,3.727881645754546
|
| 461 |
+
460,true,1.328296727289158,1.328296727289158,3.4518036375603307
|
| 462 |
+
461,true,1.4930137915404198,1.4930137915404198,3.5642820409055007
|
| 463 |
+
462,true,1.7109121661225775,1.7109121661225775,4.228514239163537
|
| 464 |
+
463,true,1.7859262258814865,1.7859262258814865,4.180430220841022
|
| 465 |
+
464,true,1.4534157795067315,1.4534157795067315,3.1388569753476006
|
| 466 |
+
465,true,1.413941898026954,1.413941898026954,3.4979545049556617
|
| 467 |
+
466,true,1.4053085900716085,1.4053085900716085,3.803703673991416
|
| 468 |
+
467,true,1.5243752203796765,1.5243752203796765,3.568024366328497
|
| 469 |
+
468,true,1.6494719034563352,1.6494719034563352,3.9820391957635413
|
| 470 |
+
469,true,1.7363304779194533,1.7363304779194533,4.693771323526073
|
| 471 |
+
470,true,1.535983838118352,1.535983838118352,3.664451845996632
|
| 472 |
+
471,true,1.7322816288886287,1.7322816288886287,4.041422221416481
|
| 473 |
+
472,true,1.6764783552529234,1.6764783552529234,3.7427580483090086
|
| 474 |
+
473,true,1.4981753892355487,1.4981753892355487,3.3896487499896684
|
| 475 |
+
474,true,1.5925453685628301,1.5925453685628301,4.351462489850207
|
| 476 |
+
475,true,1.3535346170154001,1.3535346170154001,3.357198167835566
|
| 477 |
+
476,true,1.3908940911453165,1.3908940911453165,3.4176226881029894
|
| 478 |
+
477,true,1.510520829845718,1.510520829845718,4.1248061864089065
|
| 479 |
+
478,true,1.4412958733106482,1.4412958733106482,4.057489956652196
|
| 480 |
+
479,true,2.1746314407306135,2.1746314407306135,4.6475629777536716
|
| 481 |
+
480,true,1.761378384913052,1.761378384913052,4.063896525615353
|
| 482 |
+
481,true,1.4438962242706141,1.4438962242706141,3.3074847768564855
|
| 483 |
+
482,true,1.8268746756989522,1.8268746756989522,3.957924449654829
|
| 484 |
+
483,true,1.6500362777622957,1.6500362777622957,3.664166849827382
|
| 485 |
+
484,true,1.4531725996615523,1.4531725996615523,3.737860985941908
|
| 486 |
+
485,true,1.2017246881990924,1.2017246881990924,4.044780875119455
|
| 487 |
+
486,true,1.6800525678303817,1.6800525678303817,4.249595529311262
|
| 488 |
+
487,true,1.2499329318313734,1.2499329318313734,3.7703529900078094
|
| 489 |
+
488,true,1.3022251030987415,1.3022251030987415,3.5549949726639984
|
| 490 |
+
489,true,1.6881535503288112,1.6881535503288112,4.134054694583777
|
| 491 |
+
490,true,1.7298195286626996,1.7298195286626996,3.7209786353876897
|
| 492 |
+
491,true,1.6116560185009312,1.6116560185009312,3.8661236341403344
|
| 493 |
+
492,true,1.6560390955768471,1.6560390955768471,3.764657511877344
|
| 494 |
+
493,true,1.4139685065887613,1.4139685065887613,4.327030500897412
|
| 495 |
+
494,true,1.5392749522906342,1.5392749522906342,3.561896668018823
|
| 496 |
+
495,true,1.6070136235872774,1.6070136235872774,3.920521288603782
|
| 497 |
+
496,true,1.488061167974995,1.488061167974995,4.03132040145444
|
| 498 |
+
497,true,1.7973129429053742,1.7973129429053742,3.989903789473352
|
| 499 |
+
498,true,1.7055820694713124,1.7055820694713124,4.238191392423554
|
| 500 |
+
499,true,1.8824253602169427,1.8824253602169427,4.050748036485077
|
| 501 |
+
500,false,1.3208755672750174,1.3208755672750174,2.769966467842186
|
splits/split_diagnostics.png
ADDED
|
Git LFS Details
|
splits/visualize_splits.py
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Create AhmedML split diagnostic plots."""
|
| 2 |
+
|
| 3 |
+
from __future__ import annotations
|
| 4 |
+
|
| 5 |
+
import csv
|
| 6 |
+
import json
|
| 7 |
+
from pathlib import Path
|
| 8 |
+
|
| 9 |
+
import matplotlib.pyplot as plt
|
| 10 |
+
from matplotlib.lines import Line2D
|
| 11 |
+
import numpy as np
|
| 12 |
+
|
| 13 |
+
from generate_splits import load_force_mom, run_id
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
SCRIPT_DIR = Path(__file__).resolve().parent
|
| 17 |
+
PACKAGE_ROOT = SCRIPT_DIR
|
| 18 |
+
DATA_DIR = SCRIPT_DIR
|
| 19 |
+
DOCS_DIR = SCRIPT_DIR
|
| 20 |
+
SPLITS_DIR = SCRIPT_DIR
|
| 21 |
+
MANIFEST = SPLITS_DIR / "manifest.json"
|
| 22 |
+
CHAMFER = DATA_DIR / "chamfer_metrics.csv"
|
| 23 |
+
IMAGE = DATA_DIR / "image_metrics.csv"
|
| 24 |
+
OUT = DOCS_DIR / "split_diagnostics.png"
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
def _ids(manifest: dict[str, list[str]], key: str) -> set[int]:
|
| 28 |
+
return {run_id(case_id) for case_id in manifest[key]}
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
def _load_scores(path: Path, column: str) -> dict[int, float]:
|
| 32 |
+
with path.open(encoding="utf-8", newline="") as f:
|
| 33 |
+
return {int(row["run"]): float(row[column]) for row in csv.DictReader(f) if row.get(column, "") != ""}
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
def _arrays(values: dict[int, float]) -> tuple[np.ndarray, np.ndarray]:
|
| 37 |
+
runs = np.asarray(sorted(values))
|
| 38 |
+
arr = np.asarray([values[int(run)] for run in runs], dtype=float)
|
| 39 |
+
return runs, arr
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
def _plot_partitioned(
|
| 43 |
+
ax,
|
| 44 |
+
runs: np.ndarray,
|
| 45 |
+
values: np.ndarray,
|
| 46 |
+
train_ids: set[int],
|
| 47 |
+
val_ids: set[int],
|
| 48 |
+
test_ids: set[int],
|
| 49 |
+
*,
|
| 50 |
+
title: str,
|
| 51 |
+
ylabel: str,
|
| 52 |
+
colors: dict[str, str],
|
| 53 |
+
) -> None:
|
| 54 |
+
train = np.asarray([int(run) in train_ids for run in runs])
|
| 55 |
+
val = np.asarray([int(run) in val_ids for run in runs])
|
| 56 |
+
test = np.asarray([int(run) in test_ids for run in runs])
|
| 57 |
+
ax.scatter(runs[train], values[train], s=30, color=colors["train"], linewidth=0, alpha=0.58)
|
| 58 |
+
ax.scatter(runs[val], values[val], s=46, color=colors["val"], linewidth=0, alpha=0.95)
|
| 59 |
+
ax.scatter(runs[test], values[test], s=46, color=colors["test"], linewidth=0, alpha=0.95)
|
| 60 |
+
ax.set_title(title)
|
| 61 |
+
ax.set_xlabel("run")
|
| 62 |
+
ax.set_ylabel(ylabel)
|
| 63 |
+
ax.grid(True, color="#e1e6eb", lw=0.7)
|
| 64 |
+
ax.spines["top"].set_visible(False)
|
| 65 |
+
ax.spines["right"].set_visible(False)
|
| 66 |
+
|
| 67 |
+
|
| 68 |
+
def main() -> None:
|
| 69 |
+
manifest = json.loads(MANIFEST.read_text(encoding="utf-8"))
|
| 70 |
+
force_records, _ = load_force_mom()
|
| 71 |
+
geometry_scores = _load_scores(CHAMFER, "ood_score")
|
| 72 |
+
image_scores = _load_scores(IMAGE, "image_wake_score")
|
| 73 |
+
|
| 74 |
+
runs, cd = _arrays({rid: values["cd"] for rid, values in force_records.items()})
|
| 75 |
+
_, geometry = _arrays(geometry_scores)
|
| 76 |
+
_, image_wake = _arrays(image_scores)
|
| 77 |
+
|
| 78 |
+
colors = {"train": "#cfd5dc", "val": "#c28f22", "test": "#2f8f61"}
|
| 79 |
+
fig, axes = plt.subplots(2, 3, figsize=(14.0, 8.0), constrained_layout=True)
|
| 80 |
+
panels = [
|
| 81 |
+
("full", cd, "Full random baseline", "Cd"),
|
| 82 |
+
("high_drag", cd, "High-drag holdout", "Cd"),
|
| 83 |
+
("low_drag", cd, "Low-drag holdout", "Cd"),
|
| 84 |
+
("geometry", geometry, "STL-Chamfer geometry holdout", "mean 10-NN Chamfer"),
|
| 85 |
+
("image_wake", image_wake, "Image wake holdout", "UxMean image wake score"),
|
| 86 |
+
("image_wake", cd, "Image wake holdout on Cd", "Cd"),
|
| 87 |
+
]
|
| 88 |
+
for ax, (prefix, values, title, ylabel) in zip(axes.flat, panels):
|
| 89 |
+
_plot_partitioned(
|
| 90 |
+
ax,
|
| 91 |
+
runs,
|
| 92 |
+
values,
|
| 93 |
+
_ids(manifest, f"{prefix}_train"),
|
| 94 |
+
_ids(manifest, f"{prefix}_val"),
|
| 95 |
+
_ids(manifest, f"{prefix}_test"),
|
| 96 |
+
title=title,
|
| 97 |
+
ylabel=ylabel,
|
| 98 |
+
colors=colors,
|
| 99 |
+
)
|
| 100 |
+
legend_handles = [
|
| 101 |
+
Line2D([0], [0], marker="o", color="none", markerfacecolor=colors["train"], markeredgewidth=0, markersize=8, label="train"),
|
| 102 |
+
Line2D([0], [0], marker="o", color="none", markerfacecolor=colors["val"], markeredgewidth=0, markersize=8, label="val"),
|
| 103 |
+
Line2D([0], [0], marker="o", color="none", markerfacecolor=colors["test"], markeredgewidth=0, markersize=8, label="test"),
|
| 104 |
+
]
|
| 105 |
+
fig.legend(handles=legend_handles, frameon=False, loc="upper center", ncol=3, bbox_to_anchor=(0.5, 0.99))
|
| 106 |
+
fig.suptitle("AhmedML split diagnostics", fontsize=13)
|
| 107 |
+
DOCS_DIR.mkdir(parents=True, exist_ok=True)
|
| 108 |
+
fig.savefig(OUT, dpi=180)
|
| 109 |
+
print(f"Wrote {OUT}")
|
| 110 |
+
|
| 111 |
+
|
| 112 |
+
if __name__ == "__main__":
|
| 113 |
+
main()
|
splits/wake_score_examples.png
ADDED
|
Git LFS Details
|