-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.go
162 lines (128 loc) · 3.81 KB
/
parse.go
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
package budoux
import (
"sort"
"unicode/utf8"
)
// invalidFeature invalid feature string.
const invalidFeature = "▔"
// Parse returns splitted string slice from input.
// It is shorthand for budoux.ParseWithThreshold(model, in, budoux.DefaultThreshold).
func Parse(model Model, in string) []string {
return ParseWithThreshold(model, in, DefaultThreshold)
}
// ParseWithThreshold returns splitted string slice from input.
func ParseWithThreshold(model Model, in string, threshold int) []string {
if in == "" {
return []string{in}
}
out := []string{}
p1 := "U" // unknown
p2 := "U" // unknown
p3 := "U" // unknown
w1, b1 := "", invalidFeature // i-3
w2, b2 := "", invalidFeature // i-2
w3, s3, b3 := getUnicodeBlockAndFeature(in, 0) // i-1
w4, s4, b4 := getUnicodeBlockAndFeature(in, s3) // i
w5, s5, b5 := getUnicodeBlockAndFeature(in, s3+s4) // i+1
start := 0
end := s3
next := s3 + s4 + s5
for s3 != 0 {
w6, s6, b6 := getUnicodeBlockAndFeature(in, next)
score := getScore(model, w1, w2, w3, w4, w5, w6, b1, b2, b3, b4, b5, b6, p1, p2, p3)
if score > threshold {
out = append(out, in[start:end])
start = end
}
p1 = p2
p2 = p3
if score > 0 {
p3 = "B" // positive
} else {
p3 = "O" // negative
}
w1, b1 = w2, b2
w2, b2 = w3, b3
w3, s3, b3 = w4, s4, b4
w4, s4, b4 = w5, s5, b5
w5, s5, b5 = w6, s6, b6
end += s3
next += s6
}
if start < len(in) {
out = append(out, in[start:])
}
return out
}
// getUnicodeBlockAndFeature returns unicode character and block feature from rune slice.
func getUnicodeBlockAndFeature(in string, index int) (string, int, string) {
if len(in) <= index {
return "", 0, invalidFeature // out of index.
}
r, size := utf8.DecodeRuneInString(in[index:])
if r == utf8.RuneError {
return "", size, invalidFeature
}
i := sort.Search(len(unicodeBlocks), func(i int) bool {
return r < unicodeBlocks[i]
})
return in[index : index+size], size, blockFeatures[i]
}
// getScore from features.
func getScore(model Model, w1, w2, w3, w4, w5, w6, b1, b2, b3, b4, b5, b6, p1, p2, p3 string) int {
score := 0
// UP is means unigram of previous results.
score += model["UP1:"+p1]
score += model["UP2:"+p2]
score += model["UP3:"+p3]
// BP is means bigram of previous results.
score += model["BP1:"+p1+p2]
score += model["BP2:"+p2+p3]
// UW is means unigram of words.
score += model["UW1:"+w1]
score += model["UW2:"+w2]
score += model["UW3:"+w3]
score += model["UW4:"+w4]
score += model["UW5:"+w5]
score += model["UW6:"+w6]
// BW is means bigram of words.
score += model["BW1:"+w2+w3]
score += model["BW2:"+w3+w4]
score += model["BW3:"+w4+w5]
// TW is means trigram of words.
score += model["TW1:"+w1+w2+w3]
score += model["TW2:"+w2+w3+w4]
score += model["TW3:"+w3+w4+w5]
score += model["TW4:"+w4+w5+w6]
// UB is means unigram of unicode blocks.
score += model["UB1:"+b1]
score += model["UB2:"+b2]
score += model["UB3:"+b3]
score += model["UB4:"+b4]
score += model["UB5:"+b5]
score += model["UB6:"+b6]
// BB is means bigram of unicode blocks.
score += model["BB1:"+b2+b3]
score += model["BB2:"+b3+b4]
score += model["BB3:"+b4+b5]
// TB is means trigram of unicode blocks.
score += model["TB1:"+b1+b2+b3]
score += model["TB2:"+b2+b3+b4]
score += model["TB3:"+b3+b4+b5]
score += model["TB4:"+b4+b5+b6]
// UQ is combination of UP and UB.
score += model["UQ1:"+p1+b1]
score += model["UQ2:"+p2+b2]
score += model["UQ3:"+p3+b3]
// BQ is combination of UP and BB.
score += model["BQ1:"+p2+b2+b3]
score += model["BQ2:"+p2+b3+b4]
score += model["BQ3:"+p3+b2+b3]
score += model["BQ4:"+p3+b3+b4]
// TQ is combination of UP and TB.
score += model["TQ1:"+p2+b1+b2+b3]
score += model["TQ2:"+p2+b2+b3+b4]
score += model["TQ3:"+p3+b1+b2+b3]
score += model["TQ4:"+p3+b2+b3+b4]
return score
}