-
Notifications
You must be signed in to change notification settings - Fork 26
/
config_g2s.json
51 lines (44 loc) · 1.17 KB
/
config_g2s.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
42
43
44
45
46
47
48
49
50
51
{
"train_path": "data/2m.json",
"finetune_path": "data/training.json",
"test_path": "data/dev.json",
"word_vec_path": "data/vectors_RwNN.txt.st",
"suffix": "silver_2m",
"model_dir": "logs_g2s",
"isLower": true,
"pointer_gen": true,
"use_coverage": true,
"attention_vec_size": 600,
"batch_size": 100,
"beam_size": 5,
"num_syntax_match_layer": 9,
"max_node_num": 180,
"max_in_neigh_num": 2,
"max_out_neigh_num": 8,
"min_answer_len": 0,
"max_answer_len": 50,
"learning_rate": 0.0005,
"lambda_l2": 1e-8,
"dropout_rate": 0.1,
"cov_loss_wt": 0.1,
"max_epochs": 10,
"optimize_type": "adam",
"with_highway": false,
"highway_layer_num": 1,
"with_char": false,
"char_dim": 100,
"char_lstm_dim": 100,
"max_char_per_word": 20,
"attention_type": "hidden",
"way_init_decoder": "all",
"edgelabel_dim": 100,
"neighbor_vector_dim": 600,
"fix_word_vec": false,
"compress_input": false,
"compress_input_dim": 300,
"gen_hidden_size": 600,
"num_softmax_samples": 100,
"mode": "ce_train",
"config_path": "config.json",
"generate_config": false
}