-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdla.json
More file actions
73 lines (68 loc) · 1.46 KB
/
dla.json
File metadata and controls
73 lines (68 loc) · 1.46 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "DLA60",
"n_gpu": 0,
"model": "dla60x_c_new",
"train_data_loader": {
"type": "CIFAR10_4x_DataLoader",
"args":{
"root": "data/",
"split": "train",
"batch_size": 32,
"shuffle": true,
"num_workers": 2
}
},
"valid_data_loader": {
"type": "CIFAR10_4x_DataLoader",
"args":{
"root": "data/",
"split": "valid",
"batch_size": 128,
"shuffle": false,
"num_workers": 2
}
},
"optimizer": {
"type": "SGD",
"args":{
"lr": 0.1,
"momentum": 0.9,
"weight_decay": 1e-4
}
},
"loss": {
"type": "CrossEntropyLoss",
"args": {
"label_smoothing": 0.1
}
},
"metrics": [
"accuracy"
],
"lr_scheduler": {
"type": "CosineAnnealingWarmRestarts",
"args": {
"T_0": 20,
"T_mult": 2,
"eta_min": 1e-4
}
},
"train_transform": [
{
"type": "AutoAugment",
"args": {}
}
],
"valid_transform": [],
"mixup": false,
"mix_precision": false,
"trainer": {
"epochs": 300,
"save_dir": "saved/",
"save_period": 1,
"verbosity": 2,
"monitor": "max val_accuracy",
"early_stop": 300,
"tensorboard": false
}
}