test.ml
4.13 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
(*
* ENIAMsubsyntax: MWE, abbreviation and sentence detecion 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/>.
*)
let test_strings = [
(* "Szpak frunie.";
"Kot np. miauczy.";
"Ala ma kota.";
"Ale mają kota:" *)
(* "W 1984-89 uczęszczał do VII Liceum Ogólnokształcącego im. K.K. Baczyńskiego w Szczecinie."; *)
(* "W 2003 obronił doktorat nauk technicznych w zakresie architektury i urbanistyki na Politechnice Krakowskiej i został adiunktem w Zakładzie Teorii Architektury, Historii i Konserwacji Zabytków IAiPP."; *)
(* "Trzy lata później założył pracownię architektoniczną Atelier Bizio + Ligierko, zajmującą się adaptacjami budynków historycznych."; *)
(* "Festiwalu Polskich Sztuk Współczesnych R@Port"; *)
(* "Przeglądu Teatrów Małych Form „Kontrapunkt”"; *)
(* "Dyplom uzyskał w 1994."; *)
(* "dyplom uzyskał w 1994";
"o trąbach powietrznych";
"trąba powietrzny"; *)
(* "ul. III Poprzecznej"; *)
"ul. Stefana Banacha";
"Chłopcy mają ulicę kwiatami.";
]
let test_strings2 = [
(* "Szpak frunie. Kot miauczy.";
"Szpak powiedział: „Frunę. Śpiewam.”"; *)
(* "Istniejący od XI w. Czersk uzyskał prawa miejskie w 1350 r. Mazowsze było wtedy samodzielnym księstwem."; *)
(* "Dyplom uzyskał w 1994.";
"dyplom uzyskał w 1994"; *)
"Chłopcy mają ulicę kwiatami.";
]
let _ =
ENIAMsubsyntax.initialize ();
let test_num = ref 1 in
print_endline "Testy wbudowane";
Xlist.iter test_strings (fun s ->
print_endline ("\nTEST: " ^ s);
let tokens = ENIAMsubsyntax.parse s in
print_endline (ENIAMsubsyntaxStringOf.token_list tokens);
File.file_out ("results/test" ^ string_of_int !test_num ^ ".xml") (fun file ->
output_string file (Xml.to_string_fmt (ENIAMsubsyntaxXMLof.token_list tokens "")));
ENIAMsubsyntaxHTMLof.print_token_list "results/" ("test" ^ string_of_int !test_num) tokens "";
ENIAMsubsyntaxGraphOf.print_token_list "results/" ("test" ^ string_of_int !test_num) tokens;
incr test_num);
print_endline "Testy wbudowane 2";
Xlist.iter test_strings2 (fun s ->
print_endline ("\nTEST: " ^ s);
let text,tokens = ENIAMsubsyntax.parse_text s in
print_endline (ENIAMsubsyntaxStringOf.token_extarray tokens);
print_endline "";
print_endline (ENIAMsubsyntaxStringOf.text "" tokens text);
File.file_out ("results/test" ^ string_of_int !test_num ^ ".xml") (fun file ->
output_string file (Xml.to_string_fmt (ENIAMsubsyntaxXMLof.text_and_tokens text tokens "")));
ENIAMsubsyntaxHTMLof.print_text_and_tokens "results/" ("test" ^ string_of_int !test_num) text tokens "";
incr test_num);
()
(*
Text -> output_string out_chan (ENIAMsubsyntaxStringOf.text "" tokens text ^ "\n" ^ ENIAMsubsyntaxStringOf.token_extarray tokens ^ "\n\n")
| Xml -> output_string out_chan (Xml.to_string (ENIAMsubsyntaxXMLof.text_and_tokens text tokens) ^ "\n\n")
| Html -> output_string out_chan (ENIAMsubsyntaxHTMLof.text_and_tokens text tokens ^ "\n\n")
| Marsh -> Marshal.to_channel out_chan (text,tokens) []
| Graphviz -> failwith "main_loop: ni")
else
let tokens = ENIAMsubsyntax.parse text in
(match !output with
| Html -> output_string out_chan (ENIAMsubsyntaxHTMLof.token_list tokens ^ "\n\n")
| Marsh -> Marshal.to_channel out_chan tokens []
| Graphviz -> output_string out_chan (ENIAMsubsyntaxGraphOf.token_list tokens ^ "\n\n")));
*)