-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.json
106 lines (106 loc) · 1.98 KB
/
config.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"data": "./data/words.csv",
"model": "./models/wiki.en.bin",
"labels": "./data/labels.csv",
"vectors": "./data/vecs.csv",
"Z": "./data/Z_hclust.csv",
"distance": 1,
"cutoff": 5,
"stepsize": 0.5,
"lev_threshold": 3,
"wg_threshold": 2,
"ng_threshold": 2.5,
"trouble": {
"product":"P",
"equipment": "E",
"frozen": "F",
"goods": "G",
"pallet":"B",
"powder": "O",
"machine":"M",
"groupage":"R",
"liquid":"L",
"solution":"S",
"box":"X",
"empty": "MT",
"chilled": "C",
"mix":"I",
"ambient":"A",
"hazardous":"H",
"haz": "HZ",
"series": "SR",
"agricultural": "AG",
"appliances": "AP",
"bales": "BL",
"bottle": "BT",
"tinned": "T",
"carton": "CR",
"compressed": "CM",
"concentrate": "CT",
"drums": "DR",
"dry": "D",
"bulk": "BU",
"kitchen": "K",
"additive": "AD",
"recycled": "RC",
"refrigerated": "RF",
"supplies": "SP",
"waste": "W",
"pellets": "PL",
"granules": "GR",
"fittings": "FT",
"components": "CP",
"cylinder" : "CY",
"tank" : "T"
},
"stoppers": [
"entity",
"credit card",
"abstraction",
"artifact",
"commercial",
"commercial enterprise",
"substance",
"physical entity",
"reproductive structure",
"communication",
"covering",
"device",
"discipline",
"dish",
"drug",
"material",
"matter",
"message",
"person",
"utility",
"organism",
"vascular plant",
"whole",
"object",
"body part",
"administrative unit",
"application",
"aquatic vertebrate",
"activity",
"events",
"causal agent",
"artillery",
"feeling",
"chamber",
"visual property",
"athlete",
"constant",
"control",
"imaginary being",
"psychological feature"
],
"decode_output":true,
"regex": [
["[/!#,.`\\[\\]\\(\\)]", " "],
[" ", " "],
["x?[0-9]x?", ""],
["&|\\+", ""],
[" of ", " "]
]
}