-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
30 lines (30 loc) · 988 Bytes
/
config.json
File metadata and controls
30 lines (30 loc) · 988 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
{
"preprocessing": {
"exec_preprocessing": true,
"input_file": "data/aliceInWonderland.txt",
"sequence_chars_length": 100,
"checkpoints": {
"char2intDict_file": "preprocessingCheckpoints/char2intDict",
"int2charDict_file": "preprocessingCheckpoints/int2charDict",
"vocabulary_file": "preprocessingCheckpoints/vocab",
"X_file": "preprocessingCheckpoints/X",
"Y_file": "preprocessingCheckpoints/Y"
}
},
"training": {
"exec_training": true,
"load_weights_filename": "trainingCheckpoints/weights-ep_02-loss_2.7879.hdf5",
"lstm_units": 256,
"dropout_probability": 0.2,
"epochs_qty": 10,
"gradient_batch_size": 128,
"checkpoints":{
"foldername": "trainingCheckpoints"
}
},
"generation": {
"exec_generation": true,
"text_chars_length": 1000,
"foldername": "result"
}
}