analyze.ml
48.5 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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
(*
* ENIAMmorphology, a morphological analyser and a guesser for Polish
* Copyright (C) 2016-2017 Wojciech Jaworski <wjaworski atSPAMfree mimuw dot edu dot pl>
* Copyright (C) 2016-2017 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 Printf
open ENIAMmorphologyTypes
(* let nexus_path = "/home/yacheu/Dokumenty/Badania/Jezyk i Umysl/Przetwarzanie Języka Naturalnego/zasoby/"
let toshiba_ub_path = "/home/wjaworski/Dokumenty/zasoby/"
let get_host_name () =
let chan = Unix.open_process_in "uname -n" in
input_line chan
let zasoby_path =
match get_host_name () with
"nexus" -> nexus_path
| "toshiba-UB" -> toshiba_ub_path
(* | "mozart" -> "." *)
| s -> failwith ("unknown host: " ^ s) *)
let nlp_resources_path = "../../NLP resources/"
let sgjp_path = nlp_resources_path ^ "SGJP/"
let results_path = "results/"
let lu_path = "../morphology2/plWordnet/"
let lematy_nkjp_filename = "lematy_NKJP1M_freq.tab"
let sgjp_filename2015 = "sgjp-20151020.tab.gz"
let polimorf_filename2015 = "polimorf-20151020.tab.gz"
let sgjp_filename201605 = "sgjp-20160508.tab.gz"
let polimorf_filename201605 = "polimorf-20160508.tab.gz"
let sgjp_filename201607 = "sgjp-20160724.tab.gz"
let polimorf_filename201607 = "polimorf-20160724.tab.gz"
let sgjp_filename = "sgjp-20170730.tab.gz"
let polimorf_filename = "polimorf-20170402.tab.gz"
let adv_sgjp_filename = "adv_sgjp-20170730.tab"
let adj_sgjp_filename = "adj_sgjp-20170730.tab"
let noun_sgjp_filename = "noun_sgjp-20170730.tab"
let verb_sgjp_filename = "verb_sgjp-20170730.tab"
let adv_polimorf_filename = "adv_polimorf-20170402.tab"
let adj_polimorf_filename = "adj_polimorf-20170402.tab"
let noun_polimorf_filename = "noun_polimorf-20170402.tab"
let verb_polimorf_filename = "verb_polimorf-20170402.tab"
(* Test wczytywania słowników i liczenie częstości *)
let _ =
(* print_endline "sgjp_filename2015";
let _ = Dict.load_tab (sgjp_path ^ sgjp_filename2015) in
print_endline "polimorf_filename2015";
let _ = Dict.load_tab (sgjp_path ^ polimorf_filename2015) in
print_endline "sgjp_filename201605";
let _ = Dict.load_tab (sgjp_path ^ sgjp_filename201605) in
print_endline "polimorf_filename201605";
let _ = Dict.load_tab (sgjp_path ^ polimorf_filename201605) in
print_endline "sgjp_filename201607";
let _ = Dict.load_tab (sgjp_path ^ sgjp_filename201607) in
print_endline "polimorf_filename201607";
let _ = Dict.load_tab (sgjp_path ^ polimorf_filename201607) in
print_endline "sgjp_filename";
let _ = Dict.load_tab (sgjp_path ^ sgjp_filename) in
print_endline "polimorf_filename";
let _ = Dict.load_tab (sgjp_path ^ polimorf_filename) in
print_endline "adv_sgjp_filename";
let _ = Dict.load_tab (results_path ^ adv_sgjp_filename) in
print_endline "adj_sgjp_filename";
let _ = Dict.load_tab (results_path ^ adj_sgjp_filename) in
print_endline "noun_sgjp_filename";
let _ = Dict.load_tab (results_path ^ noun_sgjp_filename) in
print_endline "verb_sgjp_filename";
let _ = Dict.load_tab (results_path ^ verb_sgjp_filename) in
print_endline "sgjp_filename2015";
let dict = Dict.load_tab_full (sgjp_path ^ sgjp_filename2015) in
Dict.print_quantities "results/proper-type-sgjp-20151020.txt" Dict.proper_type_selector dict;
Dict.print_quantities "results/genre-sgjp-20151020.txt" Dict.genre_selector dict;
Dict.print_quantities "results/interp-sgjp-20151020.txt" Dict.interp_selector dict;
print_endline "polimorf_filename2015";
let dict = Dict.load_tab_full (sgjp_path ^ polimorf_filename2015) in
Dict.print_quantities "results/proper-type-polimorf-20151020.txt" Dict.proper_type_selector dict;
Dict.print_quantities "results/genre-polimorf-20151020.txt" Dict.genre_selector dict;
Dict.print_quantities "results/interp-polimorf-20151020.txt" Dict.interp_selector dict;
print_endline "sgjp_filename201605";
let dict = Dict.load_tab_full (sgjp_path ^ sgjp_filename201605) in
Dict.print_quantities "results/proper-type-sgjp-20160508.txt" Dict.proper_type_selector dict;
Dict.print_quantities "results/genre-sgjp-20160508.txt" Dict.genre_selector dict;
Dict.print_quantities "results/interp-sgjp-20160508.txt" Dict.interp_selector dict;
print_endline "polimorf_filename201605";
let dict = Dict.load_tab_full (sgjp_path ^ polimorf_filename201605) in
Dict.print_quantities "results/proper-type-polimorf-20160508.txt" Dict.proper_type_selector dict;
Dict.print_quantities "results/genre-polimorf-20160508.txt" Dict.genre_selector dict;
Dict.print_quantities "results/interp-polimorf-20160508.txt" Dict.interp_selector dict;
print_endline "sgjp_filename201607";
let dict = Dict.load_tab_full (sgjp_path ^ sgjp_filename201607) in
Dict.print_quantities "results/proper-type-sgjp-20160724.txt" Dict.proper_type_selector dict;
Dict.print_quantities "results/genre-sgjp-20160724.txt" Dict.genre_selector dict;
Dict.print_quantities "results/interp-sgjp-20160724.txt" Dict.interp_selector dict;
print_endline "polimorf_filename201607";
let dict = Dict.load_tab_full (sgjp_path ^ polimorf_filename201607) in
Dict.print_quantities "results/proper-type-polimorf-20160724.txt" Dict.proper_type_selector dict;
Dict.print_quantities "results/genre-polimorf-20160724.txt" Dict.genre_selector dict;
Dict.print_quantities "results/interp-polimorf-20160724.txt" Dict.interp_selector dict;
print_endline "sgjp_filename";
let dict = Dict.load_tab_full (sgjp_path ^ sgjp_filename) in
Dict.print_quantities "results/proper-type-sgjp-20170730.txt" Dict.proper_type_selector dict;
Dict.print_quantities "results/genre-sgjp-20170730.txt" Dict.genre_selector dict;
Dict.print_quantities "results/interp-sgjp-20170730.txt" Dict.interp_selector dict;
print_endline "polimorf_filename";
let dict = Dict.load_tab_full (sgjp_path ^ polimorf_filename) in
Dict.print_quantities "results/proper-type-polimorf-20170402.txt" Dict.proper_type_selector dict;
Dict.print_quantities "results/genre-polimorf-20170402.txt" Dict.genre_selector dict;
Dict.print_quantities "results/interp-polimorf-20170402.txt" Dict.interp_selector dict;
print_endline "adv_sgjp_filename";
let dict = Dict.load_tab_full (results_path ^ adv_sgjp_filename) in
print_endline "adj_sgjp_filename";
let dict = Dict.load_tab_full (results_path ^ adj_sgjp_filename) in
print_endline "noun_sgjp_filename";
let dict = Dict.load_tab_full (results_path ^ noun_sgjp_filename) in
print_endline "verb_sgjp_filename";
let dict = Dict.load_tab_full (results_path ^ verb_sgjp_filename) in
print_endline "lematy_nkjp_filename";
let dict = Dict.load_freq_tab (zasoby_path ^ lematy_nkjp_filename) in
Dict.print_quantities "results/interp-lematy_nkjp.txt" Dict.interp_selector dict;
Dict.print_quantities "results/freq-lematy_nkjp.txt" Dict.freq_selector dict;*)
()
(* Porównanie wersji słowników *)
let _ =
(* Dict.compare_dicts_full (sgjp_path ^ sgjp_filename2015) (sgjp_path ^ sgjp_filename201605) "results/comparition_sgjp1_full.out"; *)
(* Dict.compare_dicts_full (sgjp_path ^ sgjp_filename201605) (sgjp_path ^ sgjp_filename) "results/comparition_sgjp2_full.out"; *)
(* Dict.compare_dicts_full (sgjp_path ^ polimorf_filename2015) (sgjp_path ^ polimorf_filename201605) "results/comparition_polimorf1_full.out"; *)
(* Dict.compare_dicts_full (sgjp_path ^ polimorf_filename201605) (sgjp_path ^ polimorf_filename) "results/comparition_polimorf2_full.out"; *)
()
(* Podział słownika *)
let _ =
(* Dict.split_dict sgjp_path sgjp_filename results_path; *)
(* Dict.split_dict sgjp_path sgjp_filename201607 results_path; *)
(* Dict.split_dict sgjp_path sgjp_filename201605 results_path; *)
(* Dict.split_dict sgjp_path polimorf_filename results_path; *)
(* Dict.split_language "data/obce_langs.tab" sgjp_path sgjp_filename results_path; *)
()
(* Usunięcie form z prefixami *)
let _ =
(* Dict.remove_prefix_forms results_path "sgjp_selected.tab" "results/verb_sgjp_no_pref.tab"; *)
(* Dict.remove_prefix_forms results_path verb_sgjp_filename "results/verb_sgjp_no_pref.tab"; *)
()
let test_process_interps path filename =
let dict = Dict.load_tab_full (path ^ filename) in
let dict = Dict.merge_entries dict in
let _ = Dict.process_interps dict in
()
(* Test mapowania interpretacji *)
let _ =
(* test_process_interps results_path adv_sgjp_filename; *)
(* test_process_interps results_path adj_sgjp_filename; *)
(* test_process_interps results_path verb_sgjp_filename; *)
(* test_process_interps results_path noun_sgjp_filename; *)
(* test_process_interps results_path "lang_all_sgjp-20170730.tab"; *)
()
let obce = StringSet.of_list (File.load_lines "../morphology/data/obce.tab")
let find_not_fonetic_parsed ex path filename =
let dict = Dict.load_tab_full (path ^ filename) in
let dict = Dict.remove_exceptional_lemmata_gen ex dict in
Xlist.iter dict (fun e ->
Xlist.iter e.forms (fun f ->
if Fonetics.translate false Fonetics.rules f.orth = [] then printf "%s\n%!" e.lemma))
(* Test translacji fonetycznej *)
let _ =
(* find_not_fonetic_parsed obce results_path adv_sgjp_filename; *)
(* find_not_fonetic_parsed obce results_path adj_sgjp_filename; *)
(* find_not_fonetic_parsed obce results_path noun_sgjp_filename; *)
(* find_not_fonetic_parsed obce results_path verb_sgjp_filename; *)
(* find_not_fonetic_parsed obce sgjp_path sgjp_filename; *)
(* find_not_fonetic_parsed obce sgjp_path polimorf_filename; *)
()
let test_fonetics path filename =
let dict = Dict.load_tab_full (path ^ filename) in
(* let dict = Dict.remove_exceptional_lemmata_gen obce dict in *)
Xlist.iter dict (fun e ->
Xlist.iter e.forms (fun f ->
try
Fonetics.translate_and_check true Fonetics.core_rules Fonetics.core_rev_rules f.orth
with
Fonetics.NotFound(orth,phon) -> printf "NF lemma=%s orth=%s phon=%s\n%!" e.lemma orth phon
| Fonetics.NotEqual(orth,phon,t) -> printf "NE lemma=%s orth=%s phon=%s: %s\n%!" e.lemma orth phon t
| Fonetics.MulipleSolutions(orth,phon,l) -> printf "MS lemma=%s orth=%s phon=%s: %s\n%!" e.lemma orth phon (String.concat " " l)))
(* Test translacji fonetycznej *)
let _ =
(* test_fonetics results_path adv_sgjp_filename; *)
(* test_fonetics results_path adj_sgjp_filename; *)
(* test_fonetics results_path noun_sgjp_filename; *)
(* test_fonetics results_path verb_sgjp_filename; *)
()
let _ =
try
(* Fonetics.latex_of_core_rules "data/fonetics.dic";
Fonetics.latex_of_non_core_rules "data/fonetics.dic";
Fonetics.latex_of_non_core_rev_rules "data/fonetics.dic"; *)
(* ENIAMmorphologyRules.latex_of_alternations "../morphology/data/alternations.dic"; *)
(* ENIAMmorphologyRules.latex_of_schemata (); *)
(* ENIAMmorphologyRules.latex_of_interp_rules (); *)
(* Dict.latex_of_wyglos "resources/wyglos.tab"; *)
()
with Failure s -> print_endline s
(* Wypisanie nieodmiennych *)
(*let _ =
(* let dict = Dict.load_tab_full (sgjp_path ^ sgjp_filename) in
let dict = Dict.merge_entries dict in
let dict = Dict.process_interps dict in
let dict = Dict.mark_ndm dict in
Dict.print_ndm "results/ndm-sgjp.tab" dict; *)
()*)
let check_stem_generation path filename =
let dict = Dict.load_tab_full (path ^ filename) in
let dict = Dict.merge_entries dict in
let dict = Dict.process_interps dict in
(* let dict = Dict.mark_ndm dict in *)
let dict = Dict.remove_exceptional_lemmata dict in
let dict = Dict.find_kolwiek_suffixes dict in
let _ = Dict.generate_stem dict in
()
(* Sprawdzenie działania stemowania *)
let _ =
(* check_stem_generation sgjp_path sgjp_filename; *)
(* check_stem_generation results_path adj_sgjp_filename; *)
(* check_stem_generation results_path noun_sgjp_filename; *)
(* check_stem_generation results_path noun_polimorf_filename; *)
()
(* let _ = print_endline "1" *)
let compound_rules = ENIAMmorphologyRules.make_compound_rules ()
(* let _ = print_endline "2" *)
let compound_rule_trees = ENIAMmorphologyRules.make_compound_rule_trees compound_rules
(* let _ = print_endline "3" *)
let interp_compound_rule_trees = ENIAMmorphologyRules.make_interp_compound_rule_trees compound_rules
(* let _ = print_endline "4" *)
(* let _ = ENIAMmorphologyRules.CharTrees.print_rules "results/rules_tree.txt" compound_rule_trees *)
let find_not_validated_forms rules path filename out_filename =
let dict = Dict.load_tab (path ^ filename) in
let dict = Dict.assign_entry_cat dict in
let dict = Dict.phon_validate rules dict in
let dict = Dict.remove_validated_forms dict in
Dict.print out_filename dict
let find_not_validated_entries rules path filename out_filename =
let dict = Dict.load_tab (path ^ filename) in
let dict = Dict.merge_entries dict in
let dict = Dict.process_interps dict in
(* let dict = Dict.mark_ndm dict in
let dict = Dict.remove_ndm dict in *)
(* let dict = Dict.remove_exceptional_lemmata dict in *)
let dict = Dict.phon_validate rules dict in
let dict = Dict.remove_validated_entries dict in
Dict.print out_filename dict
(* Wypisanie niezwalidowanych form *)
let _ =
(* find_not_validated_forms compound_rule_trees results_path adj_sgjp_filename "results/not_validated_adj.tab"; *)
(* find_not_validated_entries compound_rule_trees results_path adj_sgjp_filename "results/not_validated_adj.tab"; *)
(* find_not_validated_entries compound_rule_trees results_path adj_polimorf_filename "results/not_validated_p_adj.tab"; *)
(* find_not_validated_entries compound_rule_trees "results/" "not_validated_adj.tab" "results/not_validated_adj2.tab"; *)
(* find_not_validated_entries compound_rule_trees results_path adv_sgjp_filename "results/not_validated_adv.tab"; *)
(* find_not_validated_entries compound_rule_trees results_path adv_polimorf_filename "results/not_validated_p_adv.tab"; *)
(* find_not_validated_entries compound_rule_trees results_path noun_sgjp_filename "results/not_validated_noun.tab"; *)
(*find_not_validated_forms compound_rule_trees results_path noun_sgjp_filename "results/not_validated_noun2.tab";
find_not_validated_entries compound_rule_trees results_path noun_polimorf_filename "results/not_validated_p_noun.tab";
find_not_validated_forms compound_rule_trees results_path noun_polimorf_filename "results/not_validated_p_noun2.tab"; *)
(* find_not_validated_entries compound_rule_trees results_path "not_validated_noun.tab" "results/not_validated_noun3.tab"; *)
(* find_not_validated_forms compound_rule_trees results_path "not_validated_noun.tab" "results/not_validated_noun4.tab"; *)
(* find_not_validated_entries compound_rule_trees results_path verb_sgjp_filename "results/not_validated_verb.tab"; *)
(*find_not_validated_forms compound_rule_trees results_path verb_sgjp_filename "results/not_validated_verb2.tab";
find_not_validated_entries compound_rule_trees results_path verb_polimorf_filename "results/not_validated_p_verb.tab";
find_not_validated_forms compound_rule_trees results_path verb_polimorf_filename "results/not_validated_p_verb2.tab"; *)
(* find_not_validated_forms compound_rule_trees results_path "sgjp_selected.tab" "results/not_validated_verb.tab"; *)
(* find_not_validated_forms compound_rule_trees results_path "lang_en_sgjp-20170730.tab" "results/lang_en.tab"; *)
(* find_not_validated_forms compound_rule_trees results_path "lang_fr_sgjp-20170730.tab" "results/lang_fr.tab"; *)
(* find_not_validated_forms compound_rule_trees results_path "lang_de_sgjp-20170730.tab" "results/lang_de.tab"; *)
(* find_not_validated_forms compound_rule_trees results_path "lang_acro_sgjp-20170730.tab" "results/lang_acro.tab"; *)
(* find_not_validated_forms compound_rule_trees results_path "lang_la_sgjp-20170730.tab" "results/lang_la.tab"; *)
(* find_not_validated_forms compound_rule_trees results_path "lang_es_sgjp-20170730.tab" "results/lang_es.tab"; *)
(* find_not_validated_forms compound_rule_trees results_path "lang_all_sgjp-20170730.tab" "results/lang_all.tab"; *)
(* find_not_validated_entries compound_rule_trees results_path "lang_all_sgjp-20170730.tab" "results/lang_all.tab"; *)
(* find_not_validated_entries compound_rule_trees results_path noun_polimorf_filename "results/not_validated_p_noun.tab"; *)
(* find_not_validated_forms compound_rule_trees results_path "not_validated_p_noun.tab" "results/not_validated_p_noun2.tab"; *)
(* find_not_validated_forms compound_rule_trees "data/" "noun-supplement-polimorf.tab" "results/not_validated_sup_noun.tab"; *)
()
let find_not_validated_lemmata rules path filename out_filename =
let dict = Dict.load_tab (path ^ filename) in
let dict = Dict.merge_entries dict in
let dict = Dict.process_interps dict in
let dict = Dict.remove_exceptional_lemmata dict in
let dict = Dict.phon_validate rules dict in
let dict = Dict.remove_validated_entries dict in
Dict.print_lemmata out_filename dict
(* Wypisanie niezwalidowanych lematów *)
let _ =
(* find_not_validated_lemmata compound_rule_trees results_path "not_validated_noun.tab" "results/not_validated_noun_lemma.tab"; *)
(* find_not_validated_lemmata compound_rule_trees results_path "not_validated_verb.tab" "results/not_validated_verb_lemma.tab"; *)
(* find_not_validated_lemmata compound_rule_trees results_path "sgjp_selected.tab" "results/not_validated_verb_lemma.tab"; *)
()
let find_validated_lemmata rules path filename out_filename =
let dict = Dict.load_tab (path ^ filename) in
let dict = Dict.merge_entries dict in
let dict = Dict.process_interps dict in
let dict = Dict.phon_validate rules dict in
let dict = Dict.remove_not_validated_entries dict in
Dict.print_lemmata out_filename dict
(* Wypisanie zwalidowanych lematów *)
let _ =
(* find_validated_lemmata compound_rule_trees results_path adj_sgjp_filename "results/validated_adj.tab";
find_validated_lemmata compound_rule_trees results_path noun_sgjp_filename "results/validated_noun.tab";
find_validated_lemmata compound_rule_trees results_path verb_sgjp_filename "results/validated_verb.tab"; *)
()
let test_lemmatize lemma orth =
printf "test_lemmatize: %s %s\n%!" lemma orth;
let simple_lemma = Stem.simplify_lemma lemma in
let phon_orths = Fonetics.translate true Fonetics.core_rules orth in
printf "phon_orths: \n %s\n%!" (String.concat "\n " (Xlist.map phon_orths Fonetics.string_of_phon));
Xlist.iter phon_orths (fun phon_orth ->
Xlist.iter (ENIAMmorphologyRules.CharTrees.find compound_rule_trees phon_orth.phon) (fun (stem,rule) ->
let candidate_lemmas = Fonetics.translate_simple true Fonetics.core_rev_rules (stem ^ rule.set) in
Xlist.iter candidate_lemmas (fun candidate_lemma ->
if candidate_lemma = simple_lemma then printf "E" else printf " ";
printf " %s %s %s %s\n%!" phon_orth.phon stem (string_of_rule rule) candidate_lemma)))
(* Sprawdzenie przebiegu lematyzacji *)
let _ =
(* test_lemmatize "delegacja" "delegacyj"; *)
(* test_lemmatize "delegacja" "delegacji"; *)
(* test_lemmatize "stodoła" "stodole"; *)
(* test_lemmatize "komedia" "komedii"; *)
(* test_lemmatize "Zenobia" "Zenobij";
test_lemmatize "aerografia" "aerografij";
test_lemmatize "Oktawia" "Oktawij";
test_lemmatize "Olimpia" "Olimpij"; *)
(* test_lemmatize "Amati" "Amatiego"; *)
(* test_lemmatize "plemię" "plemieniu"; *)
(* test_lemmatize "Abisynia" "Abisynii";
test_lemmatize "Abisynia" "Abisynią";
test_lemmatize "Abisynia" "Abisynij"; *)
(* test_lemmatize "kokosz" "kokosze"; *)
(* test_lemmatize "Kempisti" "Kempisty"; *)
(* test_lemmatize "witarianin" "witariany"; *)
(* test_lemmatize "witarianin" "witarianom";
test_lemmatize "" "";
test_lemmatize "witarianin" "witarianów"; *)
(* test_lemmatize "Czuwaszja" "Czuwaszyj"; *)
(* test_lemmatize "donieść" "doniesiona"; *)
(* test_lemmatize "zlodzić" "zlodzona"; *)
(* test_lemmatize "ciąć" "tniemy";
test_lemmatize "prać" "pierzemy";
test_lemmatize "myć" "myjemy";
test_lemmatize "obuć" "obujemy"; *)
(* test_lemmatize "bać" "boimy";
test_lemmatize "stać" "stoimy";
test_lemmatize "szczać" "szczymy";
test_lemmatize "amnestiować" "amnestiujemy"; *)
(* test_lemmatize "powziąć" "poweźmiemy";
test_lemmatize "dowiedzieć" "dowiemy";
test_lemmatize "dobyć" "dobędziemy"; *)
(* test_lemmatize "nadeżreć" "nadżarto";
test_lemmatize "pleść" "pleciono"; *)
(* test_lemmatize "głaskać" "głaszczmy";
test_lemmatize "chlastać" "chlaszczmy";
test_lemmatize "mamleć" "mamlajmy";
test_lemmatize "ostać" "ostańmy";
test_lemmatize "dopowiedzieć" "dopowiedzmy"; *)
(* test_lemmatize "nazywać" "nazywoł";
test_lemmatize "Danja" "Danji";
test_lemmatize "Kolej" "Koleji";
test_lemmatize "rozumiem" "rozumicie"; *)
(* test_lemmatize "podesłać" "podścielemy"; *)
(* test_lemmatize "izolować" "izolował"; *)
(* test_lemmatize "IKEA" "IKE-ach";
test_lemmatize "IKEA" "IKE-ę";
test_lemmatize "IKEA" "IKE-i";
test_lemmatize "ZUS" "ZUS-u";
test_lemmatize "ZUS" "ZUS-ie";
test_lemmatize "WAT" "WA-cie"; *)
(* test_lemmatize "ICJ" "ICJ-ocie";
test_lemmatize "ICJ" "ICJ-otach"; *)
(* test_lemmatize "WAT" "Wacie";
test_lemmatize "WAT" "WACIE";
test_lemmatize "WAT" "WAcie"; *)
(* test_lemmatize "BOŚ" "BOŚ-u"; *)
(* test_lemmatize "upgrade" "upgrade’om"; *)
(* test_lemmatize "software" "software’y"; *)
(* test_lemmatize "spray" "sprayu"; *)
(* test_lemmatize "unixowość" "unixowościach"; *)
(* test_lemmatize "rolls-royce" "rolls-roysie"; *)
(* test_lemmatize "Arrow" "Arrowa";*)
(* test_lemmatize "Boy" "Boyowie"; *)
(* test_lemmatize "Chomsky" "Chomskiego"; *)
(* test_lemmatize "Bradbury" "Bradburych"; *)
(* test_lemmatize "compact" "compakcie";
test_lemmatize "Dixa" "Diksie"; *)
(* test_lemmatize "developerski" "developersko"; *)
(* test_lemmatize "Jessica" "Jessice"; *)
(* test_lemmatize "Gurkha" "Gurce";
test_lemmatize "Gurkha" "Gurkhi"; *)
(* test_lemmatize "heavymetalowiec" "heavymetalowca"; *)
(* test_lemmatize "niesoftware’owy" "niesoftware’owi"; *)
(* test_lemmatize "Barrès" "Barrès’go"; *)
(* test_lemmatize "Dolphy" "Dolphy’ego"; *)
(* test_lemmatize "Bernoulli" "Bernoulliego"; *)
(* test_lemmatize "Handke" "Handkami"; *)
(* test_lemmatize "Radetzky" "Radetzky’ego"; *)
(* test_lemmatize "Max" "Maksa"; *)
(* test_lemmatize "Montesquieu" "Montesquieugo"; *)
(* test_lemmatize "Depardieu" "Depardieugo"; *)
(* test_lemmatize "Java" "Javie"; *)
(* test_lemmatize "anglaise" "anglaise’a"; *)
(* test_lemmatize "Aristide" "Aristide’a"; *)
(* test_lemmatize "Barrès" "Barrès’go"; *)
(* test_lemmatize "Beaumarchais" "Beaumarchais’go"; *)
(* test_lemmatize "Beauvoir" "Beauvoira"; *)
(* test_lemmatize "Bernoulli" "Bernoulliego"; *)
(* test_lemmatize "Astaire" "Astaire’a"; *)
(* test_lemmatize "Avignon" "Avignonami"; *)
(* test_lemmatize "Benveniste" "Benveniste’a"; *)
(* test_lemmatize "Kayah" "Kai"; *)
(* test_lemmatize "jockey" "jockei"; *)
(* test_lemmatize "Radetzky" "Radetzky’ego"; *)
(* test_lemmatize "bonvivant" "bonvivantach"; *)
(* test_lemmatize "Lefebvre" "Lefebvre’a"; *)
(* test_lemmatize "Kayah" "Kayom"; *)
(* test_lemmatize "Dixa" "Diksie"; *)
(* test_lemmatize "White" "Whicie";
test_lemmatize "Voit" "Voicie";
test_lemmatize "Violeta" "Violecie";
test_lemmatize "veto" "vecie"; *)
(* test_lemmatize "Andrássy" "Andrássyowie"; *)
(* test_lemmatize "Cezanne" "Cezanne’ami";
test_lemmatize "Connery" "Connery’ego"; *)
(* test_lemmatize "Barrés" "Barrés’go"; *)
(* test_lemmatize "IKEA" "IKE-i"; *)
(* test_lemmatize "mix" "miksowi";
test_lemmatize "Laxa" "Laksie"; *)
(* test_lemmatize "münsterski" "münstersku"; *)
(* test_lemmatize "würzburski" "würzburskiemu"; *)
(* test_lemmatize "polje" "poljom"; *)
(* test_lemmatize "drivie" "drive"; *)
(* test_lemmatize "" "";
test_lemmatize "" "";
test_lemmatize "" ""; *)
()
(* Generowanie reguł *)
let _ =
(* Dict.generate_rules compound_rule_trees results_path adj_sgjp_filename "results/rules-odm-adj.txt"; *)
(* Dict.generate_rules compound_rule_trees results_path noun_sgjp_filename "results/rules-odm-noun.txt"; *)
(* Dict.generate_rules compound_rule_trees results_path adv_sgjp_filename "results/rules-adv.txt"; *)
(* Dict.generate_rules compound_rule_trees results_path verb_sgjp_filename "results/rules-verb.txt"; *)
(* Dict.generate_rules compound_rule_trees results_path "test.tab" "results/rules-test.txt"; *)
(* Dict.generate_rules compound_rule_trees results_path "not_validated_noun.tab" "results/rules-nv-noun.txt"; *)
(* Dict.generate_rules compound_rule_trees results_path "not_validated_p_noun.tab" "results/rules-nv-noun.txt"; *)
(* Dict.generate_rules compound_rule_trees results_path "not_validated_verb.tab" "results/rules-nv-verb.txt"; *)
(* Dict.generate_rules compound_rule_trees results_path "sgjp_selected.tab" "results/rules-selected.txt"; *)
(* Dict.generate_rules compound_rule_trees results_path "verb_sgjp_no_pref.tab" "results/rules-verb.txt"; *)
(* Dict.generate_rules compound_rule_trees results_path "selected_verb.tab" "results/rules-verb.txt"; *)
(* Dict.generate_rules_lu compound_rule_trees 142 lu_path "results/rules-142_lu.txt"; *)
(* Dict.generate_rules_lu compound_rule_trees 148 lu_path "results/rules-148_lu.txt"; *)
(* Dict.generate_rules_lu compound_rule_trees 42 lu_path "results/rules-42_lu.txt"; *)
(* ignore (Sys.command "totem ~/Dokumenty/Inne/gong/gong_05m_00s.ogg"); *)
()
let find_interp_validated_lemmata interp_rules path filename out_filename =
let dict = Dict.load_tab (path ^ filename) in
let dict = Dict.merge_entries dict in
let dict = Dict.process_interps dict in
(* let dict = Dict.mark_ndm dict in (* FIXME: remove_ndm? *) *)
(* let dict = Dict.remove_exceptional_lemmata dict in *)
(* let dict = find_kolwiek_suffixes dict in *)
(* let dict = generate_stem dict in *)
let dict = Dict.phon_validate_interp interp_rules dict in
let dict = Dict.remove_not_validated_entries dict in
Dict.print_lemmata out_filename dict
let find_not_interp_validated_lemmata interp_rules path filename out_filename =
let dict = Dict.load_tab (path ^ filename) in
let dict = Dict.merge_entries dict in
let dict = Dict.process_interps dict in
(* let dict = Dict.mark_ndm dict in (* FIXME: remove_ndm? *) *)
(* let dict = Dict.remove_exceptional_lemmata dict in *)
(* let dict = find_kolwiek_suffixes dict in *)
(* let dict = generate_stem dict in *)
let dict = Dict.phon_validate_interp interp_rules dict in
let dict = Dict.remove_validated_entries dict in
Dict.print_lemmata out_filename dict
let find_not_interp_validated_entries interp_rules path filename out_filename =
let dict = Dict.load_tab (path ^ filename) in
let dict = Dict.merge_entries dict in
let dict = Dict.process_interps dict in
(* let dict = Dict.mark_ndm dict in
let dict = Dict.remove_ndm dict in *)
let dict = Dict.phon_validate_interp interp_rules dict in
let dict = Dict.remove_validated_entries dict in
Dict.print out_filename dict
let find_not_interp_validated_forms interp_rules path filename out_filename =
let dict = Dict.load_tab (path ^ filename) in
let dict = Dict.merge_entries dict in
let dict = Dict.process_interps dict in
let dict = Dict.remove_exceptional_lemmata dict in
let dict = Dict.phon_validate_interp interp_rules dict in
let dict = Dict.remove_validated_forms dict in
Dict.print out_filename dict
(* Wypisanie lematów ze zwalidowaną interpretacją *)
let _ =
(* find_interp_validated_lemmata interp_compound_rule_trees results_path noun_sgjp_filename "results/interp_validated_noun.tab";
find_not_interp_validated_lemmata interp_compound_rule_trees results_path noun_sgjp_filename "results/interp_not_validated_noun.tab";
find_interp_validated_lemmata interp_compound_rule_trees results_path adj_sgjp_filename "results/interp_validated_adj.tab";
find_not_interp_validated_lemmata interp_compound_rule_trees results_path adj_sgjp_filename "results/interp_not_validated_adj.tab";
find_interp_validated_lemmata interp_compound_rule_trees results_path adv_sgjp_filename "results/interp_validated_adv.tab";
find_not_interp_validated_lemmata interp_compound_rule_trees results_path adv_sgjp_filename "results/interp_not_validated_adv.tab";
find_interp_validated_lemmata interp_compound_rule_trees results_path verb_sgjp_filename "results/interp_validated_verb.tab";
find_not_interp_validated_lemmata interp_compound_rule_trees results_path verb_sgjp_filename "results/interp_not_validated_verb.tab";
find_interp_validated_lemmata interp_compound_rule_trees results_path "verb_sgjp_no_pref.tab" "results/interp_validated_no_pref_verb.tab";
find_not_interp_validated_lemmata interp_compound_rule_trees results_path "verb_sgjp_no_pref.tab" "results/interp_not_validated_no_pref_verb.tab"; *)
(* find_interp_validated_lemmata interp_compound_rule_trees results_path "sgjp_selected.tab" "results/interp_validated_verb.tab"; *)
(* find_not_interp_validated_lemmata interp_compound_rule_trees results_path "sgjp_selected.tab" "results/interp_not_validated_verb.tab"; *)
(* find_not_interp_validated_entries interp_compound_rule_trees results_path verb_sgjp_filename "results/selected_verb.tab"; *)
(* find_not_interp_validated_entries interp_compound_rule_trees results_path "verb_sgjp_no_pref.tab" "results/selected_verb.tab"; *)
(* find_not_interp_validated_forms interp_compound_rule_trees results_path "lang_en_sgjp-20170730.tab" "results/lang_en.tab"; *)
(* find_not_interp_validated_forms interp_compound_rule_trees results_path "lang_fr_sgjp-20170730.tab" "results/lang_fr.tab"; *)
(* find_not_interp_validated_forms interp_compound_rule_trees results_path "lang_de_sgjp-20170730.tab" "results/lang_de.tab"; *)
(* find_not_interp_validated_forms interp_compound_rule_trees results_path "lang_acro_sgjp-20170730.tab" "results/lang_acro.tab"; *)
(* find_not_interp_validated_forms interp_compound_rule_trees results_path "lang_all_sgjp-20170730.tab" "results/lang_all.tab"; *)
(* find_not_interp_validated_entries interp_compound_rule_trees results_path "lang_all_sgjp-20170730.tab" "results/interp_not_validated_lang_all.tab"; *)
(* find_not_interp_validated_forms interp_compound_rule_trees "data/" "noun-supplement-polimorf.tab" "results/not_validated_sup_noun2.tab"; *)
()
let test_interp_lemmatize lemma orth =
printf "test_interp_lemmatize: %s %s\n%!" lemma orth;
let entry = {empty_entry with lemma=lemma; cat="noun"; forms=[{empty_form with orth=orth}]} in
let entry = Dict.create_candidates false interp_compound_rule_trees entry in
Xlist.iter entry.forms (fun f ->
printf "phon_orths: \n %s\n%!" (String.concat "\n " (Xlist.map f.phon_orth Fonetics.string_of_phon));
Xlist.iter f.candidates (fun (stem,rule,s,t) ->
printf "%s %s %s %s\n%!" s.phon stem (string_of_rule rule) rule.interp))
let _ =
(* test_interp_lemmatize "Benveniste" "Benveniście"; *)
(* test_interp_lemmatize "allemande" "allemandzie"; *)
(* test_interp_lemmatize "Depardieu" "Depardieuch"; *)
(* test_interp_lemmatize "Braille" "Braille’u"; *)
(* test_interp_lemmatize "FAMA" "FAMA"; *)
(* test_interp_lemmatize "lichy" "lichego"; *)
(* test_interp_lemmatize "niekaraluszy" "niekaraluszych"; *)
(* test_interp_lemmatize "ninja" "ninjami"; *)
(* test_interp_lemmatize "ninja" "ninji"; *)
(* test_interp_lemmatize "mix" "miksowi"; *)
(* test_interp_lemmatize "münsterski" "münstersku"; *)
(* test_interp_lemmatize "Trubieckoj" "Trubieckich"; *)
(* test_interp_lemmatize "Balazs" "Balazsu"; *)
(* test_interp_lemmatize "Blake" "Blakiem";
test_interp_lemmatize "Bogorodckij" "Bogorodckiego";
test_interp_lemmatize "BUW" "BUW-ie";
test_interp_lemmatize "Bush" "Bushe"; *)
(* test_interp_lemmatize "ensemble" "ensemblowi";
test_interp_lemmatize "Anouilh" "Anouilhe";
test_interp_lemmatize "Bandtkie" "Bandtkimi";*)
(* test_interp_lemmatize "Jokai" "Jokaiemu"; *)
(* test_interp_lemmatize "Joszua" "Joszui";
test_interp_lemmatize "Linde" "Lindymi";
test_interp_lemmatize "drive" "drivie"; *)
(* test_interp_lemmatize "FPŻ" "FPŻ-y"; *)
(* test_interp_lemmatize "Jacques" "Jaki"; *)
(*test_interp_lemmatize "" "";
test_interp_lemmatize "" "";
test_interp_lemmatize "" "";*)
()
(* Generowanie reguł dla interpretacji *)
let _ =
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees ["pref";"cat";"flex";"lemma"] results_path adv_sgjp_filename "results/interp_rules_adv.tab"; *)
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees ["pref";"cat";"flex";"lemma"] results_path adj_sgjp_filename "results/interp_rules_adj.tab"; *)
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees ["cat";"flex";"lemma";"palat";"velar"] sgjp_path "sgjp_selected.tab" "results/interp_rules_s.tab"; *)
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees ["cat";"flex";"lemma"] results_path "sgjp_selected.tab" "results/interp_rules_s2.tab"; *)
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees ["cat";"flex";"lemma";"palat";"velar";"con"] results_path noun_sgjp_filename "results/interp_rules_noun4.tab"; *)
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees ["cat";"flex";"lemma";"palat";"velar"] results_path noun_sgjp_filename "results/interp_rules_noun3.tab"; *)
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees ["cat";"flex";"lemma";"palat"] results_path noun_sgjp_filename "results/interp_rules_noun2.tab"; *)
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees ["cat";"flex";"lemma"] results_path noun_sgjp_filename "results/interp_rules_noun1.tab"; *)
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees ["pref";"cat";"flex";"flex2";"group";"lemma"] results_path "sgjp_selected.tab" "results/interp_rules_verb.tab"; *)
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees ["pref";"cat";"flex";"flex2";"group";"lemma"] results_path "verb_sgjp_no_pref.tab" "results/interp_rules_verb.tab"; *)
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees ["pref";"cat";"flex";"flex2";"group";"lemma"] results_path verb_sgjp_filename "results/interp_rules_verb.tab"; *)
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees ["pref";"cat";"flex";"flex2"] results_path verb_sgjp_filename "results/interp_rules_verb2.tab"; *)
(* ignore (Sys.command "totem ~/Dokumenty/Inne/gong/gong_00m_30s.ogg"); *)
(* ignore (Sys.command "totem ~/\"Muzyka/Era/Era 1998 Era/Era 02 Ameno (remix).ogg\""); *)
()
(* Printexc.record_backtrace true;
(try *)
(* with e -> Printexc.print_backtrace stdout; print_endline (Printexc.to_string e)); *)
let sources = [
sgjp_path, sgjp_filename;
"data/", "noun-supplement-acro.tab";
"data/", "noun-supplement-polimorf.tab";
"data/", "dial_ach.tab";
"data/", "dial_ami2.tab";
"data/", "dial_ami3.tab";
"data/", "dial_ami4.tab";
"data/", "dial_ami.tab";
"data/", "dial_ą2.tab";
"data/", "dial_ą.tab";
"data/", "dial_ę.tab";
"data/", "dial_my.tab";
"data/", "dial_sz.tab";
"data/", "dial_ym.tab";
]
(* Generowanie złożonych reguł zaopatrzonych we frekwencje *)
let _ =
(* Dict.generate_rule_frequencies interp_compound_rule_trees results_path "verb_sgjp_no_pref.tab" "results/freq_rules-verb.tab"; *)
(* Dict.generate_rule_frequencies interp_compound_rule_trees results_path adv_sgjp_filename "results/freq_rules-adv.tab"; *)
(* Dict.generate_rule_frequencies interp_compound_rule_trees results_path adj_sgjp_filename "results/freq_rules-adj.tab"; *)
(* Dict.generate_rule_frequencies interp_compound_rule_trees results_path noun_sgjp_filename "results/freq_rules-noun.tab"; *)
(* Dict.generate_rule_frequencies interp_compound_rule_trees results_path verb_sgjp_filename "results/freq_rules-verb.tab"; *)
(* Dict.generate_rule_frequencies interp_compound_rule_trees results_path "lang_all_sgjp-20170730.tab" "results/freq_rules-lang.tab"; *)
(* Dict.generate_rule_frequencies interp_compound_rule_trees results_path "lang_jaki.tab" "results/freq_rules-jaki.tab"; *)
(* Dict.generate_rule_frequencies interp_compound_rule_trees sgjp_path sgjp_filename "results/freq_rules.tab"; *)
(* Dict.generate_rule_frequencies interp_compound_rule_trees results_path "noun_zmiekczenie.tab" "results/freq_rules-zmiekczenie.tab"; *)
(* Dict.generate_rule_frequencies interp_compound_rule_trees "data/" "noun-supplement-polimorf.tab" "results/freq_rules-supplement-polimorf.tab"; *)
(* Dict.generate_rule_frequencies interp_compound_rule_trees "data/" "noun-supplement-acro.tab" "results/freq_rules-supplement-acro.tab"; *)
(* Dict.generate_rule_frequencies interp_compound_rule_trees "data/" "dial_ach.tab" "results/freq_rules-dial_ach.tab"; *)
(* Dict.generate_rule_frequencies_list interp_compound_rule_trees sources "results/freq_rules_all.tab"; *)
(* ignore (Sys.command "totem ~/Dokumenty/Inne/gong/gong_05m_00s.ogg"); *)
()
let test_freq_rules_attributes rules_filename =
let rules = ENIAMmorphologyRules.load_freq_rules rules_filename in
let map = Xlist.fold rules StringMap.empty (fun map r ->
StringMap.add_inc map (r.pref ^ " " ^ r.find) [r] (fun l -> r :: l)) in
StringMap.iter map (fun _ rules ->
let map = Xlist.fold rules StringMap.empty (fun map r ->
let k = ENIAMmorphologyRules.string_of_star r.star ^ " " ^ String.concat " " (List.sort compare (Xlist.map r.tags (fun (k,v) -> k ^ "=" ^ v))) ^ " " ^ r.interp in
StringMap.add_inc map k [r] (fun l -> r :: l)) in
StringMap.iter map (fun _ rules ->
if Xlist.size rules > 1 then
Xlist.iter rules (fun r -> print_endline (ENIAMmorphologyRules.string_of_freq_rule r))))
let _ =
(* test_freq_rules_attributes "results/freq_rules_all.tab"; *)
(* test_freq_rules_attributes "resources/freq_rules.tab"; *)
()
let generate_alt rules_filename path filename out_filename =
let rules = ENIAMmorphologyRules.load_freq_rules rules_filename in
let rules = ENIAMmorphologyRules.CharTrees.create rules in
let dict = Dict.load_tab (path ^ filename) in
let dict = Dict.merge_entries dict in
let dict = Dict.process_interps dict in
let dict = Dict.remove_cat "cond" dict in
(* let dict = Dict.mark_ndm dict in *)
let dict = Dict.validate_interp rules dict in
let dict = Dict.remove_validated_forms dict in
Dict.print out_filename dict
let generate_alt_translate rules_filename path filename out_filename =
let rules = ENIAMmorphologyRules.load_freq_rules rules_filename in
let rules = ENIAMmorphologyRules.CharTrees.create rules in
let dict = Dict.load_tab (path ^ filename) in
let dict = Dict.merge_entries dict in
(* let dict = Dict.process_interps dict in *)
let dict = Dict.process_polimorf_interps dict in
let dict = Dict.remove_cat "cond" dict in
(* let dict = Dict.mark_ndm dict in *)
let dict = Dict.validate_interp_translate rules dict in
let dict = Dict.remove_validated_forms dict in
Dict.print out_filename dict
let find_freq_validated_lemmata rules_filename path filename out_filename =
let rules = ENIAMmorphologyRules.load_freq_rules rules_filename in
let rules = ENIAMmorphologyRules.CharTrees.create rules in
let dict = Dict.load_tab (path ^ filename) in
let dict = Dict.merge_entries dict in
let dict = Dict.process_interps dict in
let dict = Dict.remove_cat "cond" dict in
let dict = Dict.validate_interp rules dict in
let dict = Dict.remove_not_validated_entries dict in
Dict.print_lemmata out_filename dict
let find_not_freq_validated_lemmata rules_filename path filename out_filename =
let rules = ENIAMmorphologyRules.load_freq_rules rules_filename in
let rules = ENIAMmorphologyRules.CharTrees.create rules in
let dict = Dict.load_tab (path ^ filename) in
let dict = Dict.merge_entries dict in
let dict = Dict.process_interps dict in
let dict = Dict.remove_cat "cond" dict in
let dict = Dict.validate_interp rules dict in
let dict = Dict.remove_validated_entries dict in
Dict.print_lemmata out_filename dict
(* Walidacja reguł zaopatrznych we frekwencje/generowanie listy wyjątków *)
let _ =
(* find_freq_validated_lemmata "results/freq_rules_all.tab" results_path noun_sgjp_filename "results/freq_validated_noun.tab";
find_not_freq_validated_lemmata "results/freq_rules_all.tab" results_path noun_sgjp_filename "results/freq_not_validated_noun.tab";
find_freq_validated_lemmata "results/freq_rules_all.tab" results_path adj_sgjp_filename "results/freq_validated_adj.tab";
find_not_freq_validated_lemmata "results/freq_rules_all.tab" results_path adj_sgjp_filename "results/freq_not_validated_adj.tab";
find_freq_validated_lemmata "results/freq_rules_all.tab" results_path adv_sgjp_filename "results/freq_validated_adv.tab";
find_not_freq_validated_lemmata "results/freq_rules_all.tab" results_path adv_sgjp_filename "results/freq_not_validated_adv.tab";
find_freq_validated_lemmata "results/freq_rules_all.tab" results_path verb_sgjp_filename "results/freq_validated_verb.tab";
find_not_freq_validated_lemmata "results/freq_rules_all.tab" results_path verb_sgjp_filename "results/freq_not_validated_verb.tab";
find_freq_validated_lemmata "results/freq_rules_all.tab" results_path "verb_sgjp_no_pref.tab" "results/freq_validated_no_pref_verb.tab";
find_not_freq_validated_lemmata "results/freq_rules_all.tab" results_path "verb_sgjp_no_pref.tab" "results/freq_not_validated_no_pref_verb.tab"; *)
(* find_freq_validated_lemmata "resources/freq_rules.tab" results_path noun_sgjp_filename "results/freq_validated_noun.tab";
find_not_freq_validated_lemmata "resources/freq_rules.tab" results_path noun_sgjp_filename "results/freq_not_validated_noun.tab";
find_freq_validated_lemmata "resources/freq_rules.tab" results_path adj_sgjp_filename "results/freq_validated_adj.tab";
find_not_freq_validated_lemmata "resources/freq_rules.tab" results_path adj_sgjp_filename "results/freq_not_validated_adj.tab";
find_freq_validated_lemmata "resources/freq_rules.tab" results_path adv_sgjp_filename "results/freq_validated_adv.tab";
find_not_freq_validated_lemmata "resources/freq_rules.tab" results_path adv_sgjp_filename "results/freq_not_validated_adv.tab";
find_freq_validated_lemmata "resources/freq_rules.tab" results_path verb_sgjp_filename "results/freq_validated_verb.tab";
find_not_freq_validated_lemmata "resources/freq_rules.tab" results_path verb_sgjp_filename "results/freq_not_validated_verb.tab";
find_freq_validated_lemmata "resources/freq_rules.tab" results_path "verb_sgjp_no_pref.tab" "results/freq_validated_no_pref_verb.tab";
find_not_freq_validated_lemmata "resources/freq_rules.tab" results_path "verb_sgjp_no_pref.tab" "results/freq_not_validated_no_pref_verb.tab"; *)
(* generate_alt "results/freq_rules-adj.tab" results_path adj_sgjp_filename "results/alt-adj.tab"; *)
(* generate_alt "results/freq_rules_all.tab" sgjp_path sgjp_filename "results/alt.tab"; *)
(* generate_alt "results/freq_rules-lang.tab" results_path "lang_all_sgjp-20170730.tab" "results/alt-lang.tab"; *)
(* generate_alt "results/freq_rules.tab" results_path "lang_all_sgjp-20170730.tab" "results/alt-lang.tab"; *)
(* generate_alt "results/freq_rules_all.tab" results_path noun_sgjp_filename "results/alt-noun.tab"; *)
(* generate_alt_translate "results/freq_rules-lang.tab" results_path "lang_all_sgjp-20170730.tab" "results/alt-lang-tr.tab"; *)
(* generate_alt_translate "results/freq_rules_all.tab" sgjp_path sgjp_filename "results/alt-tr.tab"; *)
(* generate_alt_translate "results/freq_rules.tab" sgjp_path polimorf_filename "results/alt-polimorf-tr.tab"; *)
(* generate_alt_translate "results/freq_rules_all.tab" results_path noun_sgjp_filename "results/alt-noun-tr.tab"; *)
(* ignore (Sys.command "totem ~/Dokumenty/Inne/gong/gong_05m_00s.ogg"); *)
()
(* Generowanie stemów z regułami *)
let _ =
(* Dict.generate_stem_dict "results/freq_rules_adj.tab" results_path adj_sgjp_filename "results/stem-adj.tab"; *)
(* Dict.generate_stem_dict "results/old/freq_rules_all.tab" sgjp_path sgjp_filename "results/stem.tab"; *)
(* ignore (Sys.command "totem ~/Dokumenty/Inne/gong/gong_05m_00s.ogg"); *)
()
(**********************************************************************************)
(* Testy *)
let print_interpretations l =
Xlist.iter (Xlist.sort l compare) (fun t ->
print_endline (ENIAMinflexion.string_of_interpretation t))
let _ =
ENIAMinflexion.initialize ();
(* let l = ENIAMinflexion.get_interpretations "życzliwą" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "żyźniejszego" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "zwiśli" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "najzieleńsza" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "najtandetniejsza" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "nieżelazny" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "któregokolwiek" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "większą" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "bordo" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "sexi" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "sexy" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "sepulkową" in
print_interpretations l;*)
(* let l = ENIAMinflexion.get_interpretations "profesory" in
print_interpretations l; *)
(* let l = ENIAMinflexion.get_interpretations "chrobotnąwszy" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "chronografowi" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "chowaniami" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "Czechami" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "Włoszech" in
print_interpretations l;*)
(* let l = ENIAMinflexion.get_interpretations "Puchatku" in
print_interpretations l; *)
(* let l = ENIAMinflexion.get_interpretations "telefoń" in
print_interpretations l; *)
(* let l = ENIAMinflexion.get_interpretations "miałczy" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "miauczy" in
print_interpretations l; *)
(* let l = ENIAMinflexion.get_interpretations "Puchatek" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "Gózd" in
print_interpretations l; *)
(* let l = ENIAMinflexion.get_interpretations "Goghów" in
print_interpretations l; *)
(* let l = ENIAMinflexion.get_interpretations "ABBie" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "ABBBie" in
print_interpretations l; *)
(* let l = ENIAMinflexion.get_interpretations "tkach" in
print_interpretations l; *)
(* let l = ENIAMinflexion.get_interpretations "TK-ach" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "TKach" in
print_interpretations l; *)
(* let l = ENIAMinflexion.get_interpretations "TK" in
print_interpretations l; *)
let l = ENIAMinflexion.get_interpretations "TTTTTTTTK" in
print_interpretations l;
let l = ENIAMinflexion.get_interpretations "mycie" in
print_interpretations l;
()
let test_inflexion path filename =
let dict = Dict.load_tab (path ^ filename) in
let dict = Dict.merge_entries dict in
let dict = Dict.process_interps dict in
let dict = Dict.remove_cat "cond" dict in
Xlist.iter dict (fun entry ->
(* let simple_lemma = Stem.simplify_lemma entry.lemma in *)
Xlist.iter entry.forms (fun form ->
let l = ENIAMinflexion.get_interpretations form.orth in
let n = Xlist.fold l 0 (fun n t ->
let lemma = if t.ENIAMinflexion.lemma_suf = "" then t.ENIAMinflexion.lemma else t.ENIAMinflexion.lemma ^ ":" ^ t.ENIAMinflexion.lemma_suf in
if lemma = entry.lemma && t.ENIAMinflexion.interp = form.interp then n+1 else n) in
if n <> 1 then printf "%d\t%s\t%s\t%s\n%!" n form.orth entry.lemma form.interp))
let _ =
(* test_inflexion sgjp_path sgjp_filename; *)
(* test_inflexion results_path noun_sgjp_filename; *)
(* test_inflexion results_path adj_sgjp_filename; *)
(* test_inflexion results_path adv_sgjp_filename; *)
()
(* Wydobycie form wygłosu *)
let _ =
(* Dict.generate_wyglos results_path noun_sgjp_filename "results/wyglos.tab"; *)
()
(**********************************************************************************)