-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguild.yml
61 lines (60 loc) · 1.52 KB
/
guild.yml
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
train:
description: Train the AMAZING model
main: train
flags:
$dest: globals
epochs:
description: Number of epochs to train
default: 6
min: 1
max: 10
activation:
description: Activation function
default: relu
choices:
- relu
- sigmoid
num_dense_layers:
description: Number of dense layers
default: 1
min: 1
max: 5
num_dense_nodes:
description: Number of nodes per dense layer
default: 100
min: 5
max: 512
learning_rate:
description: Learning rate
default: 1e-3
min: 1e-6
max: 1e-1
distribution: loguniform
no_early_stopping:
description: Set to 'yes' to bypass early stopping
flag-value: yes
null-label: stop early as needed
objective:
maximize: epoch_val_acc
compare:
- =activation
- =learning_rate
- =num_dense_layers
- =num_dense_nodes
- =epochs
- epoch_loss step as step
- epoch_loss as loss
- epoch_val_acc as acc
requires:
path: data
default-unpack: no
sources:
- url: http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz
- url: http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz
- url: http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz
- url: http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz
reproduce-result:
description: Reproduce published result
default: true
steps:
- train epochs=15 no_early_stopping=yes --label 'published result'