clane9 commited on
Commit
504d310
·
verified ·
1 Parent(s): 5a112e6

Add files using upload-large-folder tool

Browse files
.gitattributes CHANGED
@@ -136,3 +136,5 @@ checkpoints/pretrain_full_90_10_h100/eval__fomo_val__mask_pred__00094.png filter
136
  finetune/fomo_tune_baseline/output/task1/task1.sif filter=lfs diff=lfs merge=lfs -text
137
  finetune/fomo_tune_baseline/output/task5/task5.sif filter=lfs diff=lfs merge=lfs -text
138
  finetune/fomo_tune_baseline/output/task3/task3.sif filter=lfs diff=lfs merge=lfs -text
 
 
 
136
  finetune/fomo_tune_baseline/output/task1/task1.sif filter=lfs diff=lfs merge=lfs -text
137
  finetune/fomo_tune_baseline/output/task5/task5.sif filter=lfs diff=lfs merge=lfs -text
138
  finetune/fomo_tune_baseline/output/task3/task3.sif filter=lfs diff=lfs merge=lfs -text
139
+ finetune/fomo_tune_baseline/output/task6_and_7/task6_and_7.sif filter=lfs diff=lfs merge=lfs -text
140
+ finetune/fomo_tune_baseline/output/task2/task2.sif filter=lfs diff=lfs merge=lfs -text
finetune/fomo_tune_baseline/build.sh CHANGED
@@ -2,17 +2,17 @@
2
  # Package each trained run into its challenge .sif. Run on the login node, after launch.sh:
3
  # apptainer lives there and on n-6 only, and a build needs no GPU driver.
4
  #
5
- # Slow. Apptainer always re-runs %post, so each of the three re-downloads ~3G of wheels.
6
 
7
  set -euo pipefail
8
 
9
- ROOT="/data/connor/nanobrain.1"
10
  cd $ROOT
11
 
12
  EXP_DIR="experiments/fomo_tune_baseline"
13
  OUT_DIR="${EXP_DIR}/output"
14
 
15
- runs=(task1 task5 task3)
16
 
17
  for name in "${runs[@]}"; do
18
  # build.py names the sif after `task` in the run's saved config, which is the run name here
 
2
  # Package each trained run into its challenge .sif. Run on the login node, after launch.sh:
3
  # apptainer lives there and on n-6 only, and a build needs no GPU driver.
4
  #
5
+ # Slow. Apptainer always re-runs %post, so each run re-downloads ~3G of wheels.
6
 
7
  set -euo pipefail
8
 
9
+ ROOT="/data/connor/fomo_tune"
10
  cd $ROOT
11
 
12
  EXP_DIR="experiments/fomo_tune_baseline"
13
  OUT_DIR="${EXP_DIR}/output"
14
 
15
+ runs=(task1 task5 task3 task2 task6_and_7)
16
 
17
  for name in "${runs[@]}"; do
18
  # build.py names the sif after `task` in the run's saved config, which is the run name here
finetune/fomo_tune_baseline/export_task6_and_7.sh ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ # Tasks 6 and 7: write the run dir, then package it. Both steps run on the login node -- nothing
3
+ # is fitted, so there is no counterpart in launch.sh and no GPU anywhere in this script.
4
+ #
5
+ # device=cpu is what makes the export work here: it only constructs the backbone, and the login
6
+ # node has no driver to move it to. `predict` picks its own device inside the container.
7
+ #
8
+ # Validate the result with:
9
+ # uv run python third_party/container-validator/container_validator/validate.py \
10
+ # --task task6_and_7 --sif experiments/fomo_tune_baseline/output/task6_and_7/task6_and_7.sif
11
+
12
+ set -euo pipefail
13
+
14
+ ROOT="/data/connor/fomo_tune"
15
+ cd $ROOT
16
+
17
+ EXP_DIR="experiments/fomo_tune_baseline"
18
+ OUT_DIR="${EXP_DIR}/output"
19
+
20
+ name=task6_and_7
21
+
22
+ uv run --no-sync python -m fomo_tune.main_task6_and_7 export \
23
+ output_root="${OUT_DIR}" \
24
+ name="${name}" \
25
+ device=cpu
26
+
27
+ uv run --no-sync python -m fomo_tune.build "${OUT_DIR}/${name}"
28
+
29
+ ls -lh "${OUT_DIR}/${name}/${name}.sif"
finetune/fomo_tune_baseline/launch.sh CHANGED
@@ -10,7 +10,7 @@
10
 
