forked from mead-ml/mead-baseline
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsst2.json
50 lines (50 loc) · 805 Bytes
/
sst2.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
48
49
50
{
"version": 2,
"task": "classify",
"basedir": "./sst2",
"batchsz": 50,
"features": [
{
"name": "word",
"vectorizer": {
"type": "token1d",
"transform": "baseline.lowercase"
},
"embeddings": {
"label": "w2v-gn"
}
}
],
"preproc": {
"rev": false,
"clean": true
},
"backend": "tensorflow",
"dataset": "SST2",
"reader": {
"type": "default"
},
"unif": 0.25,
"model": {
"type": "default",
"filtsz": [
3,
4,
5
],
"cmotsz": 100,
"dropout": 0.5,
"finetune": true
},
"train": {
"epochs": 2,
"optim": "adadelta",
"eta": 1.0,
"model_zip": true,
"early_stopping_metric": "acc",
"verbose": {
"console": true,
"file": "sst2-cm.csv"
}
}
}