-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.py
38 lines (34 loc) · 1.12 KB
/
constants.py
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
# Defaults/constants.
ADAM_LR = 0.001
BATCH_SIZE = 64
DISABLE_CUDA = False # If this is set to True, make sure it should be!
DISABLE_HMN_DROPOUT = True # If setting this to False, make sure DISABLE_DROPOUT is also False.
DISABLE_L2_REG = True
DISABLE_GRAD_CLIPPING = True
DISABLE_DROPOUT = True # Remember to set DISABLE_HMN_DROPOUT and DISABLE_POST_ENCODER_DROPOUT
DISABLE_MULTIPLE_SENTINELS = True
DISABLE_POST_ENCODER_DROPOUT = True # If setting this to False, make sure DISABLE_DROPOUT is also False.
DROPOUT = 0.3 if not DISABLE_DROPOUT else 0.0
EMBEDDING_DIM = 300
HIDDEN_DIM = 200 # Denoted by 'l' in the paper.
MAX_ITER = 1
MAXOUT_POOL_SIZE = 16
MAX_CONTEXT_LEN = 600
MAX_GRAD_NORM = 0.5
MAX_QUESTION_LEN = 30
NUM_EPOCHS = 69420
RANDOM_SEED = 1
REG_LAMBDA = 0.1
TRAINING_SAVE_FREQUENCY = 10 # Measured in 'global steps'.
PAD = b"<pad>"
UNK = b"<unk>"
START_VOCAB = [PAD, UNK]
PAD_ID = 0
UNK_ID = 1
SERIALISATION_KEY_BATCH = 'batch'
SERIALISATION_KEY_EPOCH = 'epoch'
SERIALISATION_KEY_GLOBAL_STEP = 'gstep'
SERIALISATION_KEY_MODEL = 'model'
SERIALISATION_KEY_OPTIM = 'optim'
PRINT_SPANS_DURING_TRAINING = True
DISABLE_SHUFFLING = True