11
  set -euo pipefail
12
 
13
- ROOT="/data/connor/nanobrain.1"
14
  cd $ROOT
15
 
16
  EXP_DIR="experiments/fomo_tune_baseline"
@@ -23,6 +23,7 @@ runs=(
23
  "task1 main_task1"
24
  "task5 main_task5"
25
  "task3 main_task3"
 
26
  )
27
 
28
  for run in "${runs[@]}"; do
 
10
 
11
  set -euo pipefail
12
 
13
+ ROOT="/data/connor/fomo_tune"
14
  cd $ROOT
15
 
16
  EXP_DIR="experiments/fomo_tune_baseline"
 
23
  "task1 main_task1"
24
  "task5 main_task5"
25
  "task3 main_task3"
26
+ "task2 main_task2"
27
  )
28
 
29
  for run in "${runs[@]}"; do
finetune/fomo_tune_baseline/output/task2/config.yaml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ task: task2
2
+ ckpt_path: hf://medarc/walnut/checkpoints/pretrain_full_90_10_h100/checkpoint-last.pth
3
+ modality: flair
4
+ output_root: experiments/fomo_tune_baseline/output
5
+ name: task2
6
+ inverse_reg: 1.0
7
+ largest_component: true
8
+ device: cuda
9
+ seed: 4466
finetune/fomo_tune_baseline/output/task2/curves.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b317d9b0696d04f954e10bdb0b3533db2ce7c11e035bebeb733c18b68ea95e5f
3
+ size 24576
finetune/fomo_tune_baseline/output/task2/log.txt ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 22:33:07 run task2 (git 7d13f45)
2
+ 22:33:07 config:
3
+ task: task2
4
+ ckpt_path: hf://medarc/walnut/checkpoints/pretrain_full_90_10_h100/checkpoint-last.pth
5
+ modality: flair
6
+ output_root: experiments/fomo_tune_baseline/output
7
+ name: task2
8
+ inverse_reg: 1.0
9
+ largest_component: true
10
+ device: cuda
11
+ seed: 4466
12
+ 22:33:10 dataset: 23 subjects
13
+ 22:33:33 fold 1/23 sub-01 best=0.494 at thr=1.14e-02 vox=3695 (20s)
14
+ 22:33:39 fold 2/23 sub-02 best=0.726 at thr=1.14e-02 vox=3047 (25s)
15
+ 22:33:45 fold 3/23 sub-03 best=0.007 at thr=4.06e-04 vox=292 (31s)
16
+ 22:33:50 fold 4/23 sub-04 best=0.629 at thr=2.78e-02 vox=4112 (37s)
17
+ 22:33:56 fold 5/23 sub-05 best=0.619 at thr=8.46e-02 vox=2026 (42s)
18
+ 22:34:01 fold 6/23 sub-06 best=0.392 at thr=3.47e-02 vox=67 (47s)
19
+ 22:34:06 fold 7/23 sub-07 best=0.004 at thr=1.33e-04 vox=124 (53s)
20
+ 22:34:12 fold 8/23 sub-08 best=0.056 at thr=3.01e-03 vox=189 (58s)
21
+ 22:34:17 fold 9/23 sub-09 best=0.001 at thr=1.44e-05 vox=97 (64s)
22
+ 22:34:23 fold 10/23 sub-10 best=0.400 at thr=9.14e-03 vox=562 (70s)
23
+ 22:34:29 fold 11/23 sub-11 best=0.661 at thr=1.32e-01 vox=1058 (75s)
24
+ 22:34:37 fold 12/23 sub-12 best=0.102 at thr=5.86e-03 vox=543 (84s)
25
+ 22:34:48 fold 13/23 sub-13 best=0.153 at thr=4.34e-02 vox=229 (94s)
26
+ 22:34:56 fold 14/23 sub-14 best=0.006 at thr=1.33e-04 vox=1689 (103s)
27
+ 22:35:07 fold 15/23 sub-15 best=0.363 at thr=3.25e-04 vox=85042 (113s)
28
+ 22:35:17 fold 16/23 sub-16 best=0.000 at thr=7.40e-06 vox=58 (123s)
29
+ 22:35:27 fold 17/23 sub-17 best=0.003 at thr=2.08e-04 vox=283 (133s)
30
+ 22:35:31 fold 18/23 sub-18 best=0.549 at thr=9.88e-04 vox=7908 (138s)
31
+ 22:35:40 fold 19/23 sub-19 best=0.001 at thr=7.40e-06 vox=1047 (146s)
32
+ 22:35:46 fold 20/23 sub-20 best=0.271 at thr=1.32e-01 vox=137 (152s)
33
+ 22:35:53 fold 21/23 sub-21 best=0.700 at thr=3.75e-03 vox=22872 (160s)
34
+ 22:36:01 fold 22/23 sub-22 best=0.005 at thr=7.91e-04 vox=320 (168s)
35
+ 22:36:07 fold 23/23 sub-23 best=0.087 at thr=4.69e-03 vox=1103 (173s)
36
+ 22:36:11 result: dice=0.1950 dice_ci_low=0.0982 dice_ci_high=0.3027 dice_oracle=0.2710 threshold=0.0114 (173s)
finetune/fomo_tune_baseline/output/task2/metrics.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"name": "task2", "dice": 0.1949656674999475, "dice_ci_low": 0.0982165003070221, "dice_ci_high": 0.3026661093213435, "dice_oracle": 0.27100715535838193, "threshold": 0.011418974908106123, "run_time": 173.5}
finetune/fomo_tune_baseline/output/task2/model/config.yaml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ task: task2
2
+ ckpt_path: hf://medarc/walnut/checkpoints/pretrain_full_90_10_h100/checkpoint-last.pth
3
+ modality: flair
4
+ output_root: experiments/fomo_tune_baseline/output
5
+ name: task2
6
+ inverse_reg: 1.0
7
+ largest_component: true
8
+ device: cuda
9
+ seed: 4466
finetune/fomo_tune_baseline/output/task2/model/head.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e505ef71cc335391a8fbe088c091d76ddbbeb245f39cdfef357a3f9e6c94e1e6
3
+ size 34119
finetune/fomo_tune_baseline/output/task2/task2.sif ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc9a1d87a7ed84cf8289381126a21aaeb7ecec7f67087609585dc4df057b086a
3
+ size 5328957440
finetune/fomo_tune_baseline/output/task2_nolc/config.yaml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ task: task2
2
+ ckpt_path: hf://medarc/walnut/checkpoints/pretrain_full_90_10_h100/checkpoint-last.pth
3
+ modality: flair
4
+ output_root: experiments/fomo_tune_baseline/output
5
+ name: task2
6
+ inverse_reg: 1.0
7
+ largest_component: false
8
+ device: cuda
9
+ seed: 4466
finetune/fomo_tune_baseline/output/task2_nolc/curves.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7217a618e0124fcca7d645e43d3e7eb337e10fbc59754ef5750f8b0564f29f56
3
+ size 24576
finetune/fomo_tune_baseline/output/task2_nolc/log.txt ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 22:23:50 run task2 (git 7508a46-dirty)
2
+ 22:23:50 config:
3
+ task: task2
4
+ ckpt_path: hf://medarc/walnut/checkpoints/pretrain_full_90_10_h100/checkpoint-last.pth
5
+ modality: flair
6
+ output_root: experiments/fomo_tune_baseline/output
7
+ name: task2
8
+ inverse_reg: 1.0
9
+ largest_component: false
10
+ device: cuda
11
+ seed: 4466
12
+ 22:23:53 dataset: 23 subjects
13
+ 22:24:13 fold 1/23 sub-01 best=0.178 at thr=2.23e-02 vox=3695 (16s)
14
+ 22:24:18 fold 2/23 sub-02 best=0.551 at thr=8.46e-02 vox=3047 (20s)
15
+ 22:24:23 fold 3/23 sub-03 best=0.017 at thr=2.41e-03 vox=292 (25s)
16
+ 22:24:27 fold 4/23 sub-04 best=0.471 at thr=8.46e-02 vox=4112 (30s)
17
+ 22:24:32 fold 5/23 sub-05 best=0.567 at thr=8.46e-02 vox=2026 (34s)
18
+ 22:24:36 fold 6/23 sub-06 best=0.392 at thr=3.47e-02 vox=67 (39s)
19
+ 22:24:41 fold 7/23 sub-07 best=0.003 at thr=8.55e-05 vox=124 (43s)
20
+ 22:24:45 fold 8/23 sub-08 best=0.051 at thr=2.78e-02 vox=189 (48s)
21
+ 22:24:50 fold 9/23 sub-09 best=0.001 at thr=1.44e-05 vox=97 (53s)
22
+ 22:24:55 fold 10/23 sub-10 best=0.229 at thr=1.14e-02 vox=562 (58s)
23
+ 22:25:00 fold 11/23 sub-11 best=0.661 at thr=1.32e-01 vox=1058 (62s)
24
+ 22:25:05 fold 12/23 sub-12 best=0.074 at thr=1.78e-02 vox=543 (68s)
25
+ 22:25:12 fold 13/23 sub-13 best=0.224 at thr=1.32e-01 vox=229 (75s)
26
+ 22:25:18 fold 14/23 sub-14 best=0.008 at thr=6.33e-04 vox=1689 (81s)
27
+ 22:25:25 fold 15/23 sub-15 best=0.337 at thr=7.91e-04 vox=85042 (88s)
28
+ 22:25:32 fold 16/23 sub-16 best=0.000 at thr=7.40e-06 vox=58 (95s)
29
+ 22:25:40 fold 17/23 sub-17 best=0.003 at thr=2.08e-04 vox=283 (102s)
30
+ 22:25:44 fold 18/23 sub-18 best=0.445 at thr=3.75e-03 vox=7908 (107s)
31
+ 22:25:49 fold 19/23 sub-19 best=0.001 at thr=7.40e-06 vox=1047 (112s)
32
+ 22:25:54 fold 20/23 sub-20 best=0.271 at thr=1.32e-01 vox=137 (117s)
33
+ 22:25:59 fold 21/23 sub-21 best=0.641 at thr=7.32e-03 vox=22872 (122s)
34
+ 22:26:04 fold 22/23 sub-22 best=0.024 at thr=7.32e-03 vox=320 (127s)
35
+ 22:26:09 fold 23/23 sub-23 best=0.054 at thr=7.32e-03 vox=1103 (132s)
36
+ 22:26:13 result: dice=0.1703 dice_ci_low=0.0824 dice_ci_high=0.2663 dice_oracle=0.2262 threshold=0.0846 (132s)
finetune/fomo_tune_baseline/output/task2_nolc/metrics.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"name": "task2", "dice": 0.17031838965400364, "dice_ci_low": 0.0824472436945987, "dice_ci_high": 0.26627240900058224, "dice_oracle": 0.22619194737085518, "threshold": 0.08455097967949261, "run_time": 131.7}
finetune/fomo_tune_baseline/output/task2_nolc/model/config.yaml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ task: task2
2
+ ckpt_path: hf://medarc/walnut/checkpoints/pretrain_full_90_10_h100/checkpoint-last.pth
3
+ modality: flair
4
+ output_root: experiments/fomo_tune_baseline/output
5
+ name: task2
6
+ inverse_reg: 1.0
7
+ largest_component: false
8
+ device: cuda
9
+ seed: 4466
finetune/fomo_tune_baseline/output/task2_nolc/model/head.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f35ecc9d4ff9b88a916ae29df6452a3a625112e663e5059904afe0eeb87d78a
3
+ size 34119
finetune/fomo_tune_baseline/output/task6_and_7/config.yaml ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ task: task6_and_7
2
+ ckpt_path: hf://medarc/walnut/checkpoints/pretrain_full_90_10_h100/checkpoint-last.pth
3
+ output_root: experiments/fomo_tune_baseline/output
4
+ name: task6_and_7
5
+ device: cpu
finetune/fomo_tune_baseline/output/task6_and_7/log.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ 22:33:06 run task6_and_7 (git 7d13f45)
2
+ 22:33:06 config:
3
+ task: task6_and_7
4
+ ckpt_path: hf://medarc/walnut/checkpoints/pretrain_full_90_10_h100/checkpoint-last.pth
5
+ output_root: experiments/fomo_tune_baseline/output
6
+ name: task6_and_7
7
+ device: cpu
8
+ 22:33:09 embedding dim 1024
finetune/fomo_tune_baseline/output/task6_and_7/model/config.yaml ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ task: task6_and_7
2
+ ckpt_path: hf://medarc/walnut/checkpoints/pretrain_full_90_10_h100/checkpoint-last.pth
3
+ output_root: experiments/fomo_tune_baseline/output
4
+ name: task6_and_7
5
+ device: cpu
finetune/fomo_tune_baseline/output/task6_and_7/task6_and_7.sif ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f1e6a81da7d3df41a126769046f03d62e14999c68e3bcec23772df4310bc055
3
+ size 5328924672
finetune/fomo_tune_baseline/slurms/slurm-379939.out ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ result task1 exists; skipping
2
+ result task5 exists; skipping
3
+ result task3 exists; skipping
4
+ === task2 ===
5
+ 22:23:50 run task2 (git 7508a46-dirty)
6
+ 22:23:50 config:
7
+ task: task2
8
+ ckpt_path: hf://medarc/walnut/checkpoints/pretrain_full_90_10_h100/checkpoint-last.pth
9
+ modality: flair
10
+ output_root: experiments/fomo_tune_baseline/output
11
+ name: task2
12
+ inverse_reg: 1.0
13
+ largest_component: false
14
+ device: cuda
15
+ seed: 4466
16
+ 22:23:53 dataset: 23 subjects
17
+ 22:24:13 fold 1/23 sub-01 best=0.178 at thr=2.23e-02 vox=3695 (16s)
18
+ 22:24:18 fold 2/23 sub-02 best=0.551 at thr=8.46e-02 vox=3047 (20s)
19
+ 22:24:23 fold 3/23 sub-03 best=0.017 at thr=2.41e-03 vox=292 (25s)
20
+ 22:24:27 fold 4/23 sub-04 best=0.471 at thr=8.46e-02 vox=4112 (30s)
21
+ 22:24:32 fold 5/23 sub-05 best=0.567 at thr=8.46e-02 vox=2026 (34s)
22
+ 22:24:36 fold 6/23 sub-06 best=0.392 at thr=3.47e-02 vox=67 (39s)
23
+ 22:24:41 fold 7/23 sub-07 best=0.003 at thr=8.55e-05 vox=124 (43s)
24
+ 22:24:45 fold 8/23 sub-08 best=0.051 at thr=2.78e-02 vox=189 (48s)
25
+ 22:24:50 fold 9/23 sub-09 best=0.001 at thr=1.44e-05 vox=97 (53s)
26
+ 22:24:55 fold 10/23 sub-10 best=0.229 at thr=1.14e-02 vox=562 (58s)
27
+ 22:25:00 fold 11/23 sub-11 best=0.661 at thr=1.32e-01 vox=1058 (62s)
28
+ 22:25:05 fold 12/23 sub-12 best=0.074 at thr=1.78e-02 vox=543 (68s)
29
+ 22:25:12 fold 13/23 sub-13 best=0.224 at thr=1.32e-01 vox=229 (75s)
30
+ 22:25:18 fold 14/23 sub-14 best=0.008 at thr=6.33e-04 vox=1689 (81s)
31
+ 22:25:25 fold 15/23 sub-15 best=0.337 at thr=7.91e-04 vox=85042 (88s)
32
+ 22:25:32 fold 16/23 sub-16 best=0.000 at thr=7.40e-06 vox=58 (95s)
33
+ 22:25:40 fold 17/23 sub-17 best=0.003 at thr=2.08e-04 vox=283 (102s)
34
+ 22:25:44 fold 18/23 sub-18 best=0.445 at thr=3.75e-03 vox=7908 (107s)
35
+ 22:25:49 fold 19/23 sub-19 best=0.001 at thr=7.40e-06 vox=1047 (112s)
36
+ 22:25:54 fold 20/23 sub-20 best=0.271 at thr=1.32e-01 vox=137 (117s)
37
+ 22:25:59 fold 21/23 sub-21 best=0.641 at thr=7.32e-03 vox=22872 (122s)
38
+ 22:26:04 fold 22/23 sub-22 best=0.024 at thr=7.32e-03 vox=320 (127s)
39
+ 22:26:09 fold 23/23 sub-23 best=0.054 at thr=7.32e-03 vox=1103 (132s)
40
+ 22:26:13 result: dice=0.1703 dice_ci_low=0.0824 dice_ci_high=0.2663 dice_oracle=0.2262 threshold=0.0846 (132s)
41
+ === results ===
42
+ {"name": "task1", "auroc": 0.9903846153846154, "auroc_ci_low": 0.9444444444444445, "auroc_ci_high": 1.0, "run_time": 11.2}
43
+ {"name": "task2", "dice": 0.17031838965400364, "dice_ci_low": 0.0824472436945987, "dice_ci_high": 0.26627240900058224, "dice_oracle": 0.22619194737085518, "threshold": 0.08455097967949261, "run_time": 131.7}
44
+ {"name": "task3", "pearson_r": 0.9630771532969529, "pearson_r_ci_low": 0.9567144985968425, "pearson_r_ci_high": 0.9687044710309238, "mae": 3.6910024558001684, "mae_ci_low": 3.446356968454986, "mae_ci_high": 3.946628273643462, "run_time": 306.1}
45
+ {"name": "task5", "auroc": 0.984375, "auroc_ci_low": 0.9527867965367964, "auroc_ci_high": 1.0, "run_time": 67.5}
finetune/fomo_tune_baseline/slurms/slurm-379949.out ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ result task1 exists; skipping
2
+ result task5 exists; skipping
3
+ result task3 exists; skipping
4
+ === task2 ===
5
+ 22:33:07 run task2 (git 7d13f45)
6
+ 22:33:07 config:
7
+ task: task2
8
+ ckpt_path: hf://medarc/walnut/checkpoints/pretrain_full_90_10_h100/checkpoint-last.pth
9
+ modality: flair
10
+ output_root: experiments/fomo_tune_baseline/output
11
+ name: task2
12
+ inverse_reg: 1.0
13
+ largest_component: true
14
+ device: cuda
15
+ seed: 4466
16
+ 22:33:10 dataset: 23 subjects
17
+ 22:33:33 fold 1/23 sub-01 best=0.494 at thr=1.14e-02 vox=3695 (20s)
18
+ 22:33:39 fold 2/23 sub-02 best=0.726 at thr=1.14e-02 vox=3047 (25s)
19
+ 22:33:45 fold 3/23 sub-03 best=0.007 at thr=4.06e-04 vox=292 (31s)
20
+ 22:33:50 fold 4/23 sub-04 best=0.629 at thr=2.78e-02 vox=4112 (37s)
21
+ 22:33:56 fold 5/23 sub-05 best=0.619 at thr=8.46e-02 vox=2026 (42s)
22
+ 22:34:01 fold 6/23 sub-06 best=0.392 at thr=3.47e-02 vox=67 (47s)
23
+ 22:34:06 fold 7/23 sub-07 best=0.004 at thr=1.33e-04 vox=124 (53s)
24
+ 22:34:12 fold 8/23 sub-08 best=0.056 at thr=3.01e-03 vox=189 (58s)
25
+ 22:34:17 fold 9/23 sub-09 best=0.001 at thr=1.44e-05 vox=97 (64s)
26
+ 22:34:23 fold 10/23 sub-10 best=0.400 at thr=9.14e-03 vox=562 (70s)
27
+ 22:34:29 fold 11/23 sub-11 best=0.661 at thr=1.32e-01 vox=1058 (75s)
28
+ 22:34:37 fold 12/23 sub-12 best=0.102 at thr=5.86e-03 vox=543 (84s)
29
+ 22:34:48 fold 13/23 sub-13 best=0.153 at thr=4.34e-02 vox=229 (94s)
30
+ 22:34:56 fold 14/23 sub-14 best=0.006 at thr=1.33e-04 vox=1689 (103s)
31
+ 22:35:07 fold 15/23 sub-15 best=0.363 at thr=3.25e-04 vox=85042 (113s)
32
+ 22:35:17 fold 16/23 sub-16 best=0.000 at thr=7.40e-06 vox=58 (123s)
33
+ 22:35:27 fold 17/23 sub-17 best=0.003 at thr=2.08e-04 vox=283 (133s)
34
+ 22:35:31 fold 18/23 sub-18 best=0.549 at thr=9.88e-04 vox=7908 (138s)
35
+ 22:35:40 fold 19/23 sub-19 best=0.001 at thr=7.40e-06 vox=1047 (146s)
36
+ 22:35:46 fold 20/23 sub-20 best=0.271 at thr=1.32e-01 vox=137 (152s)
37
+ 22:35:53 fold 21/23 sub-21 best=0.700 at thr=3.75e-03 vox=22872 (160s)
38
+ 22:36:01 fold 22/23 sub-22 best=0.005 at thr=7.91e-04 vox=320 (168s)
39
+ 22:36:07 fold 23/23 sub-23 best=0.087 at thr=4.69e-03 vox=1103 (173s)
40
+ 22:36:11 result: dice=0.1950 dice_ci_low=0.0982 dice_ci_high=0.3027 dice_oracle=0.2710 threshold=0.0114 (173s)
41
+ === results ===
42
+ {"name": "task1", "auroc": 0.9903846153846154, "auroc_ci_low": 0.9444444444444445, "auroc_ci_high": 1.0, "run_time": 11.2}
43
+ {"name": "task2", "dice": 0.1949656674999475, "dice_ci_low": 0.0982165003070221, "dice_ci_high": 0.3026661093213435, "dice_oracle": 0.27100715535838193, "threshold": 0.011418974908106123, "run_time": 173.5}
44
+ {"name": "task2", "dice": 0.17031838965400364, "dice_ci_low": 0.0824472436945987, "dice_ci_high": 0.26627240900058224, "dice_oracle": 0.22619194737085518, "threshold": 0.08455097967949261, "run_time": 131.7}
45
+ {"name": "task3", "pearson_r": 0.9630771532969529, "pearson_r_ci_low": 0.9567144985968425, "pearson_r_ci_high": 0.9687044710309238, "mae": 3.6910024558001684, "mae_ci_low": 3.446356968454986, "mae_ci_high": 3.946628273643462, "run_time": 306.1}
46
+ {"name": "task5", "auroc": 0.984375, "auroc_ci_low": 0.9527867965367964, "auroc_ci_high": 1.0, "run_time": 67.5}