-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathparams.json
47 lines (44 loc) · 1.18 KB
/
params.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
{
"preprocess":{
"train":0.7,
"test":0.2,
"vocab_size":20,
"total":2000
},
"hidden_nodes":10,
"truncation":10,
"alpha":1e-3,
"beta1":0.9,
"beta2":0.99,
"offset":1e-8,
"batch_size":{"val":32,"cmt":"for mini batch gd"},
"pool_size":{"cmt":"this parameter is for multiprocessing it will divide the batch equally into number of cores available"},
"epochs":100,
"process_parallel":"True",
"training_size":64,
"trueTbtt":"True",
"gru":{
"hidden_nodes":10,
"alpha":1e-3,
"beta1":0.9,
"beta2":0.99,
"offset":1e-8,
"batch_size":{"val":32,"cmt":"for mini batch gd"},
"pool_size":{"cmt":"this parameter is for multiprocessing it will divide the batch equally into number of cores available"},
"epochs":100,
"process_parallel":"True",
"training_size":64
},
"lstm":{
"hidden_nodes":10,
"alpha":1e-3,
"beta1":0.9,
"beta2":0.99,
"offset":1e-8,
"batch_size":{"val":32,"cmt":"for mini batch gd"},
"pool_size":{"cmt":"this parameter is for multiprocessing it will divide the batch equally into number of cores available"},
"epochs":100,
"process_parallel":"True",
"training_size":20
}
}