generate.ml
14 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
open Xstd
open Printf
open Types
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 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_filename = "sgjp-20160724.tab.gz"
let polimorf_filename = "polimorf-20160724.tab.gz"
let adv_sgjp_filename = "adv_sgjp-20160508.tab"
let adj_sgjp_filename = "adj_sgjp-20160508.tab"
let noun_sgjp_filename = "noun_sgjp-20160508.tab"
let verb_sgjp_filename = "verb_sgjp-20160508.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_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_filename";
let dict = Dict.load_tab_full (sgjp_path ^ sgjp_filename) 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_filename";
let dict = Dict.load_tab_full (sgjp_path ^ polimorf_filename) 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 "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_filename201605 results_path; *)
()
(* Wypisanie nieodmiennych *)
let _ =
(* let dict = Dict.load_tab_full (sgjp_path ^ sgjp_filename) in
let dict = Dict.merge_entries 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.mark_ndm 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; *)
()
(* let compound_rules = Rules.make_compound_rules ()
let compound_rule_trees = Rules.make_compound_rule_trees compound_rules
let interp_compound_rule_trees = Rules.make_interp_compound_rule_trees compound_rules *)
let find_not_validated_forms rules path filename out_filename =
let dict = Dict.load_tab (path ^ filename) in
let dict = Dict.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.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/" "not_validated_adj.tab" "results/not_validated_adj2.tab"; *)
(* find_not_validated_entries compound_rule_trees results_path noun_sgjp_filename "results/not_validated_noun.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 verb_sgjp_filename "results/not_validated_verb.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.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"; *)
()
(* 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"; *)
()
(* Generowanie reguł dla interpretacji *)
let _ =
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees true true true results_path adj_sgjp_filename "results/interp_rules_adj.tab"; *)
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees false true true results_path adj_sgjp_filename "results/interp_rules_adj2.tab"; *)
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees true true true results_path adv_sgjp_filename "results/interp_rules_adv.tab"; *)
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees true true true results_path verb_sgjp_filename "results/interp_rules_verb.tab";
Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees true false true results_path verb_sgjp_filename "results/interp_rules_verb2.tab"; *)
(* Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees true true true results_path noun_sgjp_filename "results/interp_rules_noun.tab";
Dict.generate_interp_rules compound_rule_trees interp_compound_rule_trees true true false results_path noun_sgjp_filename "results/interp_rules_noun2.tab";*)
()
(* Generowanie złożonych reguł zaopatrzonych we frekwencje *)
let _ =
(* 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 sgjp_path sgjp_filename "results/freq_rules.tab"; *)
()
let generate_alt rules_filename path filename out_filename =
let rules = Rules.load_freq_rules rules_filename in
let rules = Rules.CharTrees.create rules in
let dict = Dict.load_tab (path ^ filename) in
let dict = Dict.merge_entries 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
(* Walidacja reguł zaopatrznych we frekwencje/generowanie listy wyjątków *)
let _ =
(* generate_alt "results/freq_rules-adj.tab" results_path adj_sgjp_filename "results/alt-adj.tab"; *)
(* generate_alt "results/freq_rules.tab" sgjp_path sgjp_filename "results/alt.tab"; *)
()
(* 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/freq_rules.tab" sgjp_path sgjp_filename "results/stem.tab"; *)
()
(**********************************************************************************)
(* Testy *)
let print_interpretations l =
Xlist.iter (Xlist.sort l compare) (fun (lemma,interp,freq,tags) ->
Printf.printf "%s\t%s\t%d\t%s\n" lemma interp freq (String.concat ";" tags))
let _ =
(* let l = Inflexion.get_interpretations "życzliwą" in
print_interpretations l;
let l = Inflexion.get_interpretations "żyźniejszego" in
print_interpretations l;
let l = Inflexion.get_interpretations "zwiśli" in
print_interpretations l;
let l = Inflexion.get_interpretations "najzieleńsza" in
print_interpretations l;
let l = Inflexion.get_interpretations "najtandetniejsza" in
print_interpretations l;
let l = Inflexion.get_interpretations "nieżelazny" in
print_interpretations l;
let l = Inflexion.get_interpretations "któregokolwiek" in
print_interpretations l;
let l = Inflexion.get_interpretations "większą" in
print_interpretations l;
let l = Inflexion.get_interpretations "bordo" in
print_interpretations l;
let l = Inflexion.get_interpretations "sexi" in
print_interpretations l;
let l = Inflexion.get_interpretations "sexy" in
print_interpretations l;
let l = Inflexion.get_interpretations "sepulkową" in
print_interpretations l;
let l = Inflexion.get_interpretations "profesory" in
print_interpretations l; *)
(* let l = Inflexion.get_interpretations "chrobotnąwszy" in
print_interpretations l;
let l = Inflexion.get_interpretations "chronografowi" in
print_interpretations l;
let l = Inflexion.get_interpretations "chowaniami" in
print_interpretations l; *)
(* let l = Inflexion.get_interpretations "Czechami" in
print_interpretations l; *)
(* let l = Inflexion.get_interpretations "Włoszech" in
print_interpretations l; *)
()
(* let _ =
let dict = Dict.load_tab (sgjp_path ^ sgjp_filename) in
let dict = Dict.merge_entries 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 = Inflexion.get_interpretations form.orth in
let n = Xlist.fold l 0 (fun n (lemma,interp,freq,tags) ->
if lemma = simple_lemma && 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)) *)
(**********************************************************************************)
(**********************************************************************************)