-
Notifications
You must be signed in to change notification settings - Fork 12
/
cifar10-cnn48x2.yaml
78 lines (75 loc) · 1.37 KB
/
cifar10-cnn48x2.yaml
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
74
75
76
77
dataset: cifar10
architecture:
name: CNN
conv_depth: 2
num_filters: 48
filter_size: 5
padding_size: 2
pool_size: 2
dense_depth: 1
num_dense_units: 256
device: cuda
# Minimisation
minima_count: 10
minimum:
nsteps: 64000
algorithm:
name: SGD
lr: 0.1
momentum: 0.9
scheduler:
name: MultiStepLR
milestones:
- 32000
- 48000
eval:
batch_size: 128
# Landscape exploration
exploration:
value_key: train_loss
weight_key: saddle_train_loss
suggest:
- unfinished
- disconnected
- mst
autoneb:
# The first cycle should contain all information, subsequent cycles only _differences_ from the previous
# 4 times 1000 steps with lr=0.1
- insert:
name: equal
count: 3
subsample_pivot_count: 9
spring_constant: inf
optim:
nsteps: 1000
algorithm:
name: SGD
lr: 0.1
momentum: 0.9
eval:
batch_size: 512
- insert:
name: highest
count: 2
key: dense_train_loss
- {} # same as previous
- {}
# 2 times 2000 steps with lr=0.1
- optim:
nsteps: 2000
- {}
# 4 times lr=0.01
- optim:
nsteps: 1000
algorithm:
lr: 0.01
- {}
- {}
- {}
# 4 times lr=0.001
- optim:
algorithm:
lr: 0.001
- {}
- {}
- {}