-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.yaml
57 lines (55 loc) · 1.29 KB
/
config.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
wandb:
enable: True
api_key: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
entity: chtc-ospool-error-classification
project: pytorch-sweeps-demo
sweep:
name: hello world
method: random
metric:
name: validate_loss
goal: minimize
sweep_preprocessing_runs: 50
sweep_training_runs: 50
preprocessing:
parameters:
m: # number of timeframes in a job matrix
distribution: uniform
min: 10
max: 100
j: # number of jobs for context window
distribution: uniform
min: 10
max: 100
timeframe_len: # duration of a single timeframe in seconds
distribution: uniform
min: 60
max: 300
parameters_default: # used when wandb is disabled
m: 10
j: 10
timeframe_len: 60
training:
data_pathname: '../data/ospool-parsed65.json' # with respect to ml/train.py
parameters:
lstm_layers:
values: [1, 2, 3, 4, 5]
hidden_size:
values: [16, 32, 64, 128]
learning_rate:
distribution: uniform
min: 0.0
max: 0.1
batch_size:
distribution: q_log_uniform_values
q: 8
min: 32
max: 256
epochs:
value: 25
parameters_default: # used when wandb is disabled
lstm_layers: 2
hidden_size: 50,
epochs: 25
batch_size: 256
learning_rate: 0.001