File size: 747 Bytes
ef864d5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
  "model_type": "monai_unet_3d",
  "architecture": {
    "spatial_dims": 3,
    "in_channels": 1,
    "out_channels": 2,
    "channels": [
      16,
      32,
      64,
      128,
      256,
      512
    ],
    "strides": [
      2,
      2,
      2,
      2,
      2,
      2
    ],
    "num_res_units": 2,
    "dropout": 0.2
  },
  "training": {
    "patch_size": [
      256,
      256,
      256
    ],
    "loss_function": "DiceLoss",
    "optimizer": "Adam",
    "learning_rate": 0.0001,
    "weight_decay": 1e-05
  },
  "preprocessing": {
    "intensity_range": [
      -1000,
      4000
    ],
    "output_range": [
      0,
      1
    ],
    "normalization": "ScaleIntensityRanged"
  }
}