-
Notifications
You must be signed in to change notification settings - Fork 39
/
word_tokenizer.go
305 lines (257 loc) · 7.71 KB
/
word_tokenizer.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
package sentences
import (
"regexp"
"strings"
"unicode"
)
// WordTokenizer is the primary interface for tokenizing words
type WordTokenizer interface {
TokenParser
Tokenize(string, bool) []*Token
}
// TokenType are helpers to get the type of a token
type TokenType interface {
Type(*Token) string
// The type with its final period removed if it has one.
TypeNoPeriod(*Token) string
// The type with its final period removed if it is marked as a sentence break.
TypeNoSentPeriod(*Token) string
}
// TokenFirst are helpers to determine the case of the token's first letter
type TokenFirst interface {
// True if the token's first character is lowercase
FirstLower(*Token) bool
// True if the token's first character is uppercase.
FirstUpper(*Token) bool
}
// TokenExistential are helpers to determine what type of token we are dealing with.
type TokenExistential interface {
// True if the token text is all alphabetic.
IsAlpha(*Token) bool
// True if the token text is that of an ellipsis.
IsEllipsis(*Token) bool
// True if the token text is that of an initial.
IsInitial(*Token) bool
// True if the token text is that of an number as part of a list.
IsListNumber(*Token) bool
// True if the token text is that of a number.
IsNumber(*Token) bool
// True if the token is either a number or is alphabetic.
IsNonPunct(*Token) bool
// True if the token is first part of a coordinate.
IsCoordinatePartOne(*Token) bool
// True if the token is second part of a coordinate.
IsCoordinatePartTwo(*Token) bool
// Does this token end with a period?
HasPeriodFinal(*Token) bool
// Does this token end with a punctuation and a quote?
HasSentEndChars(*Token) bool
// Does this token end with ambigiuous punctuation?
HasUnreliableEndChars(*Token) bool
}
// TokenParser is the primary token interface that determines the context and type of a tokenized word.
type TokenParser interface {
TokenType
TokenFirst
TokenExistential
}
// DefaultWordTokenizer is the default implementation of the WordTokenizer
type DefaultWordTokenizer struct {
PunctStrings
}
// NewWordTokenizer creates a new DefaultWordTokenizer
func NewWordTokenizer(p PunctStrings) *DefaultWordTokenizer {
return &DefaultWordTokenizer{p}
}
// Tokenize breaks text into words while preserving their character position, whether it starts
// a new line, and new paragraph.
func (p *DefaultWordTokenizer) Tokenize(text string, onlyPeriodContext bool) []*Token {
textLength := len(text)
if textLength == 0 {
return nil
}
tokens := make([]*Token, 0, 50)
lastSpace := 0
lineStart := false
paragraphStart := false
getNextWord := false
for i, char := range text {
if !unicode.IsSpace(char) && !IsCjkPunct(char) && i != textLength-1 {
continue
}
if IsCjkPunct(char) {
i += len(string(char))
}
if char == '\n' {
if lineStart {
paragraphStart = true
}
lineStart = true
}
var cursor int
if i == textLength-1 {
cursor = textLength
} else {
cursor = i
}
word := strings.TrimSpace(text[lastSpace:cursor])
if word == "" {
continue
}
hasSentencePunct := p.PunctStrings.HasSentencePunct(word)
if onlyPeriodContext && !hasSentencePunct && !getNextWord {
lastSpace = cursor
continue
}
token := NewToken(word)
token.Position = cursor
token.ParaStart = paragraphStart
token.LineStart = lineStart
tokens = append(tokens, token)
lastSpace = cursor
lineStart = false
paragraphStart = false
if hasSentencePunct {
getNextWord = true
} else {
getNextWord = false
}
}
if len(tokens) == 0 {
token := NewToken(text)
token.Position = textLength
tokens = append(tokens, token)
}
return tokens
}
// Type returns a case-normalized representation of the token.
func (p *DefaultWordTokenizer) Type(t *Token) string {
typ := t.reNumeric.ReplaceAllString(strings.ToLower(t.Tok), "##number##")
if len(typ) == 1 {
return typ
}
// removing comma from typ
return strings.Replace(typ, ",", "", -1)
}
// TypeNoPeriod is the type with its final period removed if it has one.
func (p *DefaultWordTokenizer) TypeNoPeriod(t *Token) string {
typ := p.Type(t)
if len(typ) > 1 && string(typ[len(typ)-1]) == "." {
return string(typ[:len(typ)-1])
}
return typ
}
// TypeNoSentPeriod is the type with its final period removed if it is marked as a sentence break.
func (p *DefaultWordTokenizer) TypeNoSentPeriod(t *Token) string {
if p == nil {
return ""
}
if t.SentBreak {
return p.TypeNoPeriod(t)
}
return p.Type(t)
}
// FirstUpper is true if the token's first character is uppercase.
func (p *DefaultWordTokenizer) FirstUpper(t *Token) bool {
if t.Tok == "" {
return false
}
runes := []rune(t.Tok)
return unicode.IsUpper(runes[0])
}
// FirstLower is true if the token's first character is lowercase
func (p *DefaultWordTokenizer) FirstLower(t *Token) bool {
if t.Tok == "" {
return false
}
runes := []rune(t.Tok)
return unicode.IsLower(runes[0])
}
// IsEllipsis is true if the token text is that of an ellipsis.
func (p *DefaultWordTokenizer) IsEllipsis(t *Token) bool {
return t.reEllipsis.MatchString(t.Tok)
}
// IsNumber is true if the token text is that of a number.
func (p *DefaultWordTokenizer) IsNumber(t *Token) bool {
return strings.HasPrefix(t.Tok, "##number##")
}
// IsInitial is true if the token text is that of an initial.
func (p *DefaultWordTokenizer) IsInitial(t *Token) bool {
return t.reInitial.MatchString(t.Tok)
}
// IsInitial is true if the token text is that of a list number.
func (p *DefaultWordTokenizer) IsListNumber(t *Token) bool {
return t.reListNumber.MatchString(t.Tok)
}
// IsAlpha is true if the token text is all alphabetic.
func (p *DefaultWordTokenizer) IsAlpha(t *Token) bool {
return t.reAlpha.MatchString(t.Tok)
}
// IsCoordinatePartTwo is true if the token text might be the second part of a coordiate.
func (p *DefaultWordTokenizer) IsCoordinatePartOne(t *Token) bool {
return strings.Compare(t.Tok, "N°.") == 0
}
// IsCoordinatePartTwo is true if the token text might be the second part of a coordiate.
func (p *DefaultWordTokenizer) IsCoordinatePartTwo(t *Token) bool {
return t.reCoordinateSecondPart.MatchString(t.Tok)
}
// IsNonPunct is true if the token is either a number or is alphabetic.
func (p *DefaultWordTokenizer) IsNonPunct(t *Token) bool {
nonPunct := regexp.MustCompile(p.PunctStrings.NonPunct())
return nonPunct.MatchString(p.Type(t))
}
// HasPeriodFinal is true if the last character in the word is a period
func (p *DefaultWordTokenizer) HasPeriodFinal(t *Token) bool {
return strings.HasSuffix(t.Tok, ".") || strings.HasSuffix(t.Tok, "。")
}
// HasSentEndChars finds any punctuation excluding the period final
func (p *DefaultWordTokenizer) HasSentEndChars(t *Token) bool {
enders := []string{
`."`, `.'`, `.)`,
`?`, `?"`, `?'`, `?)`,
`!`, `!"`, `!'`, `!)`, `!’`, `!”`,
`。”`, `。’`, `。)`,
`?`, `?”`, `?’`, `?)`,
`!`, `!”`, `!’`, `!)`, `!’`, `!”`,
}
for _, ender := range enders {
if strings.HasSuffix(t.Tok, ender) {
return true
}
}
parens := []string{
`.[`, `.(`, `."`, `.'`,
`?[`, `?(`,
`![`, `!(`,
`。【`, `。(`, `。”`, `。’`,
`?【`, `?(`,
`!【`, `!(`,
}
for _, paren := range parens {
if strings.Index(t.Tok, paren) != -1 {
return true
}
}
return false
}
// Find any punctuation that might mean the end of a sentence but doesn't have to
func (p *DefaultWordTokenizer) HasUnreliableEndChars(t *Token) bool {
enders := []string{
`."`, `.'`, `.)`, `.’`, `.”`,
`?"`, `?'`, `?)`, `?’`, `?”`,
`!"`, `!'`, `!)`, `!’`, `!”`,
}
for _, ender := range enders {
if strings.HasSuffix(t.Tok, ender) {
return true
}
}
return false
}
func IsCjkPunct(r rune) bool {
switch r {
case '。', ';', '!', '?':
return true
}
return false
}