-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathconfig.json.sample
More file actions
26 lines (26 loc) · 784 Bytes
/
config.json.sample
File metadata and controls
26 lines (26 loc) · 784 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
{
"BASE_DATA_DIR": "../data",
"DATA_DIR": "test/working-set/",
"label_type": "boundary",
"vocab_file": "index_word.txt",
"char_vocab_file": "index_char.txt",
"labels_file": "thesaurus_boundary_test.txt",
"boundary_file": "thesaurus_boundary_test.txt",
"category_file": "thesaurus_category_test.txt",
"BASE_OUT_DIR": "./output",
"SAVE_MODEL_DIR": "models",
"MODEL_PREFIX": "model_bnd",
"RNN_LAYER_TYPE": "LSTM",
"maxlen": 100,
"max_charlen": 20,
"num_hidden_layers": 2,
"embedding_size": 128,
"char_embedding_size": 64,
"nb_filters": 10,
"hidden_layer_size": 100,
"optimizer": "adam",
"n_epochs": 100,
"save_every": 10,
"model_type": "brnn",
"data_vectors": ["X_train.npy", "Y_boundary_train.npy", "X_test.npy", "Y_boundary_test.npy"]
}