-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json
More file actions
26 lines (25 loc) · 731 Bytes
/
config.json
File metadata and controls
26 lines (25 loc) · 731 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
{
"data": {
"train_dir": "/Users/masha/Data/Train",
"model_dir": "/Users/masha/Data/Model",
"train_portion": 0.5,
"test_portion": 0.25
},
"training": {
"nb_epochs": 200,
"nb_cycles": 20,
"batch_size": 64,
"nb_class": 2,
"max_length": 100,
"training_portion": 0.8,
"lrate_max": 0.001,
"dropout": 0.2,
"max_length": 100,
"nb_hiddens": 64,
"by_sentence": false,
"activation": "sigmoid",
"loss": "binary_crossentropy",
"metrics": "accuracy",
"optimizer": "adam"
}
}