-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmnist.json
47 lines (45 loc) · 920 Bytes
/
mnist.json
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
{
"name": "MNIST",
"n_gpu": 1,
"arch": {
"type": "MNIST_VAE",
"args": {}
},
"data_loader": {
"type": "MnistDataLoader",
"args":{
"data_dir": "mnist_data/",
"batch_size": 64,
"shuffle": true,
"validation_split": 0,
"num_workers": 1
}
},
"optimizer": {
"type": "Adam",
"args":{
"lr": 0.001
}
},
"loss": "WiSE_UB2",
"metrics": [
"kl_div", "reconstruct"
],
"lr_scheduler": {
"type": "StepLR",
"args": {
"step_size": 60,
"gamma": 0.5
}
},
"trainer": {
"epochs": 30,
"save_dir": "mnist_saved/",
"save_period": 10,
"verbosity": 2,
"monitor": "off",
"early_stop": 0,
"tensorboardX": true,
"sample_size": 2
}
}