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

Download this file

44 lines (35 with data), 864 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
{
"exp_name": "fmgan_experiment",
"agent": "FMGAN_Model",
"phase": "training",
"load_chkpt": false,
"cuda": true,
"gpu_device": 0,
"seed": 1,
"noise_dim": 200,
"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": 2,
"number_unlab_images_training": 12,
"learning_rate_D": 0.0001,
"learning_rate_G": 0.0001,
"weight_decay": 0,
"beta1D": 0.5,
"beta1G": 0.5,
"beta2D": 0.999,
"beta2G": 0.999,
"epochs": 100,
"validation_every_epoch": 1,
"checkpoint_file": "checkpoint.pth.tar",
"checkpoint_dir": "./checkpoints/",
"data_loader_workers": 0,
"pin_memory": false,
"async_loading": true,
"data_mode": "imgs",
"data_directory": "./data/iSEG_preprocessed"
}