-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.json
42 lines (41 loc) · 999 Bytes
/
config.json
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
{
"model" : {
"model_params" : {
"model_output_dim" : 95,
"lstm_output_dim" : 200,
"max_time_steps" : 60,
"ngram_params" : [{
"vocab_len" : 42,
"embed_dim" : 30
}, {
"vocab_len" : 925,
"embed_dim" : 100
}, {
"vocab_len" : 8573,
"embed_dim" : 130
}
]},
"layers" : [
"Embedding",
"Embedding",
"Embedding",
"Lstm",
"Lstm",
"Lstm",
"Linear",
"Dropout",
"Dropout",
"Dropout"
]
},
"training_params" : {
"is_train" : "False",
"start_epoch" : 201,
"batch_size" : 32,
"end_epoch" : 300,
"decay_rate" : 0.99,
"train_embeddings" : "True",
"early_stopping" : "True",
"early_stop_window" : 15
}
}