Datasets:
Add FluXray 1.0 (label-exact synthetic radiographs) under FluXray/
Browse files- .gitattributes +3 -0
- FluXray/LICENSE +2 -0
- FluXray/README.md +65 -0
- FluXray/thunder_dbs/1.0/data.mdb +3 -0
- FluXray/thunder_dbs/1.0/filter_dropped.csv +0 -0
- FluXray/thunder_dbs/1.0/filter_kept.csv +3 -0
- FluXray/thunder_dbs/1.0/filter_thresholds.csv +91 -0
- FluXray/thunder_dbs/1.0/lock.mdb +0 -0
- FluXray/thunder_dbs/1.0/protocol.yml +81 -0
- FluXray/thunder_dbs/1.0/samples.csv +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
FluXray/thunder_dbs/1.0/data.mdb filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
FluXray/thunder_dbs/1.0/filter_kept.csv filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
FluXray/thunder_dbs/1.0/samples.csv filter=lfs diff=lfs merge=lfs -text
|
FluXray/LICENSE
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
CC BY-NC 4.0 (https://creativecommons.org/licenses/by-nc/4.0/)
|
| 2 |
+
Derived from MOOSE / ENHANCE-PET 1.6k; per-sample licenses in samples.csv.
|
FluXray/README.md
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
pretty_name: FluXray
|
| 4 |
+
tags: [medical, x-ray, segmentation, synthetic]
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# FluXray: label-exact synthetic radiographs
|
| 8 |
+
|
| 9 |
+
138063 generatively edited digitally reconstructed radiographs with exact,
|
| 10 |
+
overlapping segmentation masks for 63 structures, rendered from the
|
| 11 |
+
1597 annotated whole-body CTs of the MOOSE / ENHANCE-PET 1.6k
|
| 12 |
+
dataset and restyled with a language-conditioned image editor (FLUX.2 klein), then
|
| 13 |
+
quality-filtered (see the FleXray paper). Splits: {'train': 124198, 'val': 13865, 'test': 0}.
|
| 14 |
+
|
| 15 |
+
## Layout
|
| 16 |
+
|
| 17 |
+
`FluXray/thunder_dbs/1.0/` is a ThunderDB (LMDB) that the `flexray` package
|
| 18 |
+
reads directly; point `GENERATED_DATAPATH` at the root of the `flexray-data` download
|
| 19 |
+
(the directory containing `FluXray/`):
|
| 20 |
+
|
| 21 |
+
```bash
|
| 22 |
+
pip install flexray
|
| 23 |
+
export GENERATED_DATAPATH=/path/to/flexray-data
|
| 24 |
+
# training config
|
| 25 |
+
# data:
|
| 26 |
+
# Xray:
|
| 27 |
+
# FluXray: {version: "1.0"}
|
| 28 |
+
```
|
| 29 |
+
|
| 30 |
+
| File | Contents |
|
| 31 |
+
|---|---|
|
| 32 |
+
| `data.mdb` | The LMDB database. One entry per sample keyed `<subject>_<pose_id>`, holding `img` (float16, 256 x 256, intensities in [0, 1]) and `seg` (uint8, 63 x 256 x 256 binary masks, one channel per structure; channels may overlap). Index entries: `_samples` (ordered keys), `_subjects`, `_splits` (`train`/`val`/`test` key lists), `_metadata` (per-sample pose, split, MOOSE subject, source site, license) and `_attrs` (build provenance, `label_names` in channel order). Read with `thunderpack.ThunderDB.open(path, "r")` or through `flexray`. |
|
| 33 |
+
| `lock.mdb` | LMDB lock file; recreated automatically and safe to ignore. |
|
| 34 |
+
| `protocol.yml` | The 63 label names in channel order (`label_names`), the mask thresholds used to binarize the rendered soft masks, and the build recipe. |
|
| 35 |
+
| `samples.csv` | One row per sample: `sample_id`, MOOSE `subject_id`, `split`, `pose_id`, camera position `x`/`y`/`z` (mm) and rotation `alpha_deg`/`beta_deg`/`gamma_deg`, `visible_label_count`, `source_site`, `license`. |
|
| 36 |
+
| `filter_kept.csv`, `filter_dropped.csv` | Quality-control scores for the renders that passed and failed the filter. `raw` and `flux` are the soft Dice of a reference segmentation model against the exact labels on the unedited and edited render; `soft_dice_delta_flux_minus_raw` is their difference. Per `pose_id`, `median_delta` and `q_upper_delta` give the median and 0.98 quantile of the delta, `lower_bound = 2 * median - q_upper`, and `keep = delta >= lower_bound`. Pose columns mirror `samples.csv`; `global_index` is build bookkeeping. |
|
| 37 |
+
| `filter_thresholds.csv` | The per-pose filter statistics behind those decisions: delta mean/median/std/min/max before and after filtering, `n_before`, `n_after`, `n_dropped`, `frac_dropped` and the applied `lower_bound`. |
|
| 38 |
+
| `../../README.md`, `../../LICENSE` | This card and the license summary (in `FluXray/`). |
|
| 39 |
+
|
| 40 |
+
## License
|
| 41 |
+
|
| 42 |
+
CC BY-NC 4.0 for the collection as a whole. Each image inherits the license of its
|
| 43 |
+
MOOSE source site (`license` column in `samples.csv` and per-sample metadata):
|
| 44 |
+
|
| 45 |
+
- CC-BY-4.0: 50282 samples
|
| 46 |
+
- CC-BY-NC-4.0: 87781 samples
|
| 47 |
+
|
| 48 |
+
License text: https://creativecommons.org/licenses/by-nc/4.0/ (CC BY-NC 4.0) and
|
| 49 |
+
https://creativecommons.org/licenses/by/4.0/ (CC BY 4.0). Changes from the source: CT volumes
|
| 50 |
+
were projected to DRRs, restyled with FLUX.2 klein, quality-filtered, and paired with
|
| 51 |
+
projected masks; no source CT or PET data is included.
|
| 52 |
+
|
| 53 |
+
## Attribution
|
| 54 |
+
|
| 55 |
+
Please cite the FleXray paper and the ENHANCE.PET 1.6k dataset:
|
| 56 |
+
Ferrara D. et al. (2026). Sharing a whole-/total-body [18F]FDG-PET/CT dataset with
|
| 57 |
+
CT-derived segmentations: an ENHANCE.PET initiative. *Scientific Data*.
|
| 58 |
+
ENHANCE.PET 1.6k - Whole-/Total-Body [18F]FDG-PET/CT with CT-Derived Segmentations was
|
| 59 |
+
accessed on 2026-02-16 from https://registry.opendata.aws/enhance-pet-1-6k.
|
| 60 |
+
|
| 61 |
+
The CC BY-NC 4.0 images derive from the AutoPET Challenge subset of ENHANCE.PET 1.6k,
|
| 62 |
+
which additionally requires citing the source collection:
|
| 63 |
+
Gatidis, S., Kuestner, T. (2022). A whole-body FDG-PET/CT dataset with manually annotated
|
| 64 |
+
tumor lesions (FDG-PET-CT-Lesions) (Version 2) [Dataset]. The Cancer Imaging Archive.
|
| 65 |
+
https://doi.org/10.7937/gkr0-xv29
|
FluXray/thunder_dbs/1.0/data.mdb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c315ee97acc13ecc180ac5df3e43d73d58c11d7b29eab3fa1c309eedd2528985
|
| 3 |
+
size 18798542848
|
FluXray/thunder_dbs/1.0/filter_dropped.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
FluXray/thunder_dbs/1.0/filter_kept.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c280f0193f13de74a865c85b3e7e1481d9b76c38c29b5f3d22e2cef166741a1d
|
| 3 |
+
size 41431494
|
FluXray/thunder_dbs/1.0/filter_thresholds.csv
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pose_id,n_before,mean_before,median_before,std_before,min_before,max_before,q_upper_before,n_after,mean_after,median_after,std_after,min_after,max_after,n_dropped,frac_dropped,lower_bound,upper_quantile,score_column
|
| 2 |
+
x0_y1150_z0_alpha0_beta0_gamma0,1597,-0.001284081383877122,-0.0022284388542176126,0.008845946796576307,-0.07963515818119049,0.06627230346202853,0.02255711555480956,1587,-0.0010164452842292943,-0.0022032856941222867,0.008095428770775086,-0.02700713276863098,0.06627230346202853,10,0.006261740763932373,-0.027013993263244784,0.98,soft_dice_delta_flux_minus_raw
|
| 3 |
+
x0_y1150_z0_alpha45_beta0_gamma0,1597,-0.0031639683569455496,-0.002648353576660184,0.005146769780272587,-0.06961818039417267,0.06911280751228327,0.0038279092311859397,1502,-0.002416203262286879,-0.0024747475981712064,0.0035512681083628306,-0.009093061089515603,0.06911280751228327,95,0.059486537257357544,-0.009124616384506307,0.98,soft_dice_delta_flux_minus_raw
|
| 4 |
+
x0_y1150_z0_alpha90_beta0_gamma0,1597,-0.0014688585539049243,-0.0012581348419190008,0.007330791629323022,-0.08981050550937658,0.06222668290138239,0.011023554801940805,1555,-0.0008481520740165574,-0.0011045783758162897,0.005717683125280926,-0.013476401567459106,0.06222668290138239,42,0.026299311208515967,-0.013539824485778807,0.98,soft_dice_delta_flux_minus_raw
|
| 5 |
+
x0_y1150_z0_alphaneg45_beta0_gamma0,1597,-0.0035476340966517275,-0.0031030178070068914,0.005030668401418939,-0.041588798165321295,0.024462759494781494,0.0060268902778625715,1530,-0.002894873907363492,-0.002982780337333693,0.003757656741594682,-0.01210515201091758,0.024462759494781494,67,0.041953663118346904,-0.012232925891876354,0.98,soft_dice_delta_flux_minus_raw
|
| 6 |
+
x0_y1150_z0_alphaneg90_beta0_gamma0,1597,-0.001995392297683243,-0.0015352368354797918,0.005652924777167943,-0.06595578789710999,0.035908281803131104,0.00735480904579156,1536,-0.0013337094375553227,-0.0013667270541190962,0.0038854303706113667,-0.010412812232971275,0.035908281803131104,61,0.038196618659987476,-0.010425282716751144,0.98,soft_dice_delta_flux_minus_raw
|
| 7 |
+
x0_y1150_z100_alpha0_beta0_gamma0,1597,-0.0027104316975597132,-0.002586930990219116,0.003931975242230096,-0.027312517166137695,0.029026567935943604,0.006203722357749968,1564,-0.002466405648976334,-0.0025291442871093472,0.0035553136816435372,-0.01128031313419342,0.029026567935943604,33,0.020663744520976832,-0.0113775843381882,0.98,soft_dice_delta_flux_minus_raw
|
| 8 |
+
x0_y1150_z100_alpha45_beta0_gamma0,1597,-0.0033102535135908725,-0.002524465322494507,0.004780915896217122,-0.04662486910820007,0.0390040278434754,0.002791464924812302,1457,-0.0022806948640204153,-0.0023027956485748013,0.0026279047406534816,-0.007784679532051086,0.0390040278434754,140,0.08766437069505323,-0.007840395569801316,0.98,soft_dice_delta_flux_minus_raw
|
| 9 |
+
x0_y1150_z100_alpha90_beta0_gamma0,1597,-0.0006997434138953132,-0.0007379502058030007,0.004191962978733898,-0.03317558765411377,0.036374181509018,0.010368202924728434,1579,-0.0005121104716499678,-0.0007021874189376831,0.0037781471521793775,-0.011808574199676514,0.036374181509018,18,0.011271133375078271,-0.011844103336334436,0.98,soft_dice_delta_flux_minus_raw
|
| 10 |
+
x0_y1150_z100_alphaneg45_beta0_gamma0,1597,-0.00322870588724361,-0.0026521384716034213,0.00514997458517543,-0.04948562383651739,0.033231645822525024,0.005374243259429919,1513,-0.002452430775129315,-0.0024685561656951904,0.0036809210249470954,-0.010497272014617892,0.033231645822525024,84,0.052598622417031934,-0.010678520202636762,0.98,soft_dice_delta_flux_minus_raw
|
| 11 |
+
x0_y1150_z100_alphaneg90_beta0_gamma0,1597,-0.0012544643602747448,-0.0010152608156203946,0.0035399538509431586,-0.03808106482028961,0.020614102482795688,0.005004501938819888,1542,-0.0008491742027254283,-0.0009464845061301908,0.002580089924980975,-0.00696699321269989,0.020614102482795688,55,0.034439574201628055,-0.007035023570060677,0.98,soft_dice_delta_flux_minus_raw
|
| 12 |
+
x0_y1150_z200_alpha0_beta0_gamma0,1597,-0.0037180305684292093,-0.0031677186489104947,0.00527618310875862,-0.09108377993106842,0.04985204339027399,0.005089222788810638,1525,-0.0030309508765330073,-0.003031075000762995,0.0036702865915201285,-0.01135221123695379,0.04985204339027399,72,0.045084533500313086,-0.011424660086631629,0.98,soft_dice_delta_flux_minus_raw
|
| 13 |
+
x0_y1150_z200_alpha45_beta0_gamma0,1597,-0.0038223109005687374,-0.0027714818716049194,0.005233952047334472,-0.05132386088371277,0.023943334817886297,0.004596619009971665,1466,-0.0026959266315378237,-0.002531960606575012,0.0032110443705585146,-0.010136604309082003,0.023943334817886297,131,0.08202880400751408,-0.010139582753181504,0.98,soft_dice_delta_flux_minus_raw
|
| 14 |
+
x0_y1150_z200_alpha90_beta0_gamma0,1597,-0.0009888895485799763,-0.0006023943424225131,0.0048836347414818945,-0.04857093095779419,0.0391121506690979,0.008548872470855699,1539,-0.0003925497226702696,-0.0005176663398742953,0.0035962868450058385,-0.009534940123557989,0.0391121506690979,58,0.036318096430807766,-0.009753661155700725,0.98,soft_dice_delta_flux_minus_raw
|
| 15 |
+
x0_y1150_z200_alphaneg45_beta0_gamma0,1597,-0.003142812211735963,-0.0024796277284621915,0.005032071855487841,-0.0395063906908035,0.04056373238563532,0.0067300462722777975,1512,-0.00237302793554528,-0.0023215562105178417,0.003680999689704505,-0.011652052402496393,0.04056373238563532,85,0.053224796493425174,-0.01168930172920218,0.98,soft_dice_delta_flux_minus_raw
|
| 16 |
+
x0_y1150_z200_alphaneg90_beta0_gamma0,1597,-0.0013981653924427266,-0.0009620487689971924,0.003716267840083068,-0.03413836658000949,0.019515335559845,0.005391365289688112,1526,-0.0008571338430925878,-0.0008273124694823941,0.0025120235813127856,-0.00725248456001279,0.019515335559845,71,0.044458359423919847,-0.007315462827682497,0.98,soft_dice_delta_flux_minus_raw
|
| 17 |
+
x0_y1150_zneg100_alpha0_beta0_gamma0,1597,-0.003906208627583761,-0.003123804926872281,0.006653032457773865,-0.088675856590271,0.03905120491981509,0.007297168970108082,1507,-0.0028103560940983593,-0.002910658717155401,0.004199553248035988,-0.013488292694091797,0.03905120491981509,90,0.056355666875391355,-0.013544778823852644,0.98,soft_dice_delta_flux_minus_raw
|
| 18 |
+
x0_y1150_zneg100_alpha45_beta0_gamma0,1597,-0.004275889184300275,-0.003677293658256503,0.007053088018858663,-0.0778833925724029,0.031728148460388184,0.00906268179416662,1520,-0.0032600345188065587,-0.0035393983125686923,0.005090410704110605,-0.016195535659790095,0.031728148460388184,77,0.048215403882279274,-0.016417269110679623,0.98,soft_dice_delta_flux_minus_raw
|
| 19 |
+
x0_y1150_zneg100_alpha90_beta0_gamma0,1597,-0.0015706614396985635,-0.0008724331855773371,0.009639058543462304,-0.07055708765983579,0.08484423160552984,0.020441386699676538,1556,-0.0008280331168352468,-0.0007526427507401068,0.008497181056546533,-0.021908998489379883,0.08484423160552984,41,0.02567313713212273,-0.022186253070831212,0.98,soft_dice_delta_flux_minus_raw
|
| 20 |
+
x0_y1150_zneg100_alphaneg45_beta0_gamma0,1597,-0.004836349167820806,-0.003638848662376404,0.008290965944938757,-0.07947732508182528,0.03956717252731329,0.009365592002868673,1500,-0.003366621216138204,-0.0033648461103439053,0.0052731463598265724,-0.016626715660095215,0.03956717252731329,97,0.06073888541014402,-0.01664328932762148,0.98,soft_dice_delta_flux_minus_raw
|
| 21 |
+
x0_y1150_zneg100_alphaneg90_beta0_gamma0,1597,-0.0019747658061772203,-0.0014198124408721924,0.008368415120771761,-0.08933758735656738,0.07883355021476751,0.014025018215179435,1553,-0.0011900344051550232,-0.0013389587402342917,0.006454344425128701,-0.016409501433372498,0.07883355021476751,44,0.027551659361302442,-0.016864643096923822,0.98,soft_dice_delta_flux_minus_raw
|
| 22 |
+
x0_y1150_zneg200_alpha0_beta0_gamma0,1597,-0.0020041814961505055,-0.001933455467224121,0.0067243844780869155,-0.05517688393592829,0.03287595510482788,0.013782777190208392,1573,-0.0016700463003590826,-0.0018616020679473877,0.0060910090515095775,-0.01731500029563901,0.03287595510482788,24,0.015028177833437696,-0.017649688124656636,0.98,soft_dice_delta_flux_minus_raw
|
| 23 |
+
x0_y1150_zneg200_alpha45_beta0_gamma0,1597,-0.003457756781846789,-0.0031265467405318936,0.007015291251867953,-0.0968109071254731,0.052397191524505615,0.011377725601196336,1569,-0.00302561521150262,-0.002989262342453003,0.005988137153291847,-0.017329186201095526,0.052397191524505615,28,0.017532874139010644,-0.01763081908226012,0.98,soft_dice_delta_flux_minus_raw
|
| 24 |
+
x0_y1150_zneg200_alpha90_beta0_gamma0,1597,0.003257752845790436,0.0008350908756255548,0.011885983078105818,-0.033295065164565985,0.17568841576576233,0.03703721165657036,1597,0.003257752845790436,0.0008350908756255548,0.011885983078105818,-0.033295065164565985,0.17568841576576233,0,0.0,-0.03536702990531925,0.98,soft_dice_delta_flux_minus_raw
|
| 25 |
+
x0_y1150_zneg200_alphaneg45_beta0_gamma0,1597,-0.0026184039735092403,-0.002528056502342224,0.00913680422593959,-0.051829993724823,0.045961588621139526,0.01934265136718744,1566,-0.0020384932196155516,-0.002376049757003798,0.008178581523626676,-0.023488551378250178,0.045961588621139526,31,0.019411396368190358,-0.024398764371871887,0.98,soft_dice_delta_flux_minus_raw
|
| 26 |
+
x0_y1150_zneg200_alphaneg90_beta0_gamma0,1597,-0.00014510575353016985,-0.0008939206600189209,0.007779442985500329,-0.08673250675201419,0.06579640507698059,0.019886547327041582,1591,4.019443528746525e-05,-0.000878751277923584,0.007095825679263207,-0.017790585756301935,0.06579640507698059,6,0.003757044458359424,-0.021674388647079424,0.98,soft_dice_delta_flux_minus_raw
|
| 27 |
+
x0_y1150_zneg300_alpha0_beta0_gamma0,1597,5.983683509832503e-05,-0.00019291043281560727,0.0062983173728748424,-0.05610406398773199,0.054579690098762484,0.013209526538848854,1577,0.00041546540295843263,-0.0001563429832457941,0.005266508296925277,-0.013561218976974487,0.054579690098762484,20,0.012523481527864746,-0.013595347404480068,0.98,soft_dice_delta_flux_minus_raw
|
| 28 |
+
x0_y1150_zneg300_alpha45_beta0_gamma0,1597,-0.002508040118680272,-0.0019998401403427957,0.010079097464356288,-0.1329518854618072,0.1396556794643402,0.01558713078498839,1556,-0.0018182065922067833,-0.0018090307712555487,0.008770514191077319,-0.01947924494743347,0.1396556794643402,41,0.02567313713212273,-0.019586811065673983,0.98,soft_dice_delta_flux_minus_raw
|
| 29 |
+
x0_y1150_zneg300_alpha90_beta0_gamma0,1597,0.005123049356673162,0.0015011727809906006,0.020553222420275945,-0.06398922204971319,0.2058697640895844,0.0670634049177168,1597,0.005123049356673162,0.0015011727809906006,0.020553222420275945,-0.06398922204971319,0.2058697640895844,0,0.0,-0.0640610593557356,0.98,soft_dice_delta_flux_minus_raw
|
| 30 |
+
x0_y1150_zneg300_alphaneg45_beta0_gamma0,1597,-0.002161672899852937,-0.0015500187873840887,0.011437525704825651,-0.12093004584312439,0.08254334330558777,0.02617354035377499,1575,-0.0015988241207031979,-0.001460433006286621,0.010223451114487737,-0.029108941555023193,0.08254334330558777,22,0.013775829680651221,-0.029273577928543168,0.98,soft_dice_delta_flux_minus_raw
|
| 31 |
+
x0_y1150_zneg300_alphaneg90_beta0_gamma0,1597,0.0017899948130866183,-0.00036916136741643735,0.01648797666439328,-0.07849568128585821,0.16160160303115845,0.047645897865295266,1595,0.0018729569956800413,-0.0003634691238403043,0.016323139810785824,-0.04739588499069211,0.16160160303115845,2,0.0012523481527864746,-0.04838422060012814,0.98,soft_dice_delta_flux_minus_raw
|
| 32 |
+
x0_y650_z0_alpha0_beta0_gamma0,1597,-0.004964195322490292,-0.003762722015380887,0.0075757618250472,-0.1146305054426193,0.038164556026458796,0.004469417333602935,1459,-0.003360286380551791,-0.0033894181251526434,0.003871194555445273,-0.011948123574256897,0.038164556026458796,138,0.08641202254226675,-0.01199486136436471,0.98,soft_dice_delta_flux_minus_raw
|
| 33 |
+
x0_y650_z0_alpha45_beta0_gamma0,1597,-0.005818091388896772,-0.004682034254074097,0.007695270334165602,-0.10014154016971591,0.018885105848312433,0.004995496273040758,1480,-0.004352214232691237,-0.004274368286132785,0.004483073184465801,-0.014348387718200684,0.018885105848312433,117,0.07326236693800876,-0.014359564781188952,0.98,soft_dice_delta_flux_minus_raw
|
| 34 |
+
x0_y650_z0_alpha90_beta0_gamma0,1597,-0.0007055537470744103,4.70280647277832e-05,0.00996096087078106,-0.1683376133441925,0.1345839500427246,0.00997248411178582,1513,0.0005764678681991951,0.000173568725585882,0.006603211925016208,-0.009655147790908869,0.1345839500427246,84,0.052598622417031934,-0.009878427982330254,0.98,soft_dice_delta_flux_minus_raw
|
| 35 |
+
x0_y650_z0_alphaneg45_beta0_gamma0,1597,-0.005610356003549895,-0.0037567019462586004,0.00993139823928762,-0.1212974935770035,0.03989732265472418,0.005497643351554849,1440,-0.0033122813432580893,-0.003321595489978818,0.00433457474551307,-0.012958258390426636,0.03989732265472418,157,0.09830932999373826,-0.013011047244072049,0.98,soft_dice_delta_flux_minus_raw
|
| 36 |
+
x0_y650_z0_alphaneg90_beta0_gamma0,1597,-0.001032443823259028,-0.00043213367462158203,0.009614027582027874,-0.1418967694044114,0.10743224620819097,0.012655402421951274,1540,1.689740396165205e-05,-0.00030027329921719637,0.006361290406389872,-0.012638539075851496,0.10743224620819097,57,0.035691922354414526,-0.013519669771194438,0.98,soft_dice_delta_flux_minus_raw
|
| 37 |
+
x0_y650_z100_alpha0_beta0_gamma0,1597,-0.003979856025896449,-0.003626346588134821,0.011040274743867113,-0.1133533716201783,0.06934256851673132,0.021791145801544235,1568,-0.003132349269806731,-0.0035325065255165516,0.008708146801320028,-0.028963863849639893,0.06934256851673132,29,0.018159048215403883,-0.029043838977813877,0.98,soft_dice_delta_flux_minus_raw
|
| 38 |
+
x0_y650_z100_alpha45_beta0_gamma0,1597,-0.007996741456021049,-0.006759032607078497,0.007653027610244777,-0.07525026798248294,0.012464240193366977,0.0019133472442626654,1461,-0.006289140460917102,-0.006343618035316412,0.004065804919543777,-0.015397131443023682,0.012464240193366977,136,0.08515967438948027,-0.015431412458419658,0.98,soft_dice_delta_flux_minus_raw
|
| 39 |
+
x0_y650_z100_alpha90_beta0_gamma0,1597,-0.006780892395943349,-0.0033927559852600653,0.014909569299554632,-0.1423108726739884,0.011804789304733276,0.003862973451614327,1372,-0.0028974958980570046,-0.0027389079332351407,0.0033780806023332786,-0.010615795850753812,0.011804789304733276,225,0.1408891671884784,-0.010648485422134459,0.98,soft_dice_delta_flux_minus_raw
|
| 40 |
+
x0_y650_z100_alphaneg45_beta0_gamma0,1597,-0.006938064035842325,-0.0055103302001953125,0.00942676027306106,-0.1286226958036423,0.04814533889293679,0.0026840180158615363,1446,-0.004945309108759522,-0.0050058290362357954,0.00430171697844975,-0.013698861002922003,0.04814533889293679,151,0.09455228553537884,-0.01370467841625216,0.98,soft_dice_delta_flux_minus_raw
|
| 41 |
+
x0_y650_z100_alphaneg90_beta0_gamma0,1597,-0.005735057714624411,-0.0031845867633819025,0.01306952158979853,-0.13129620254039773,0.043042987585067694,0.0045088732242584756,1415,-0.0028036705702016713,-0.0026498436927795133,0.0036941310978446077,-0.010848492383956965,0.043042987585067694,182,0.11396368190356919,-0.010878046751022281,0.98,soft_dice_delta_flux_minus_raw
|
| 42 |
+
x0_y650_z200_alpha0_beta0_gamma0,1597,-0.0031418636739813863,-0.002775639295578003,0.004243402585969971,-0.07538819313049311,0.0217678844928742,0.0032181495428084982,1541,-0.002673150834945951,-0.002696052193641607,0.0024729154812658744,-0.008766934275627108,0.0217678844928742,56,0.03506574827802129,-0.008769428133964504,0.98,soft_dice_delta_flux_minus_raw
|
| 43 |
+
x0_y650_z200_alpha45_beta0_gamma0,1597,-0.0036311332525950177,-0.0031802207231521884,0.004127914125849931,-0.07723288238048559,0.020161285996437073,0.0034374523162841704,1544,-0.0031817412930371836,-0.0030892491340637485,0.0026924066625229103,-0.009794965386390714,0.020161285996437073,53,0.03318722604884158,-0.009797893762588546,0.98,soft_dice_delta_flux_minus_raw
|
| 44 |
+
x0_y650_z200_alpha90_beta0_gamma0,1597,-0.001291481177360472,-0.0008076876401900968,0.004740866427477574,-0.0676691383123397,0.025043934583663913,0.00560114860534673,1524,-0.0006608174639580444,-0.0007066279649734497,0.0028905260779780663,-0.007200747728347695,0.025043934583663913,73,0.045710707576706325,-0.007216523885726923,0.98,soft_dice_delta_flux_minus_raw
|
| 45 |
+
x0_y650_z200_alphaneg45_beta0_gamma0,1597,-0.0035305383919027344,-0.0029945820569992065,0.004579299893234461,-0.0857472866773605,0.017250984907150296,0.0038413876295089297,1532,-0.0029587918994632154,-0.0028696879744529447,0.0027190958828998213,-0.009758159518241882,0.017250984907150296,65,0.040701314965560426,-0.009830551743507342,0.98,soft_dice_delta_flux_minus_raw
|
| 46 |
+
x0_y650_z200_alphaneg90_beta0_gamma0,1597,-0.001416033274991556,-0.0008782148361206055,0.004348974487711218,-0.049984261393547086,0.01648567616939539,0.005245071053504906,1515,-0.0007636601873750346,-0.0007542371749877097,0.0024691010875283422,-0.006885662674903897,0.01648567616939539,82,0.05134627426424546,-0.007001500725746117,0.98,soft_dice_delta_flux_minus_raw
|
| 47 |
+
x0_y650_zneg100_alpha0_beta0_gamma0,1597,-0.004022792639512904,-0.0025351047515869973,0.015563871240628966,-0.3518910706043244,0.07370632886886597,0.00920922875404361,1504,-0.0020683920555847135,-0.0022898837924004017,0.006490309867608343,-0.01426386833190918,0.07370632886886597,93,0.05823418910457107,-0.014279438257217605,0.98,soft_dice_delta_flux_minus_raw
|
| 48 |
+
x0_y650_zneg100_alpha45_beta0_gamma0,1597,-0.004116851358243505,-0.0030818581581115168,0.008008415213952083,-0.0858083516359329,0.03266417980194092,0.009046077132225,1492,-0.0027069640782819036,-0.0026217326521873613,0.005395115005316147,-0.015198796987533625,0.03266417980194092,105,0.06574827802128992,-0.015209793448448033,0.98,soft_dice_delta_flux_minus_raw
|
| 49 |
+
x0_y650_zneg100_alpha90_beta0_gamma0,1597,2.8376420289184237e-05,6.735324859619141e-06,0.011646921399098323,-0.12497621774673462,0.13999506831169128,0.013819589614868103,1555,0.0009279341080564391,0.0001398622989654541,0.009395573781942055,-0.01346626877784729,0.13999506831169128,42,0.026299311208515967,-0.013806118965148865,0.98,soft_dice_delta_flux_minus_raw
|
| 50 |
+
x0_y650_zneg100_alphaneg45_beta0_gamma0,1597,-0.003900511989238191,-0.002742737531662043,0.008099343301858247,-0.07735352218151098,0.04426532983779907,0.008879076838493366,1489,-0.0024083099003363315,-0.0023593753576278964,0.005114229401502132,-0.014361381530761663,0.04426532983779907,108,0.06762680025046963,-0.014364551901817452,0.98,soft_dice_delta_flux_minus_raw
|
| 51 |
+
x0_y650_zneg100_alphaneg90_beta0_gamma0,1597,-0.0011792328015072454,-0.0007038712501526434,0.01222751344437704,-0.17347383499145508,0.23567575216293335,0.012355049848556518,1552,-9.6081372004808e-05,-0.0005864351987838468,0.008751625806372005,-0.013726979494094904,0.23567575216293335,45,0.028177833437695678,-0.013762792348861805,0.98,soft_dice_delta_flux_minus_raw
|
| 52 |
+
x0_y650_zneg200_alpha0_beta0_gamma0,1597,-0.0004816445835172647,0.0005012601613998136,0.014942318699542484,-0.3433961123228073,0.06348121166229248,0.009529180526733447,1540,0.0008837351889966373,0.0006330311298370639,0.004107531289923061,-0.008467733860015814,0.06348121166229248,57,0.035691922354414526,-0.00852666020393382,0.98,soft_dice_delta_flux_minus_raw
|
| 53 |
+
x0_y650_zneg200_alpha45_beta0_gamma0,1597,2.4609211727313874e-05,-0.0002060681581498025,0.006274686272250335,-0.0395790487527847,0.09088745713233948,0.012165698409080475,1574,0.0002768326413449668,-0.00010886788368225098,0.005920322291649152,-0.012439742684364291,0.09088745713233948,23,0.014402003757044458,-0.01257783472538008,0.98,soft_dice_delta_flux_minus_raw
|
| 54 |
+
x0_y650_zneg200_alpha90_beta0_gamma0,1597,-0.0001442749088230033,-0.0003146231174468994,0.008404864291118742,-0.0573298335075379,0.07124397158622747,0.01569342136383055,1561,0.0003976389087980023,-0.00014123320579528809,0.007587216643450361,-0.0161468088626861,0.07124397158622747,36,0.022542266750156543,-0.01632266759872435,0.98,soft_dice_delta_flux_minus_raw
|
| 55 |
+
x0_y650_zneg200_alphaneg45_beta0_gamma0,1597,0.0011548378837802826,0.0008169412612915039,0.006360928736492968,-0.08305385708808899,0.04034295678138741,0.014760985374450699,1580,0.001427161486088476,0.000857934355735751,0.005545836510379861,-0.012980967760086087,0.04034295678138741,17,0.010644959298685034,-0.01312710285186769,0.98,soft_dice_delta_flux_minus_raw
|
| 56 |
+
x0_y650_zneg200_alphaneg90_beta0_gamma0,1597,-0.000955070593466067,-0.001010209321975708,0.010428615636743537,-0.11018826067447662,0.10933586955070501,0.017083166837692232,1566,-0.00024629650711251806,-0.00087074935436246,0.008440390949469826,-0.01849365234375,0.10933586955070501,31,0.019411396368190358,-0.019103585481643648,0.98,soft_dice_delta_flux_minus_raw
|
| 57 |
+
x0_y650_zneg300_alpha0_beta0_gamma0,1597,-6.992343297658608e-05,0.00013494491577142886,0.005981966935401169,-0.1971675306558609,0.026088118553161566,0.004785053133964511,1564,0.0003261730703703887,0.00018113851547243986,0.0020497013031399954,-0.004470169544219971,0.026088118553161566,33,0.020663744520976832,-0.004515163302421654,0.98,soft_dice_delta_flux_minus_raw
|
| 58 |
+
x0_y650_zneg300_alpha45_beta0_gamma0,1597,-0.0003383523768832251,-0.00012156367301940918,0.004373687625967922,-0.1304878145456314,0.03533531725406652,0.005046358108520456,1546,2.1065735917196633e-05,-4.941225051877107e-05,0.002422489116827234,-0.005197614431381198,0.03533531725406652,51,0.031934877896055106,-0.005289485454559275,0.98,soft_dice_delta_flux_minus_raw
|
| 59 |
+
x0_y650_zneg300_alpha90_beta0_gamma0,1597,6.132064831577718e-05,-0.0011402666568756104,0.016278897979300756,-0.10279878973960871,0.2561911344528199,0.025764690637588475,1590,0.0002670680576900254,-0.001111671328544589,0.01593497738853425,-0.026527434587478638,0.2561911344528199,7,0.004383218534752661,-0.028045223951339696,0.98,soft_dice_delta_flux_minus_raw
|
| 60 |
+
x0_y650_zneg300_alphaneg45_beta0_gamma0,1597,0.00026931239055258654,0.00021892786026000977,0.0035041754004882905,-0.02783843874931341,0.07966873049736023,0.004677199125289954,1557,0.0004908894413009097,0.00025847554206848145,0.0031045203051606905,-0.004178524017333984,0.07966873049736023,40,0.025046963055729492,-0.004239343404769934,0.98,soft_dice_delta_flux_minus_raw
|
| 61 |
+
x0_y650_zneg300_alphaneg90_beta0_gamma0,1597,0.0007829154767539272,-0.0004808008670806885,0.015042724141098172,-0.16898134350776672,0.22687864303588867,0.032582009434699966,1590,0.0010680582210327865,-0.0004761219024658342,0.01415435659827451,-0.031028509140014593,0.22687864303588867,7,0.004383218534752661,-0.03354361116886134,0.98,soft_dice_delta_flux_minus_raw
|
| 62 |
+
x0_y900_z0_alpha0_beta0_gamma0,1597,-0.004044149437208958,-0.0035026371479034146,0.008917077148699288,-0.1009187400341034,0.06883610785007471,0.009504444599151524,1541,-0.0029606898300141814,-0.003331407904624911,0.005898113317899113,-0.016508847475051908,0.06883610785007471,56,0.03506574827802129,-0.016509718894958354,0.98,soft_dice_delta_flux_minus_raw
|
| 63 |
+
x0_y900_z0_alpha45_beta0_gamma0,1597,-0.005408298100578689,-0.004312336444854709,0.006592823182825727,-0.08776777982711789,0.03590202331542969,0.0032871192693710322,1443,-0.003877854370979989,-0.003879860043525696,0.003662826950392716,-0.011859551072120583,0.03590202331542969,154,0.09643080776455855,-0.01191179215908045,0.98,soft_dice_delta_flux_minus_raw
|
| 64 |
+
x0_y900_z0_alpha90_beta0_gamma0,1597,-0.0038027068787839322,-0.0024527609348297674,0.006955851233052611,-0.04429645836353299,0.0381016731262207,0.007368284463882433,1441,-0.002231979570729629,-0.0019154846668242853,0.004992413905131952,-0.0122719407081604,0.0381016731262207,156,0.09768315591734503,-0.012273806333541967,0.98,soft_dice_delta_flux_minus_raw
|
| 65 |
+
x0_y900_z0_alphaneg45_beta0_gamma0,1597,-0.006321776250077548,-0.00448332726955411,0.008656461916796693,-0.12181024253368378,0.0315782278776168,0.003260051012039183,1392,-0.004036577894812685,-0.003921359777450534,0.0038507488010915756,-0.012208670377731295,0.0315782278776168,205,0.12836568566061365,-0.012226705551147403,0.98,soft_dice_delta_flux_minus_raw
|
| 66 |
+
x0_y900_z0_alphaneg90_beta0_gamma0,1597,-0.003171972897773843,-0.0024660825729370117,0.006610480723352032,-0.11172568798065188,0.0737913846969604,0.007987924814224235,1529,-0.0024037220514701663,-0.0022963285446166437,0.004852933424067882,-0.01283872127532959,0.0737913846969604,68,0.042579837194740136,-0.012920089960098259,0.98,soft_dice_delta_flux_minus_raw
|
| 67 |
+
x0_y900_z100_alpha0_beta0_gamma0,1597,-0.0015530445162176571,-0.0017858594655990045,0.006051382472015822,-0.051968559622764615,0.05052493512630468,0.013065683841705214,1581,-0.001251230627807314,-0.001767858862876892,0.005153529026102514,-0.015600979328155518,0.05052493512630468,16,0.010018785222291797,-0.016637402772903223,0.98,soft_dice_delta_flux_minus_raw
|
| 68 |
+
x0_y900_z100_alpha45_beta0_gamma0,1597,-0.0038389819128929865,-0.003364324569702204,0.004367749933570693,-0.10182267427444461,0.008662730455398615,0.0015757453441620085,1489,-0.0031758932217885545,-0.0031732469797134955,0.002254407134685167,-0.008295029401779203,0.008662730455398615,108,0.06762680025046963,-0.008304394483566416,0.98,soft_dice_delta_flux_minus_raw
|
| 69 |
+
x0_y900_z100_alpha90_beta0_gamma0,1597,-0.0012800420774992515,-0.001088380813598605,0.006066779474982485,-0.04184801876544961,0.1658039093017578,0.006809654235839896,1553,-0.0008776949746180413,-0.001037523150444003,0.005485539829861074,-0.008967757225036593,0.1658039093017578,44,0.027551659361302442,-0.008986415863037106,0.98,soft_dice_delta_flux_minus_raw
|
| 70 |
+
x0_y900_z100_alphaneg45_beta0_gamma0,1597,-0.0031118517229537625,-0.0026982128620147983,0.003660450803227803,-0.04068399965763089,0.02393549680709839,0.0029274082183837653,1499,-0.00253616915574624,-0.002538949251174899,0.0027222951998364282,-0.008301496505737305,0.02393549680709839,98,0.061365059486537255,-0.008323833942413362,0.98,soft_dice_delta_flux_minus_raw
|
| 71 |
+
x0_y900_z100_alphaneg90_beta0_gamma0,1597,-0.0015245868486766896,-0.0011269301176071167,0.003551546105657519,-0.040538325905799893,0.019717067480087225,0.004416030645370427,1513,-0.0009830419789145337,-0.0009854733943939764,0.0024221079157017663,-0.006616383790969904,0.019717067480087225,84,0.052598622417031934,-0.00666989088058466,0.98,soft_dice_delta_flux_minus_raw
|
| 72 |
+
x0_y900_z200_alpha0_beta0_gamma0,1597,-0.002638487780960037,-0.00241973996162409,0.00332324641737236,-0.03468203544616699,0.022338837385177612,0.0037899428606033444,1539,-0.0022304504383609536,-0.0023413896560668945,0.0024441049891806184,-0.008577704429626382,0.022338837385177612,58,0.036318096430807766,-0.008629422783851525,0.98,soft_dice_delta_flux_minus_raw
|
| 73 |
+
x0_y900_z200_alpha45_beta0_gamma0,1597,-0.003411905582278091,-0.002996236085891696,0.003845154557385231,-0.04864341020584101,0.027088701725006104,0.003327193260192867,1526,-0.002902703108278203,-0.0028979480266571184,0.0026964825598639677,-0.0092858225107193,0.027088701725006104,71,0.044458359423919847,-0.009319665431976258,0.98,soft_dice_delta_flux_minus_raw
|
| 74 |
+
x0_y900_z200_alpha90_beta0_gamma0,1597,-0.0005142546177806162,-0.0003660321235657016,0.0050523301455956396,-0.07065534591674799,0.026874810457229587,0.010128592252731276,1566,-0.00010004200964290796,-0.0003095641732215465,0.0037053296312569086,-0.010842472314834595,0.026874810457229587,31,0.019411396368190358,-0.010860656499862679,0.98,soft_dice_delta_flux_minus_raw
|
| 75 |
+
x0_y900_z200_alphaneg45_beta0_gamma0,1597,-0.003162947524765841,-0.0026177614927291037,0.004069217491022554,-0.06568130850791931,0.024424672126770103,0.003197900056838988,1515,-0.0025720098132740936,-0.0024873614311217984,0.0024887298996233357,-0.008342728018760709,0.024424672126770103,82,0.05134627426424546,-0.008433423042297196,0.98,soft_dice_delta_flux_minus_raw
|
| 76 |
+
x0_y900_z200_alphaneg90_beta0_gamma0,1597,-0.0009106336979098661,-0.0004990696907044012,0.0037939524457373305,-0.032876178622245705,0.017172813415527288,0.00576258659362793,1523,-0.0003584525887307091,-0.000384673476219205,0.002495075754149708,-0.006708830595016507,0.017172813415527288,74,0.046336881653099564,-0.006760725975036732,0.98,soft_dice_delta_flux_minus_raw
|
| 77 |
+
x0_y900_zneg100_alpha0_beta0_gamma0,1597,-0.0029496321910683185,-0.0027388930320740024,0.0036860832674480625,-0.04763694107532501,0.01703374087810522,0.0038748520612716464,1547,-0.002553608636934679,-0.0026662796735763827,0.0027300494748176453,-0.009315177798271207,0.01703374087810522,50,0.031308703819661866,-0.00935263812541965,0.98,soft_dice_delta_flux_minus_raw
|
| 78 |
+
x0_y900_zneg100_alpha45_beta0_gamma0,1597,-0.0034860418077252713,-0.003103405237197876,0.004739286312604983,-0.06959605216979989,0.028438955545425415,0.004440163373947086,1530,-0.0028961075189846033,-0.002958096563816029,0.0033122646223876584,-0.010637044906616211,0.028438955545425415,67,0.041953663118346904,-0.010646973848342837,0.98,soft_dice_delta_flux_minus_raw
|
| 79 |
+
x0_y900_zneg100_alpha90_beta0_gamma0,1597,0.0002858059045741467,0.0002682805061340332,0.005432078644201854,-0.045006364583969116,0.11643660068511963,0.008206949830055252,1547,0.0007653686024715771,0.00035527348518368806,0.004614924828536081,-0.00763818621635437,0.11643660068511963,50,0.031308703819661866,-0.007670388817787185,0.98,soft_dice_delta_flux_minus_raw
|
| 80 |
+
x0_y900_zneg100_alphaneg45_beta0_gamma0,1597,-0.0034243354740632493,-0.0030468553304671964,0.0047568192013816,-0.07228536903858179,0.022522777318954523,0.00436738848686213,1534,-0.002844477375918292,-0.0029363706707954407,0.003277840712120844,-0.010384649038314764,0.022522777318954523,63,0.039448966812773954,-0.010461099147796523,0.98,soft_dice_delta_flux_minus_raw
|
| 81 |
+
x0_y900_zneg100_alphaneg90_beta0_gamma0,1597,-0.0003732489882668035,-0.0004303157329560159,0.005353549797028367,-0.05292528867721563,0.07117938995361323,0.010247074365615833,1578,-5.0087732053981626e-05,-0.0004107654094696045,0.00426599954549792,-0.0107493847608566,0.07117938995361323,19,0.011897307451471509,-0.011107705831527865,0.98,soft_dice_delta_flux_minus_raw
|
| 82 |
+
x0_y900_zneg200_alpha0_beta0_gamma0,1597,-0.0003660488068945491,-0.00034731626510620117,0.004639353877236489,-0.03969550132751459,0.026017993688583374,0.010607767105102466,1572,-0.00012704092089759736,-0.0003117173910140436,0.0042119487377234215,-0.011146277189254816,0.026017993688583374,25,0.015654351909830933,-0.011302399635314868,0.98,soft_dice_delta_flux_minus_raw
|
| 83 |
+
x0_y900_zneg200_alpha45_beta0_gamma0,1597,-0.0014965873195293502,-0.0010611414909362793,0.005448004232168211,-0.028609201312065208,0.051986426115036066,0.00988419413566584,1551,-0.0010607372188783345,-0.0009193420410155695,0.004843630751867805,-0.011914044618606567,0.051986426115036066,46,0.028804007514088917,-0.012006477117538399,0.98,soft_dice_delta_flux_minus_raw
|
| 84 |
+
x0_y900_zneg200_alpha90_beta0_gamma0,1597,0.0031287537266033155,0.0023610293865203302,0.009756773453068947,-0.038800209760665894,0.21303731203079224,0.020101611614227265,1591,0.003248707668201341,0.002416819334030207,0.009567004618692547,-0.015266150236129816,0.21303731203079224,6,0.003757044458359424,-0.015379552841186604,0.98,soft_dice_delta_flux_minus_raw
|
| 85 |
+
x0_y900_zneg200_alphaneg45_beta0_gamma0,1597,-0.001490468055513701,-0.0012060701847076416,0.005148295718645398,-0.04149395227432251,0.029972642660140936,0.008958214521408076,1549,-0.0010479608607184435,-0.0010474920272827148,0.004437297094604677,-0.01137033104896551,0.029972642660140936,48,0.03005635566687539,-0.011370354890823359,0.98,soft_dice_delta_flux_minus_raw
|
| 86 |
+
x0_y900_zneg200_alphaneg90_beta0_gamma0,1597,-0.00012110134513212387,-0.00020477175712579898,0.005401446373523408,-0.032195419073104914,0.04084762930870062,0.011329294443130434,1561,0.00023136665468258743,-4.9442052841186523e-05,0.004892508301142027,-0.011706292629241888,0.04084762930870062,36,0.022542266750156543,-0.011738837957382032,0.98,soft_dice_delta_flux_minus_raw
|
| 87 |
+
x0_y900_zneg300_alpha0_beta0_gamma0,1597,0.00033572615685877977,0.00013178586959838867,0.002785122466450767,-0.03119373321533203,0.054194495081901495,0.005682907104492184,1580,0.00045238317379468605,0.00014539808034901014,0.0024687587328684154,-0.0052762925624847135,0.054194495081901495,17,0.010644959298685034,-0.005419335365295407,0.98,soft_dice_delta_flux_minus_raw
|
| 88 |
+
x0_y900_zneg300_alpha45_beta0_gamma0,1597,-0.0007934422047345736,-0.0004989206790924627,0.004237971743423218,-0.015470623970031683,0.0776150226593017,0.006996781826019281,1555,-0.0005413831813542413,-0.0004407614469529031,0.0039909947893793886,-0.007973849773406982,0.0776150226593017,42,0.026299311208515967,-0.007994623184204207,0.98,soft_dice_delta_flux_minus_raw
|
| 89 |
+
x0_y900_zneg300_alpha90_beta0_gamma0,1597,0.0014348049871460232,-0.0003243386745452326,0.012195128912461193,-0.03262016177177429,0.16435188055038452,0.02861860990524294,1596,0.0014561426856165246,-0.00031934678554532137,0.012169093866270821,-0.027034908533096313,0.16435188055038452,1,0.0006261740763932373,-0.029267287254333405,0.98,soft_dice_delta_flux_minus_raw
|
| 90 |
+
x0_y900_zneg300_alphaneg45_beta0_gamma0,1597,3.988690016489108e-05,0.0001233220100402832,0.0028143615462526543,-0.022559285163879395,0.01915121078491211,0.006041909456253051,1554,0.00028612731237976074,0.00016382336616510562,0.0023511327710643987,-0.005788683891296387,0.01915121078491211,43,0.026925485284909206,-0.005795265436172484,0.98,soft_dice_delta_flux_minus_raw
|
| 91 |
+
x0_y900_zneg300_alphaneg90_beta0_gamma0,1597,0.0008890768215666749,-0.0004171133041381836,0.012878256490215794,-0.20017769932746893,0.21474045515060425,0.022835342884063574,1594,0.001066088517531848,-0.00040883570909498734,0.011764077350397924,-0.02093607187271118,0.21474045515060425,3,0.001878522229179712,-0.02366956949233994,0.98,soft_dice_delta_flux_minus_raw
|
FluXray/thunder_dbs/1.0/lock.mdb
ADDED
|
Binary file (8.19 kB). View file
|
|
|
FluXray/thunder_dbs/1.0/protocol.yml
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
built_at: '2026-06-27T10:30:23.151042+00:00'
|
| 2 |
+
dataset: FluXray
|
| 3 |
+
image_source: flux
|
| 4 |
+
label_names:
|
| 5 |
+
- background
|
| 6 |
+
- skull
|
| 7 |
+
- scapulae
|
| 8 |
+
- clavicles
|
| 9 |
+
- humeri
|
| 10 |
+
- phalanges
|
| 11 |
+
- metacarpals
|
| 12 |
+
- carpals
|
| 13 |
+
- radii
|
| 14 |
+
- ulnae
|
| 15 |
+
- tibiae
|
| 16 |
+
- femurs
|
| 17 |
+
- patellae
|
| 18 |
+
- fibulae
|
| 19 |
+
- metatarsals
|
| 20 |
+
- tarsals
|
| 21 |
+
- toes
|
| 22 |
+
- rib_1
|
| 23 |
+
- rib_2
|
| 24 |
+
- rib_3
|
| 25 |
+
- rib_4
|
| 26 |
+
- rib_5
|
| 27 |
+
- rib_6
|
| 28 |
+
- rib_7
|
| 29 |
+
- rib_8
|
| 30 |
+
- rib_9
|
| 31 |
+
- rib_10
|
| 32 |
+
- rib_11
|
| 33 |
+
- rib_12
|
| 34 |
+
- sternum
|
| 35 |
+
- vertebra_c1
|
| 36 |
+
- vertebra_c2
|
| 37 |
+
- vertebra_c3
|
| 38 |
+
- vertebra_c4
|
| 39 |
+
- vertebra_c5
|
| 40 |
+
- vertebra_c6
|
| 41 |
+
- vertebra_c7
|
| 42 |
+
- vertebra_t1
|
| 43 |
+
- vertebra_t2
|
| 44 |
+
- vertebra_t3
|
| 45 |
+
- vertebra_t4
|
| 46 |
+
- vertebra_t5
|
| 47 |
+
- vertebra_t6
|
| 48 |
+
- vertebra_t7
|
| 49 |
+
- vertebra_t8
|
| 50 |
+
- vertebra_t9
|
| 51 |
+
- vertebra_t10
|
| 52 |
+
- vertebra_t11
|
| 53 |
+
- vertebra_t12
|
| 54 |
+
- vertebra_l1
|
| 55 |
+
- vertebra_l2
|
| 56 |
+
- vertebra_l3
|
| 57 |
+
- vertebra_l4
|
| 58 |
+
- vertebra_l5
|
| 59 |
+
- hips
|
| 60 |
+
- sacrum
|
| 61 |
+
- lumbar_spine
|
| 62 |
+
- thoracolumbar_spine
|
| 63 |
+
- kidneys
|
| 64 |
+
- liver
|
| 65 |
+
- spleen
|
| 66 |
+
- lungs
|
| 67 |
+
- heart
|
| 68 |
+
layout: FluXray/thunder_dbs/<version>
|
| 69 |
+
num_classes: 63
|
| 70 |
+
output_size:
|
| 71 |
+
- 256
|
| 72 |
+
- 256
|
| 73 |
+
protocol_name: all_structures_flexray_v4
|
| 74 |
+
schema_version: 1
|
| 75 |
+
seg_default_threshold: 0.0
|
| 76 |
+
seg_label_thresholds:
|
| 77 |
+
lungs: 0.1
|
| 78 |
+
seg_storage: overlapping_channel_mask
|
| 79 |
+
seg_threshold_protocol: all_structures_flexray_v4
|
| 80 |
+
source_mask_dtype: float16
|
| 81 |
+
version: '1.0'
|
FluXray/thunder_dbs/1.0/samples.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ece31d85f5f0281e5b77a85d20c8ff84099a7cd5dccbcae4d636612b7444643
|
| 3 |
+
size 21792137
|