blob: 7e4145de9f3152fb54297676ba44fe8654ca5321 [file] [log] [blame]
Akron310905f2021-08-11 13:49:50 +02001! This tokenizer is based on work by
2! - StandardTokenizerImpl by the Lucene project
3! under the Apache License
4! - https://github.com/dlwh/epic by David Hall (2014)
5! under the Apacahe License
6! - KorAPTokenizerImpl.jflex by Marc Kupietz (2016)
7! under the Apache License
8! - https://github.com/coltekin/TRmorph/tokenize.xfst by Çağrı Çöltekin (2011-2015)
9! under the MIT License
10!
11! The abbreviation list is part of the sentence splitter tool
12! of the IDS.
13
Akron4af79f12021-08-11 14:48:17 +020014define NLout "@_TOKEN_SYMBOL_@";
Akron3de361e2021-08-17 09:56:42 +020015! define NLout "\u000a";
Akron310905f2021-08-11 13:49:50 +020016
17define Digit [%0|1|2|3|4|5|6|7|8|9];
Akrone8837b52021-08-11 17:29:58 +020018define AsciiLetter [a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z];
Akrona854faa2021-10-22 19:31:08 +020019define EOT "\u0004";
Akron310905f2021-08-11 13:49:50 +020020
21!!!!!!!!!!!!!!!!!
22! <from tmorph> !
23!!!!!!!!!!!!!!!!!
Akron3de361e2021-08-17 09:56:42 +020024define WS [" "|"\u0009"|"\u00a0"|"\u1680"|
Akron310905f2021-08-11 13:49:50 +020025 "\u2000"|"\u2001"|"\u2002"|"\u2003"|"\u2004"|"\u2005"|
26 "\u2006"|"\u2007"|"\u2008"|"\u2009"|"\u200a"|
Akron3de361e2021-08-17 09:56:42 +020027 "\u202f"|"\u205f"|"\u3000"];
28
Akrona854faa2021-10-22 19:31:08 +020029define NL ["\u000a"|"\u000b"|"\u000c"|"\u000d"|"\u0085"|"\u2028"|"\u2029"|EOT];
Akron310905f2021-08-11 13:49:50 +020030
31! Punctuation that ends sentences
32! Differs!
Akron3de361e2021-08-17 09:56:42 +020033define SP [["."|"?"|"!"]+|"…"];
34
Akron310905f2021-08-11 13:49:50 +020035! Left punctuation
36define LP ["("|"["|"{"|
37 "“"|"‘"|"‹"|"«"|
38 "'"|%"|
39 ! differs
40 ["'" "'"] |
41 "*"|"/"|"_"| ! Can be Markdown
42 ! from book
43 [%, %,]];
Akron3de361e2021-08-17 09:56:42 +020044
Akron310905f2021-08-11 13:49:50 +020045! Right punctuation - excluding the characters that can be used as apostrophe
46define RP [SP|","|";"|":"|
47 ")"|"]"|"}"|
48 ""|""|"»"|
49 %"|
50 ! differs
51 ["'" "'"]|
52 "*"|"/"|"_"| ! Can be Markdown
53 ! from book
54 [%‘ %‘]|[%’ %’]];
55
56define Sym ["-"|"+"|"<"|">"|"*"|"/"|%=|%@];
57define Apos %'|%’|%`;
Akron4c2a1ad2021-08-31 00:35:53 +020058define Punct [LP|RP|Sym];
Akron310905f2021-08-11 13:49:50 +020059!define nonSym \[WS|LP|RP|Sym];
60!!!!!!!!!!!!!!!!!!
61! </from tmorph> !
62!!!!!!!!!!!!!!!!!!
63
64define Emdash [%- %- (%-)+ | ["\u2014"|"\u2015"|"\u2e3a"|"\u2e3b"|"\ufe58"]+];
65define Dash ["-"|"\u2011"|"\u2012"|"\u2013"|"\u2e1a"|"\ufe63"|"\uff0d"];
66define Slash ["⁄"|"∕"|"/"|"/"];
67define Asterisk ["*"];
68
Akron3de361e2021-08-17 09:56:42 +020069define Char \[WS|NL|Punct|Apos]; ! |¨;
Akron310905f2021-08-11 13:49:50 +020070
71! source lexicon.xfst
72! define Word;
73define Word Char+ ([Dash|Apos|Asterisk] Char+)*;
74
75define URLChar [Char|[Sym - ["<"|">"|%"]]];
76!define Alpha ["a"|"b"|"c"|"d"|"e"|"f"|"g"|"h"|"i"|"j"|"k"|"l"|"m"|"n"|"o"|"p"|"q"|"r"|"s"|"t"|"u"|"v"|"w"|"x"|"y"|"z"|"_"];
77
78define Caseinsensitive [
79a (->) A,
80b (->) B,
81c (->) C,
82d (->) D,
83e (->) E,
84f (->) F,
85g (->) G,
86h (->) H,
87i (->) I,
88j (->) J,
89k (->) K,
90l (->) L,
91m (->) M,
92n (->) N,
93o (->) O,
94p (->) P,
95q (->) Q,
96r (->) R,
97s (->) S,
98t (->) T,
99u (->) U,
100v (->) V,
101w (->) W,
102x (->) X,
103y (->) Y,
104z (->) Z,
105ö (->) Ö,
106ü (->) Ü,
107ä (->) Ä,
108ß (->) {SS}
109];
110
Akron3de361e2021-08-17 09:56:42 +0200111define Abbr @txt"txt/abbrv.txt" %.;
Akron310905f2021-08-11 13:49:50 +0200112
Akron57d01612021-08-11 17:53:19 +0200113define Plusampersand @txt"txt/plusampersand.txt";
114
Akron310905f2021-08-11 13:49:50 +0200115! A solution to the "(author): problem" may be to add ) at the end of any
116! string as a possible ending
117
118define Years ["(" Digit+ (".") ")"] | ["[" Digit+ (".") "]"];
119
Akron78dba062021-10-28 19:30:46 +0200120! 20:00 Uhr
121define Times [ ([%0|1|2]) Digit ( WS ) ":" [%0|1|2|3|4|5|6] Digit ];
122
Akron310905f2021-08-11 13:49:50 +0200123source emoji.xfst
124define Emoji;
125
126! acronyms: U.S.A., I.B.M., etc.
127! use a post-filter to remove dots
128define AcronymDep Char %. [Char %.]+;
129
130define Dot "."|[["["|"("] "d" "o" "t" [")"|"]"]] .o. Caseinsensitive;
131define At "@"|[["["|"("] "a" "t" [")"|"]"]] .o. Caseinsensitive;
132
133define TldEnd [{org}|{de}|{com}] .o. Caseinsensitive;
134
135! Very relaxed URL scheme, not based on the strict Lucene implementation
136define URL [ [ [{http} (s) | {ftp} | {file}] ":" "/" "/"] | [{www} Dot] ]
137URLChar [URLChar|SP]* URLChar
138.o. Caseinsensitive;
139
140define Domain Char+ [Dash Char+]* Dot TldEnd;
141
Akron4c2a1ad2021-08-31 00:35:53 +0200142! XML rule
143define XMLns [AsciiLetter [AsciiLetter|Digit|%-]* (%: AsciiLetter [AsciiLetter|Digit|%-]*)] .o. Caseinsensitive;
144define XML [
145 "<" [
146 [
147 XMLns
148 [WS+ XMLns WS*
149 (%= WS*
150 [[%" [? - %" - %>]+ %"] | [%' [? - %' - %>]+ %']]
151 )
152 ]*
Akron066d99c2021-10-28 19:04:59 +0200153 (WS* "/")
Akron4c2a1ad2021-08-31 00:35:53 +0200154 ]
155 |
156 [
157 "/" XMLns
158 ]
159 ] WS* ">"
160].u;
Akron310905f2021-08-11 13:49:50 +0200161
162!define Email [Alpha [URLChar-At]* At Alpha URLChar* [Dot [[Alpha URLChar+]-Dot-At]]+];
163define Email URLChar+ At URLChar+ [Dot URLChar+]+;
164
165! Twitter user, hashtag, Google+
166define SNS ["@"|"#"|"+"] Char+;
167
168define FileEnd [
169 [{htm} ("l")]|
170 [{doc} ("x")]|
171 {pdf}|
172 ["j" "p" ("e") "g"]|
173 ["m" "p" ["3"|"4"]]|
174 {ogg}|
175 {png}|
176 {avi}|
177 {txt}|
178 {xls}|
179 {xml}|
180 {aac}|
Akrone8837b52021-08-11 17:29:58 +0200181 {gif}|
182 {exe}
Akron310905f2021-08-11 13:49:50 +0200183 ] .o. Caseinsensitive;
Akrone8837b52021-08-11 17:29:58 +0200184
185define File (( AsciiLetter ":" %\ | "/" ) [ Char | "_" | "-" | Char [ %\ | "/" ] ]*) [Char | "-" | "_" ]+ "." FileEnd;
Akron310905f2021-08-11 13:49:50 +0200186
Akrona0bded52021-08-11 15:48:02 +0200187define Streetname Word {str} %.;
Akron4af79f12021-08-11 14:48:17 +0200188
Akron310905f2021-08-11 13:49:50 +0200189! Also supports
190! 19.4.2015, 19/4/2015 etc.
191define DigitPunct ["_"|"-"|"."|","|Slash];
192define Num Digit+ [DigitPunct Digit+]* (Char+);
193
Akrona0bded52021-08-11 15:48:02 +0200194! ordinals
195define Ord Digit ( Digit (Digit) ) %.;
196
Akron310905f2021-08-11 13:49:50 +0200197! TODO:
198! floating point, serial, model numbers, ip addresses, etc.
199! every other segment must have at least one digit
200
201! Omission words like "fu**ing!"
202define Omission Char+ Asterisk Asterisk+ Char*;
203
204
205! TODO: Name words with ' and `
206
Akron310905f2021-08-11 13:49:50 +0200207! Support ASCII elements, like
208! +---------------+
209! <---->, -->, <--
210! +---------------+
211! <---> | Worker Node N |
212! +---------------+
213! |============= Core =============|
214
215
Akron4c2a1ad2021-08-31 00:35:53 +0200216echo - Compile Real Token
Akron310905f2021-08-11 13:49:50 +0200217
Akron78dba062021-10-28 19:30:46 +0200218define RealToken [Punct|Word|XML|Email|URL|SNS|Domain|AcronymDep|File|Ord|Num|Years|Times];
Akron310905f2021-08-11 13:49:50 +0200219
220echo - Introduce Token splitter
Akron4c2a1ad2021-08-31 00:35:53 +0200221
222define Token [
223 RealToken @-> ... NLout,
224 Abbr @-> ... NLout,
225 Plusampersand @-> ... NLout,
226 Emoji @-> ... NLout,
227 [Streetname|Omission|Emdash] @-> ... NLout
228 ]
Akrona854faa2021-10-22 19:31:08 +0200229.o. [[WS|NL]+ @-> 0 || NLout _ ]
Akronf6bdfdb2021-10-23 15:56:53 +0200230.o. [[WS|NL]+ @-> 0 || .#. _ ]
Akron310905f2021-08-11 13:49:50 +0200231;
232
233echo - Introduce Sentence splitter
Akron4c2a1ad2021-08-31 00:35:53 +0200234read regex Token .o. [[["."|"!"|"?"]+|"…"] @-> ... NLout \/ NLout _ ];
Akron310905f2021-08-11 13:49:50 +0200235
Akrona854faa2021-10-22 19:31:08 +0200236! foma -e "source tokenizer.xfst" -q -s && cat text.txt | flookup tokenizer.fst -x -b