[4fa73e]: / pytorch / configs / unet.json

Download this file

45 lines (36 with data), 840 Bytes

 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
{
"exp_name": "unet_experiment",
"agent": "Supervised_Model",
"phase": "training",
"load_chkpt": false,
"cuda": true,
"gpu_device": 0,
"seed": 1,
"volume_shape": [144, 192, 256],
"patch_shape": [32, 32, 32],
"extraction_step": [8, 8 , 8],
"relu_slope": 0.2,
"batch_size": 30,
"num_classes": 4,
"num_modalities": 2,
"number_images_training": 1,
"learning_rate": 0.0001,
"weight_decay": 0,
"beta1": 0.9,
"beta2": 0.999,
"epochs": 100,
"validation_every_epoch": 1,
"checkpoint_file": "checkpoint.pth.tar",
"checkpoint_dir": "./checkpoints/",
"data_loader_workers": 2,
"pin_memory": true,
"async_loading": true,
"data_mode": "imgs",
"data_directory": "./data/iSEG_preprocessed",
"x_train": "",
"y_train": "",
"x_valid": "",
"y_valid": "",
"x_test": "",
"y_test": ""
}