-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeta_params.json
More file actions
35 lines (32 loc) · 776 Bytes
/
meta_params.json
File metadata and controls
35 lines (32 loc) · 776 Bytes
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
{
"model" : {
"embed_dim" : 300,
"sentence_hidden_dim" : 256,
"hierarchial_hidden_dim" : 512,
"da_hidden_dim" : 64,
"da_embed_size" : 50,
"ff_hidden_dim" : 256,
"ff_dropout_prob": 0.3,
"batch_size" : 128,
"num_slots" : 35,
"ngrams" : ["3"]
},
"training" : {
"learning_rate" : 0.001
},
"meta_training" : {
"meta_epochs": 20,
"meta_outer_batch_size": 3,
"meta_inner_batch_size": 128,
"meta_learning_rate": 0.001,
"meta_optimizer": "Adam",
"grad_clip" : 5.0
},
"data" : {
"batch_size": 128,
"num_of_slots": 35,
"shuffle": 1,
"eval_batch_size": 1,
"num_workers": 1
}
}