ENIAMtokenizer.ml
25.8 KB
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
(*
* ENIAMtokenizer, a tokenizer for Polish
* Copyright (C) 2016 Wojciech Jaworski <wjaworski atSPAMfree mimuw dot edu dot pl>
* Copyright (C) 2016 Institute of Computer Science Polish Academy of Sciences
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*)
open Xstd
open ENIAMtokenizerTypes
open ENIAMinflexion
exception ParseError of string * string * int
let remove_comments line =
try
let n = String.index line '#' in
String.sub line 0 n
with Not_found -> line
let rec parse_param_names_rec i0 rev = function
(i,"@ROLE_NAMES") :: tokens -> i, List.rev rev, (i,"@ROLE_NAMES") :: tokens
| (i,"@SELPREF_NAMES") :: tokens -> i, List.rev rev, (i,"@SELPREF_NAMES") :: tokens
| (i,"@LEXICON") :: tokens -> i, List.rev rev, (i,"@LEXICON") :: tokens
| (i,t) :: tokens -> parse_param_names_rec i0 ((i,t) :: rev) tokens
| [] -> raise (ParseError("parse_param_names_rec", "unexpexted end of input", i0))
let parse_param_names i0 = function
(i,"@PARAM_NAMES") :: tokens -> parse_param_names_rec i [] tokens
| (i,s) :: _ -> raise (ParseError("parse_param_names", "'@PARAM_NAMES' expected while '" ^ s ^ "' found", i))
| [] -> raise (ParseError("parse_param_names", "unexpexted end of input", i0))
let rec parse_selpref_names_rec i0 rev = function
(i,"@ROLE_NAMES") :: tokens -> i, List.rev rev, (i,"@ROLE_NAMES") :: tokens
| (i,"@LEXICON") :: tokens -> i, List.rev rev, (i,"@LEXICON") :: tokens
| (i,t) :: tokens -> parse_selpref_names_rec i0 ((i,t) :: rev) tokens
| [] -> raise (ParseError("parse_selpref_names_rec", "unexpexted end of input", i0))
let parse_selpref_names i0 = function
(i,"@SELPREF_NAMES") :: tokens -> parse_selpref_names_rec i [] tokens
| (i,s) :: _ -> raise (ParseError("parse_selpref_names", "'@SELPREF_NAMES' expected while '" ^ s ^ "' found", i))
| [] -> raise (ParseError("parse_selpref_names", "unexpexted end of input", i0))
let rec parse_role_names_rec i0 rev = function
(i,"@LEXICON") :: tokens -> i, List.rev rev, (i,"@LEXICON") :: tokens
| (i,t) :: tokens -> parse_role_names_rec i0 ((i,t) :: rev) tokens
| [] -> raise (ParseError("parse_role_names_rec", "unexpexted end of input", i0))
let parse_role_names i0 = function
(i,"@ROLE_NAMES") :: tokens -> parse_role_names_rec i [] tokens
| (i,"@LEXICON") :: tokens -> i, [], (i,"@LEXICON") :: tokens
| (i,s) :: _ -> raise (ParseError("parse_role_names", "'@ROLE_NAMES' expected while '" ^ s ^ "' found", i))
| [] -> raise (ParseError("parse_role_names", "unexpexted end of input", i0))
let rec split_semic i0 found rev = function
(i1,"lemma") :: (i2,"=") :: (i3,";") :: l -> split_semic (if rev = [] then i1 else i0) found ((i1,";") :: (i2,"=") :: (i3,"lemma") :: rev) l
| (i,";") :: l -> split_semic i ((i0, List.rev rev) :: found) [] l
| (i,s) :: l -> split_semic (if rev = [] then i else i0) found ((i,s) :: rev) l
| [] -> if rev = [] then List.rev found else List.rev ((i0, List.rev rev) :: found)
let rec split_comma i0 found rev = function
(i1,"lemma") :: (i2,"=") :: (i3,",") :: l -> split_comma (if rev = [] then i1 else i0) found ((i1,",") :: (i2,"=") :: (i3,"lemma") :: rev) l
| (i,",") :: l -> split_comma i ((i0, List.rev rev) :: found) [] l
| (i,s) :: l -> split_comma (if rev = [] then i else i0) found ((i,s) :: rev) l
| [] -> if rev = [] then List.rev found else List.rev ((i0, List.rev rev) :: found)
let rec split_star i0 found rev = function
(i,"*") :: l -> split_star i ((i0, List.rev rev) :: found) [] l
| (i,s) :: l -> split_star (if rev = [] then i else i0) found ((i,s) :: rev) l
| [] -> if rev = [] then List.rev found else List.rev ((i0, List.rev rev) :: found)
let rec split_plus i0 found rev = function
(i,"+") :: l -> split_plus i ((i0, List.rev rev) :: found) [] l
| (i,s) :: l -> split_plus (if rev = [] then i else i0) found ((i,s) :: rev) l
| [] -> if rev = [] then List.rev found else List.rev ((i0, List.rev rev) :: found)
(*let catch_selector_of_string i proc s =
try selector_of_string s
with _ -> raise (ParseError(proc, "unknown selector: " ^ s, i))*)
let match_selectors = function
i0,(i,s) :: l -> i,(*catch_selector_of_string i "match_selectors"*) s,l
| i0,[] -> raise (ParseError("match_selectors", "empty", i0))
let match_relation = function
(* cat,"=" :: "=" :: l -> cat,StrictEq,l *)
(* | i,cat,(_,"!") :: (_,"=") :: l -> i,cat,Neq,l *)
| i,cat,(_,"=") :: l -> i,cat,(*Eq,*)l
| _,cat,(i,s) :: l -> raise (ParseError("match_relation", "relation symbol not found: " ^ String.concat " " (s :: Xlist.map l snd), i))
| i,cat,[] -> raise (ParseError("match_relation", "empty", i))
let rec split_mid i0 rev = function
(i1,s) :: (i2,"|") :: l -> split_mid i2 ((i1,s) :: rev) l
| (i1,s1) :: (i2,s2) :: (i3,"|") :: l -> split_mid i3 ((i1,s1^" "^s2) :: rev) l
| (i1,s1) :: (i2,s2) :: (i3,s3) :: (i4,"|") :: l -> split_mid i4 ((i1,s1^" "^s2^" "^s3) :: rev) l
| (i1,s1) :: (i2,s2) :: (i3,s3) :: (i4,s4) :: (i5,"|") :: l -> split_mid i5 ((i1,s1^" "^s2^" "^s3^" "^s4) :: rev) l
| [i,s] -> List.rev ((i,s) :: rev)
| [i1,s1;i2,s2] -> List.rev ((i1,s1^" "^s2) :: rev)
| [i1,s1;i2,s2;i3,s3] -> List.rev ((i1,s1^" "^s2^" "^s3) :: rev)
| [i1,s1;i2,s2;i3,s3;i4,s4] -> List.rev ((i1,s1^" "^s2^" "^s3^" "^s4) :: rev)
| [] -> raise (ParseError("split_mid", "empty", i0))
| (i,s) :: l -> raise (ParseError("split_mid", "delimiter not found: " ^ String.concat " " (s :: Xlist.map l snd), i))
let rec check_value i0 selector l =
(* let vals = try SelectorMap.find selector_values selector
with Not_found -> raise (ParseError("check_value", "invalid selector: " ^ string_of_selector selector, i0)) in
if vals = [] then () else
Xlist.iter l (fun (i,s) ->
if not (Xlist.mem vals s) then
raise (ParseError("check_value", "invalid selector: " ^ string_of_selector selector ^ "=" ^ s, i)));*)
Xlist.map l snd
let match_value = function
i,cat,(*rel,*)[s] -> cat,(*rel,*) check_value i cat [s]
| i,cat,(*rel,*)[] -> raise (ParseError("match_value", "empty", i))
| i,cat,(*rel,*)l -> cat,(*rel,*) check_value i cat (split_mid i [] l)
let parse_selectors i0 l =
(* print_endline s; *)
(* let l = Xlist.map (Str.full_split (Str.regexp "|\\|,\\|=\\|!") s) (function
Str.Text s -> s
| Str.Delim s -> s) in *)
let ll = split_comma i0 [] [] l in
let l = Xlist.rev_map ll match_selectors in
let l = Xlist.rev_map l match_relation in
let l = Xlist.rev_map l match_value in
l
let manage_lemmata = function
(i1,"lemma") :: (i2,"=") :: (i3,":") :: (i4,",") :: tokens -> [i1,"lemma";i2,"=";i3,":";i4,","],tokens
| (i1,"lemma") :: (i2,"=") :: (i3,":") :: (i4,s) :: (i5,",") :: tokens -> [i1,"lemma";i2,"=";i3,":"^s;i5,","],tokens
| (i1,"lemma") :: (i2,"=") :: (i3,"<") :: (i4,"/") :: (i5,s) :: (i6,",") :: tokens -> [i1,"lemma";i2,"=";i3,"</"^s;i6,","],tokens
| tokens -> [],tokens
let rec find_colon i0 rev = function
(i1,"lemma") :: (i2,"=") :: (i3,":") :: l -> find_colon i0 ((i1,":") :: (i2,"=") :: (i3,"lemma") :: rev) l
| (i,":") :: l -> i,List.rev rev, l
| (i,s) :: l -> find_colon i0 ((i,s) :: rev) l
| [] -> raise (ParseError("find_colon", "':' not found", i0))
let parse_cat i0 sefprefs = function
[i,s] -> if not (StringSet.mem sefprefs s) then raise (ParseError("parse_cat", "unknown sel pref: '"^s^"'", i)) else s, ""
| [i,s;_,"(";_,a1;_,")"] -> if not (StringSet.mem sefprefs s) then raise (ParseError("parse_cat", "unknown sel pref: '"^s^"'", i)) else s, a1
| [i,s;_,"(";_,a1;_,a2;_,")"] -> if not (StringSet.mem sefprefs s) then raise (ParseError("parse_cat", "unknown sel pref: '"^s^"'", i)) else s, a1 ^ " " ^ a2
| [i,s;_,"(";_,a1;_,a2;_,a3;_,")"] -> if not (StringSet.mem sefprefs s) then raise (ParseError("parse_cat", "unknown sel pref: '"^s^"'", i)) else s, a1 ^ " " ^ a2 ^ " " ^ a3
| [i,s;_,"(";_,a1;_,a2;_,a3;_,a4;_,")"] -> if not (StringSet.mem sefprefs s) then raise (ParseError("parse_cat", "unknown sel pref: '"^s^"'", i)) else s, a1 ^ " " ^ a2 ^ " " ^ a3 ^ " " ^ a4
| [] -> raise (ParseError("parse_cat", "empty", i0))
| l -> raise (ParseError("parse_cat", "bad syntax: " ^ String.concat " " (Xlist.map l snd), i0))
let parse_entry i0 params sefprefs roles tokens =
let prefix,tokens = manage_lemmata tokens in
let i1,selectors,tokens = find_colon i0 [] tokens in
let i2,cat,schema = find_colon i1 [] tokens in
let selectors = parse_selectors i1 (prefix @ selectors) in
let cat,sense = parse_cat i2 sefprefs cat in
(* let schema = split_star i2 [] [] schema in
let schema = Xlist.map schema (fun (i,l) -> parse_position i params sefprefs roles empty_position l) in*)
i0, selectors, cat, sense, []
let string_of_parse_error proc s i line =
Printf.sprintf "Valence dictionary error in line %d: %s\n%s: %s" i line proc s
let parse_lexicon i0 a params sefprefs roles = function
(i,"@LEXICON") :: tokens ->
let entries = split_semic i [] [] tokens in
Xlist.fold entries ([],true) (fun (entries,is_correct) (i,entry) ->
try (parse_entry i params sefprefs roles entry) :: entries, is_correct
with ParseError(proc,s,i) ->
print_endline (string_of_parse_error proc s i a.(i-1));
entries,false)
| (i,s) :: _ -> raise (ParseError("parse_lexicon", "'@LEXICON' expected while '" ^ s ^ "' found", i))
| [] -> raise (ParseError("parse_lexicon", "unexpexted end of input", i0))
let load_lexicon filename =
let lines = Xstring.split "\n" (File.load_file filename) in
let a = Array.of_list lines in
let lines,no_lines = Xlist.fold lines ([],1) (fun (lines,i) line -> (i,line) :: lines, i+1) in
let lines = Xlist.rev_map lines (fun (i,line) -> i, remove_comments line) in
let tokens = List.flatten (Xlist.rev_map lines (fun (i,line) ->
Xlist.rev_map (Str.full_split
(Str.regexp "\\]\\| \\|\t\\|\r\\|\\?\\|:\\|;\\|&\\|!\\|=\\|}\\|{\\|,\\|\\*\\|/\\|\\+\\|)\\|(\\||\\|\\[\\|\\") line) (function
Str.Text s -> i,s
| Str.Delim s -> i,s))) in
let tokens = Xlist.fold tokens [] (fun tokens -> function
_," " -> tokens
| _,"\t" -> tokens
| _,"\r" -> tokens
| i,t -> (i,t) :: tokens) in
try
let i,param_names,tokens = parse_param_names 1 tokens in
let params = Xlist.fold param_names (StringSet.singleton "_") (fun params (_,param) -> StringSet.add params param) in
let i,selpref_names,tokens = parse_selpref_names i tokens in
let sefprefs = Xlist.fold selpref_names StringSet.empty (fun sefprefs (_,sefpref) -> StringSet.add sefprefs sefpref) in
let i,role_names,tokens = parse_role_names i tokens in
let roles = Xlist.fold role_names StringSet.empty (fun roles (_,role) -> StringSet.add roles role) in
let lexicon,is_correct = parse_lexicon i a params sefprefs roles tokens in
if is_correct then List.rev lexicon else exit 0
with ParseError(proc,s,i) ->
print_endline (string_of_parse_error proc s i a.(i-1));
exit 0
let rec extract_selector i s rev = function
(t,(*Eq,*)x) :: l -> if t = s then x, List.rev rev @ l else extract_selector i s ((t,(*Eq,*)x) :: rev) l
(* | (t,e,x) :: l -> if t = s then failwith "extract_selector 1" else extract_selector i s ((t,e,x) :: rev) l *)
| [] -> failwith ("extract_selector 2: " ^ (*string_of_selector*) s ^ " in line " ^ string_of_int i)
let rec check_extract_selector i s rev = function
(t,(*Eq,*)x) :: l -> if t = s then x, List.rev rev @ l else check_extract_selector i s ((t,(*Eq,*)x) :: rev) l
(* | (t,e,x) :: l -> if t = s then failwith "check_extract_selector 1" else check_extract_selector i s ((t,e,x) :: rev) l *)
| [] -> raise Not_found
let load_include_lemmata i data_path = function
[filename] ->
(try
List.flatten (File.load_tab (data_path ^ "/" ^ filename ^ ".tab") (function
[] -> []
| [s] -> Xlist.rev_map (Xstring.split "|" s) (fun t -> t,"")
| [s;tags] ->
(* Printf.printf "load_include_lemmata: %s\n%!" s; *)
Xlist.rev_map (Xstring.split "|" s) (fun t -> t,tags)
| line -> print_endline (string_of_parse_error "load_include_lemmata" ("File " ^ filename ^ " error in line " ^ String.concat "\t" line) i "");exit 0))
with Unix.Unix_error(Unix.ENOENT, "stat", filename) ->
print_endline (string_of_parse_error "load_include_lemmata" ("File " ^ filename ^ " not found") i "");
exit 0)
| l ->
print_endline (string_of_parse_error "load_include_lemmata" ("Invalid filename: " ^ String.concat "|" l) i "");
exit 0
let extract_valence_lemmata path filename map =
let valence = load_lexicon (path ^ "/" ^ filename) in
Xlist.fold valence map (fun map (i, selectors, cat, sense, schema) ->
let poss,selectors = extract_selector i "pos2" [] selectors in
let lemmata,selectors =
try
let filename,selectors = check_extract_selector i "include-lemmata" [] selectors in
load_include_lemmata i path filename,selectors
with Not_found ->
let lemmata,selectors = try check_extract_selector i "lemma" [] selectors with Not_found -> [],selectors in
((Xlist.rev_map lemmata (fun s -> s,"")),selectors) in
Xlist.fold lemmata map (fun map (lemma,tags) ->
(* if lemma = "środa" || lemma = "Środa" || lemma = "Września" then print_endline lemma; *)
let a = Xlist.fold (Xstring.split "|" tags) {number=""; gender=""; no_sgjp=false; poss_ndm=false; exact_case=false; ont_cat=cat} (fun a -> function
"sg" as x -> {a with number=x}
| "pl" as x -> {a with number=x}
| "m1" as x -> {a with gender=x}
| "m2" as x -> {a with gender=x}
| "m3" as x -> {a with gender=x}
| "n" as x -> {a with gender=x}
| "f" as x -> {a with gender=x}
| "no-sgjp" -> {a with no_sgjp=true}
| "poss-ndm" -> {a with poss_ndm=true}
| "exact-case" -> {a with exact_case=true}
| s -> failwith ("extract_valence_lemmata: unknown tag " ^ s)) in
let map2 = try StringMap.find map lemma with Not_found -> StringMap.empty in
let map2 = Xlist.fold poss map2 (fun map2 pos ->
StringMap.add_inc map2 pos (OntSet.singleton a) (fun set -> OntSet.add set a)) in
StringMap.add map lemma map2))
let load_set filename set =
Xlist.fold (File.load_lines filename) set StringSet.add
let initialize () =
ENIAMinflexion.initialize ();
ENIAMacronyms.mte_patterns := ENIAMacronyms.load_mte_patterns ();
ENIAMurl.top_level_domains := ENIAMurl.load_top_level_domains ();
(* known_lemmata := File.catch_no_file (load_set known_lemmata_filename) StringSet.empty; *)
(* known_orths := File.catch_no_file (load_set known_orths_filename) StringSet.empty; *)
(* known_lemmata := File.catch_no_file (load_set user_known_lemmata_filename) !known_lemmata; *)
known_lemmata := File.catch_no_file (extract_valence_lemmata data_path "valence.dic") !known_lemmata;
(* known_orths := File.catch_no_file (load_set user_known_orths_filename) !known_orths; *)
known_lemmata :=
Xlist.fold !theories_paths !known_lemmata (fun map path ->
File.catch_no_file (extract_valence_lemmata path "valence.dic") map);
(* known_orths :=
Xlist.fold !theories_paths !known_orths (fun set path ->
File.catch_no_file (load_set (path ^ "/known_orths.tab")) set);*)
()
let string_of =
ENIAMtokens.string_of_tokens
let match_tags a pos tags =
(* if a.pos <> pos then raise Not_found else *)
let tags = if a.number <> "" then ENIAMtagset.select_tag "numbers" a.number pos tags else tags in
if a.gender <> "" then ENIAMtagset.select_tag "genders" a.gender pos tags else tags
let get_ontological_category lemma pos tags =
(* Printf.printf "get_ontological_category 1: %s %s %s\n%!" lemma pos (ENIAMtagset.simplify_pos pos); *)
let set =
try StringMap.find (StringMap.find !known_lemmata lemma) (ENIAMtagset.simplify_pos pos)
with Not_found -> OntSet.empty in
(* Printf.printf "get_ontological_category 2: |l|=%d\n%!" (Xlist.size l); *)
let l = OntSet.fold set [] (fun l a ->
try
(* Printf.printf "get_ontological_category 3: %s %s %s\n%!" (ENIAMtagset.render [tags]) a.number a.gender; *)
let tags = match_tags a pos tags in
(* Printf.printf "get_ontological_category 4: %s %s\n%!" (ENIAMtagset.render [tags]) a.ont_cat; *)
(true,a.no_sgjp,a.poss_ndm,a.exact_case,a.ont_cat,tags) :: l
with Not_found -> l) in
(* Printf.printf "get_ontological_category 5: |l|=%d\n%!" (Xlist.size l); *)
if l = [] then [false,false,false,false,"X",tags] else l
(* [StringSet.mem !known_lemmata lemma,false,false,"X",tags] (* FIXME: todo *) *)
(* let lemmatize_strings l =
let l1,l2 = Xlist.fold l ([],[]) (fun (l1,l2) (s,obs,lem) ->
let l = ENIAMinflexion.get_interpretations s in
Xlist.fold l (l1,l2) (fun (l1,l2) i ->
if i.ENIAMinflexion.status = ENIAMinflexion.LemmaVal ||
i.ENIAMinflexion.status = ENIAMinflexion.LemmaAlt then (i,obs,lem) :: l1, l2 else
if StringSet.mem !known_lemmata i.ENIAMinflexion.lemma then (i,obs,lem) :: l1, l2 else l1, (i,obs,lem) :: l2)) in
if l1 = [] then l2,false else l1,true *)
let calculate_priority2 star has_agl_suf equal_case =
if has_agl_suf || (not equal_case) || star = ENIAMmorphologyTypes.Aux2 then max_int else 3
let calculate_priority cat is_in_lexicon lemma_in_sgjp is_validated_by_sgjp has_no_sgjp_tag star has_poss_ndm_tag has_exact_case_tag has_agl_suf equal_case =
let is_in_lexicon = if is_in_lexicon && has_exact_case_tag && not equal_case then false else is_in_lexicon in
match is_in_lexicon,lemma_in_sgjp,is_validated_by_sgjp,has_no_sgjp_tag,(star = ENIAMmorphologyTypes.Ndm),has_poss_ndm_tag with
true,true,true,_,_,_ -> 1,cat
| true,true,false,true,_,_ -> 1,cat
| true,true,false,false,_,_ -> calculate_priority2 star has_agl_suf equal_case, "X"
| true,false,_,_,true,true -> 1,cat
| true,false,_,_,true,false -> calculate_priority2 star has_agl_suf equal_case, "X"
| true,false,_,_,false,_ -> 1,cat
| false,_,true,_,_,_ -> 2,"X"
| false,_,false,_,_,_ -> calculate_priority2 star has_agl_suf equal_case, "X"
let lemmatize_strings2 lemma pos tags best_prior best_l is_validated_by_sgjp star has_agl_suf has_equal_cases =
(* Printf.printf "lemmatize_strings2 1: %d %s %s %s \"%s\"\n%!" best_prior lemma pos (ENIAMtagset.render [tags]) (ENIAMmorphologyRules.string_of_star star); *)
Xlist.fold (get_ontological_category lemma pos tags) (best_prior,best_l) (fun (best_prior,best_l) (is_in_lexicon,has_no_sgjp_tag,has_poss_ndm_tag,has_exact_case_tag,cat,tags) ->
let prior,cat = calculate_priority cat is_in_lexicon
(StringSet.mem !ENIAMinflexion.lemmata lemma) is_validated_by_sgjp has_no_sgjp_tag
star has_poss_ndm_tag has_exact_case_tag has_agl_suf has_equal_cases in
(* Printf.printf "lemmatize_strings2 2: %d %s\n%!" prior cat; *)
if prior > best_prior then best_prior,best_l else
if prior < best_prior then prior,[(*obs,lem,*)lemma,pos,tags,cat] else
best_prior,((*obs,lem,*)lemma,pos,tags,cat) :: best_l)
let lemmatize_strings has_agl_suf l =
Xlist.fold l (1000,[]) (fun (best_prior,best_l) (s,obs,lem) ->
Xlist.fold (get_interpretations s) (best_prior,best_l) (fun (best_prior,best_l) i ->
(* Printf.printf "lemmatize_strings 1: %s\n%!" (string_of_interpretation i); *)
let i = (* FIXME: obejście braku tagu ndm we freq_rules *)
if i.star = ENIAMmorphologyTypes.Productive && i.tags = ["cat","ndm"] then
{i with star=ENIAMmorphologyTypes.Ndm} else i in
(* Printf.printf "lemmatize_strings 2: %s\n%!" (string_of_interpretation i); *)
let is_validated_by_sgjp = i.status = LemmaVal || i.status = LemmaAlt in
Xlist.fold (ENIAMtagset.parse i.interp) (best_prior,best_l) (fun (best_prior,best_l) (pos,tags) -> (* zakładam, że tagi generowane przez analizator morfologiczny są poprawne i nie mają _ *)
if pos = "brev" then best_prior,best_l else
lemmatize_strings2 i.lemma pos tags best_prior best_l is_validated_by_sgjp i.star has_agl_suf (obs = lem))))
let lemmatize_token has_agl_suf = function
SmallLetter(uc,lc) -> lemmatize_strings has_agl_suf [uc,(SL : letter_size),(CL : letter_size);lc,SL,SL]
| CapLetter(uc,lc) -> lemmatize_strings has_agl_suf [uc,(CL : letter_size),(CL : letter_size);lc,CL,SL]
| AllSmall(uc,fc,lc) -> lemmatize_strings has_agl_suf [uc,(AS : letter_size),AC;fc,AS,FC;lc,AS,AS]
| AllCap(uc,fc,lc) -> lemmatize_strings has_agl_suf [uc,(AC : letter_size),AC;fc,AC,FC;lc,AC,AS]
| FirstCap(uc,fc,lc) -> lemmatize_strings has_agl_suf [uc,(FC : letter_size),AC;fc,FC,FC;lc,FC,AS]
| SomeCap(uc,orth,lc) -> lemmatize_strings has_agl_suf [uc,(SC : letter_size),AC;orth,SC,SC;lc,SC,AS]
| Lemma(lemma,pos,interp) ->
Xlist.fold interp (1000,[]) (fun (best_prior,best_l) tags ->
lemmatize_strings2 lemma pos tags best_prior best_l true ENIAMmorphologyTypes.Star has_agl_suf true)
| t -> 1000,[]
let is_known_orth = function
SmallLetter(uc,lc) -> true
| CapLetter(uc,lc) -> true
| AllSmall(uc,fc,lc) -> StringSet.mem !known_orths uc || StringSet.mem !known_orths fc || StringSet.mem !known_orths lc
| AllCap(uc,fc,lc) -> StringSet.mem !known_orths uc || StringSet.mem !known_orths fc || StringSet.mem !known_orths lc
| FirstCap(uc,fc,lc) -> StringSet.mem !known_orths uc || StringSet.mem !known_orths fc || StringSet.mem !known_orths lc
| SomeCap(uc,orth,lc) -> StringSet.mem !known_orths uc || StringSet.mem !known_orths orth || StringSet.mem !known_orths lc
| Lemma _ -> false
| t -> true
let rec lemmatize_rec = function
Token t ->
(* print_endline ("lemmatize_rec 1: " ^ t.orth ^ " " ^ ENIAMtokens.string_of_token t.token); *)
(*let l,b = lemmatize_token (Xlist.mem t.attrs HasAglSuffix) t.token in
if Xlist.mem t.attrs HasAglSuffix && not b then Variant[],false else
let t = {t with attrs=Xlist.remove_all t.attrs HasAglSuffix} in
let attrs = if b then t.attrs else LemmNotVal :: t.attrs in
let l = List.flatten (Xlist.rev_map l (fun (i,obs,lem) ->
if (not b) && obs <> lem then [] else
Xlist.rev_map (ENIAMtagset.parse i.ENIAMinflexion.interp) (fun (pos,tags) -> (* zakładam, że tagi generowane przez analizator morfologiczny są poprawne i nie mają _ *)
Token{t with token=Lemma(i.ENIAMinflexion.lemma,pos,[tags]); attrs=attrs}))) in (* FIXME obs,lem,i.ENIAMinflexion.star,i.ENIAMinflexion.freq,i.ENIAMinflexion.tags *)
if is_known_orth t.token then Variant(Token t :: l), true else Variant l, b*)
let has_agl_suf = Xlist.mem t.attrs HasAglSuffix in
let prior,l = lemmatize_token has_agl_suf t.token in
let t = {t with attrs=Xlist.remove_all t.attrs HasAglSuffix} in
let attrs = if prior <= 2 then t.attrs else LemmNotVal :: t.attrs in
let l = Xlist.rev_map l (fun ((*obs,lem,*)lemma,pos,tags,cat) ->
Token{t with token=Lemma(lemma,pos,[tags]);cat=cat; attrs=attrs}) in
if is_known_orth t.token && not has_agl_suf then [Token t],Variant l,prior else [],Variant l,prior
| Seq[Token{token=RomanDig _};Token{token=SmallLetter("W","w")}] as t -> [t], Variant[], 1
| Seq l ->
(* print_endline ("lemmatize_rec 2: " ^ ENIAMtokens.string_of_tokens 0 (Seq l)); *)
(try
let l,prior = Xlist.fold l ([],0) (fun (l,prior) t ->
let t1,t2,prior2 = lemmatize_rec t in
(* print_endline ("lemmatize_rec 2a: " ^ ENIAMtokens.string_of_tokens 0 (Variant t1));
print_endline ("lemmatize_rec 2b: " ^ ENIAMtokens.string_of_tokens 0 t2);*)
match t1, t2 with
[], Variant[] -> raise Not_found
| [t], Variant[] -> t :: l, prior
| [], _ -> t2 :: l, max prior prior2
| _ -> failwith "lemmatize_rec") in
if prior = 0 then [Seq(List.rev l)], Variant[], 1000
else [], Seq(List.rev l), prior
with Not_found -> [],Variant[],1000)
(* if t1 <>
if t = Variant[] then raise Not_found else
t :: l, b && b2) in
Seq(List.rev l), b
with Not_found -> Variant[],false)*)
| Variant l ->
let l1,l2,prior = Xlist.fold l ([],[],1000) (fun (l1,l2,best_prior) t ->
let t1,t2,prior = lemmatize_rec t in
if prior > best_prior then t1 @ l1,l2,best_prior else
if prior < best_prior then t1 @ l1,[t2],prior else
t1 @ l1,t2 :: l2,best_prior) in
l1,Variant l2,prior
(* let l1,l2 = Xlist.fold l ([],[]) (fun (l1,l2) t ->
let t,b = lemmatize_rec t in
if t = Variant[] then l1,l2 else
if b then t :: l1, l2 else l1, t :: l2) in
if l1 = [] then Variant l2,false else Variant l1,true *)
let lemmatize l =
List.rev (Xlist.rev_map l (fun t ->
let t1,t2,_ = lemmatize_rec t in
(* Printf.printf "lemmatize 1: %s\n%!" (ENIAMtokens.string_of_tokens 0 (Variant (t2 :: t1))); *)
Variant (t2 :: t1)))
(* fst (lemmatize_rec t))) *)
let parse_internal query =
let l = Xunicode.classified_chars_of_utf8_string query in
let l = ENIAMtokens.tokenize l in
let l = ENIAMpatterns.normalize_tokens [] l in
let l = ENIAMpatterns.find_replacement_patterns l in
let l = ENIAMpatterns.remove_spaces [] l in
let l = ENIAMpatterns.find_abr_patterns ENIAMacronyms.abr_patterns l in
(* let l = ENIAMpatterns.find_abr_patterns ENIAMacronyms.query_patterns l in *)
let l = ENIAMpatterns.normalize_tokens [] l in
l
let parse query =
let l = parse_internal query in
let l = lemmatize l in
let l = ENIAMpatterns.normalize_tokens [] l in
(* let l = ENIAMpatterns.process_interpunction [] l in (* FIXME: to trzeba przestawić na po concrafcie *)
let l = ENIAMpatterns.normalize_tokens [] l in*)
(* let l = ENIAMpatterns.manage_query_boundaries l in *)
l