-
Notifications
You must be signed in to change notification settings - Fork 0
/
parameters.json
48 lines (44 loc) · 1.04 KB
/
parameters.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
{
"cws_pos_use":{
"fcwsModel": "kcws/models/cws_model.pbtxt",
"fcwsVocab": "kcws/models/cws_vocab.txt",
"fposModel": "kcws/models/pos_model.pbtxt",
"fposVocab": "kcws/models/pos_vocab.txt",
"fuserDict": "dict.txt"
},
"cws_word2vec": {
"sample": 1e-4,
"negative": 0,
"hs": 1,
"binary": 0,
"iter": 5,
"window": 5,
"cbow": 1
},
"cws_train": {
"numTags": 4,
"numHidden": 100,
"batchSize": 100,
"trainSteps":150000,
"learningRate": 0.001,
"trackHistory": 6
},
"pos_word2vec": {
"sample": 1e-4,
"negative": 5,
"hs": 0,
"binary": 0,
"iter": 3,
"window": 5,
"cbow": 0
},
"pos_train":{
"numTags": 74,
"numHidden": 100,
"batchSize": 64,
"trainSteps":50000,
"learningRate": 0.001,
"charWindowSize": 2,
"maxCharsPerWord": 5
}
}