forked from mead-ml/mead-baseline
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdbpedia.json
More file actions
44 lines (43 loc) · 716 Bytes
/
dbpedia.json
File metadata and controls
44 lines (43 loc) · 716 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"basedir": "dbpedia",
"task": "classify",
"batchsz": 1024,
"features": [
{
"name": "word",
"vectorizer": {
"type": "token1d",
"transform": "baseline.lowercase"
},
"embeddings": {
"label": "w2v-gn"
}
}
],
"preproc": {
"mxlen": 100,
"clean": true
},
"backend": "tensorflow",
"dataset": "dbpedia",
"loader": {
"reader_type": "default"
},
"unif": 0.25,
"model": {
"model_type": "default",
"filtsz": [1,2,3,4,5,7],
"cmotsz": 400,
"dropout": 0.5,
"finetune": true
},
"word_embeddings": {
"label": "glove-42B"
},
"train": {
"epochs": 80,
"optim": "sgd",
"eta": 0.02,
"early_stopping_metric": "acc"
}
}