Adrian Celaya commited on
Commit
ff82cbf
·
verified ·
1 Parent(s): 9269a42

Add models and configuration files.

Browse files
config.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "modality": "mr",
3
+ "labels": [
4
+ 0,
5
+ 1,
6
+ 2,
7
+ 3,
8
+ 4
9
+ ],
10
+ "final_classes": {
11
+ "netc": [
12
+ 1
13
+ ],
14
+ "snfh": [
15
+ 2
16
+ ],
17
+ "et": [
18
+ 3
19
+ ],
20
+ "rc": [
21
+ 4
22
+ ],
23
+ "tc": [
24
+ 1,
25
+ 3
26
+ ],
27
+ "wt": [
28
+ 1,
29
+ 2,
30
+ 3
31
+ ]
32
+ },
33
+ "crop_to_fg": true,
34
+ "use_nz_mask": true,
35
+ "target_spacing": [
36
+ 1.0,
37
+ 1.0,
38
+ 1.0
39
+ ],
40
+ "median_image_size": [
41
+ 135,
42
+ 172,
43
+ 140
44
+ ],
45
+ "patch_size": [
46
+ 128,
47
+ 128,
48
+ 128
49
+ ],
50
+ "mist_version": "0.2.1b0",
51
+ "patch_overlap": 0.5,
52
+ "patch_blend_mode": "gaussian"
53
+ }
models/fold_0.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18d9375737b1cc651a69e0a22abf2f575b4e8843e0d3dce866c03a5a1b5c405c
3
+ size 3119618
models/fold_1.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9fd735c538bab423ab0e5f64b3b38ee30924fcb89eaae3f68c81be511b37b33
3
+ size 3119618
models/fold_2.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee131811b5d5a9a6fa6686db1ab17dbe51cb0decff91d7a6e49ac455123951cf
3
+ size 3119618
models/fold_3.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5b0f1ae2ba34ec1a978c783f9526b26e77920ff9caac4bdba9d3ded2ac921ad
3
+ size 3119618
models/fold_4.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9c244c44e8a0d1791045a4baa2fc85244640bff0d5ab961b0cfcf93c7359e2f
3
+ size 3119618
models/model_config.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "nnunet",
3
+ "n_channels": 4,
4
+ "n_classes": 5,
5
+ "deep_supervision": true,
6
+ "pocket": true,
7
+ "patch_size": [
8
+ 128,
9
+ 128,
10
+ 128
11
+ ],
12
+ "target_spacing": [
13
+ 1.0,
14
+ 1.0,
15
+ 1.0
16
+ ],
17
+ "use_res_block": true
18
+ }
postprocess.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "transform": "get_top_k_connected_components",
4
+ "apply_to_labels": [1, 2, 3],
5
+ "apply_sequentially": false,
6
+ "kwargs": {
7
+ "top_k": 1,
8
+ "morph_cleanup": true,
9
+ "morph_cleanup_iterations": 2
10
+ }
11
+ },
12
+ {
13
+ "transform": "get_top_k_connected_components",
14
+ "apply_to_labels": [4],
15
+ "apply_sequentially": true,
16
+ "kwargs": {
17
+ "top_k": 1,
18
+ "morph_cleanup": true,
19
+ "morph_cleanup_iterations": 2
20
+ }
21
+ }
22
+ ]