blob: 86e21dda896bc2a6bc4714d21d04113e5b5db549 [file] [log] [blame]
Akroneb590da2022-03-02 18:31:34 +01001#!/usr/bin/env perl
2use strict;
3use warnings;
4
5# Comparison path
6my $cmd = '/euralex/corpus/empirist_gold_cmc/tools/compare_tokenization.perl';
7
8# Output path
9my $empirist_path = '/euralex/empirist_';
10mkdir $empirist_path . 'cmc';
11mkdir $empirist_path . 'web';
12
13my $gold_path = '/euralex/corpus/empirist_gold_';
14
15my %tools = (
16 waste => sub {
17 my $raw = $gold_path . $_[1] . '/raw/' . $_[0];
18 system 'cat ' . $raw . ' | waste -N -v0 --rcfile=./Waste/waste.rc > ' . $empirist_path . $_[1] . '/waste/' . $_[0],
19 },
20 datok => sub {
21 my $raw = $gold_path . $_[1] . '/raw/' . $_[0];
22 system 'cat ' . $raw . ' | ./Datok/datok tokenize -t ./Datok/testdata/tokenizer.matok - > ' . $empirist_path . $_[1] . '/datok/' . $_[0];
23 },
24 korap_tokenizer => sub {
25 my $raw = $gold_path . $_[1] . '/raw/' . $_[0];
26 system 'cat ' . $raw . ' | java -jar ./KorAP-Tokenizer/KorAP-Tokenizer.jar -l de > ' . $empirist_path . $_[1] . '/korap_tokenizer/' . $_[0];
27 },
28 opennlp_simple => sub {
29 my $raw = $gold_path . $_[1] . '/raw/' . $_[0];
30 system 'cat ' . $raw . ' | ./opennlp/bin/opennlp SimpleTokenizer 2> /dev/null | sed "s/\s/\n/g" > ' . $empirist_path . $_[1] . '/opennlp_simple/' . $_[0];
31 },
32 opennlp_tokenizer => sub {
33 my $raw = $gold_path . $_[1] . '/raw/' . $_[0];
34 system 'cat ' . $raw . ' | ./opennlp/bin/opennlp TokenizerME ./opennlp/models/opennlp-de-ud-gsd-tokens-1.0-1.9.3.bin 2> /dev/null | sed "s/\s/\n/g" > ' . $empirist_path . $_[1] . '/opennlp_tokenizer/' . $_[0];
35 },
36 tree_tagger => sub {
37 my $raw = $gold_path . $_[1] . '/raw/' . $_[0];
38 system 'cat ' . $raw . ' | perl ./treetagger/cmd/utf8-tokenize.perl -a ./treetagger/lib/german-abbreviations 2> /dev/null > ' . $empirist_path . $_[1] . '/tree_tagger/' . $_[0];
39 },
40 jtok => sub {
41 my $raw = $gold_path . $_[1] . '/raw/' . $_[0];
42 chdir '/euralex/JTok/bin';
43 system 'sh tokenize ' . $raw . ' de | grep "Token: " | perl -CS -pe "s/\s +Token: \"//; s/^(\"?[^\"]*?)\".+?$/\1/g" > ' . $empirist_path . $_[1] . '/jtok/' . $_[0];
44 chdir '/euralex';
45 },
46 syntok => sub {
47 my $raw = $gold_path . $_[1] . '/raw/' . $_[0];
48 system 'python3 -m syntok.tokenizer ' . $raw . ' | sed "s/\s/\n/g" > ' . $empirist_path . $_[1] . '/syntok/' . $_[0];
49 },
50 somajo => sub {
51 my $raw = $gold_path . $_[1] . '/raw/' . $_[0];
52 system 'somajo-tokenizer ' . $raw . ' 2> /dev/null > ' . $empirist_path . $_[1] . '/somajo/' . $_[0];
Akronb0408972022-03-07 11:36:17 +010053 },
Akron8cb12792022-03-09 11:34:01 +010054 elephant => sub {
55 my $raw = $gold_path . $_[1] . '/raw/' . $_[0];
56 system './elephant-wrapper/bin/tokenize.sh -i ' . $raw . ' UD_German | sed "s/\s/\n/g" > ' . $empirist_path . $_[1] . '/elephant/' . $_[0];
57 },
58 spacy => sub {
59 my $raw = $gold_path . $_[1] . '/raw/' . $_[0];
60 system 'python3 ./spacy/spacy_tok.py ' . $raw . ' > ' . $empirist_path . $_[1] . '/spacy/' . $_[0];
61 },
Akron54fd3142022-03-17 17:45:12 +010062 cutter => sub {
63 my $raw = $gold_path . $_[1] . '/raw/' . $_[0];
64 system 'python3 ./cutter/cutter.py nosent ' . $raw . ' > ' . $empirist_path . $_[1] . '/cutter/' . $_[0];
65 },
Akronb0408972022-03-07 11:36:17 +010066 stanford => sub {
67 my $raw = $gold_path . $_[1] . '/raw/' . $_[0];
68 system 'CLASSPATH=/euralex/stanford-corenlp-4.4.0/* java edu.stanford.nlp.pipeline.StanfordCoreNLP ' .
69 '-props german -annotators tokenize,ssplit,mwt -tokenize.language=german -file ' . $raw . ' 2> /dev/null';
70 system 'perl /euralex/benchmarks/cleanup/stanford.pl ' . $_[0] . '.out > ' . $empirist_path . $_[1] . '/stanford/' . $_[0];
71 system 'rm ' . $_[0] . '.out';
Akroneb590da2022-03-02 18:31:34 +010072 }
73);
74
Akron8cb12792022-03-09 11:34:01 +010075# delete $tools{waste};
76# delete $tools{datok};
77# delete $tools{korap_tokenizer};
78# delete $tools{opennlp_simple};
79# delete $tools{opennlp_tokenizer};
80# delete $tools{tree_tagger};
81# delete $tools{jtok};
82# delete $tools{syntok};
83# delete $tools{somajo};
84# delete $tools{stanford};
85# delete $tools{spacy};
86# delete $tools{elephant};
Akron54fd3142022-03-17 17:45:12 +010087# delete $tools{cutter};
Akroneb590da2022-03-02 18:31:34 +010088
89# Create project folders
90foreach (keys %tools) {
Akron8cb12792022-03-09 11:34:01 +010091 system 'rm -r ' . $empirist_path . 'cmc/' . $_;
Akroneb590da2022-03-02 18:31:34 +010092 mkdir $empirist_path . 'cmc/' . $_;
Akron8cb12792022-03-09 11:34:01 +010093 system 'rm -r ' . $empirist_path . 'web/' . $_;
Akroneb590da2022-03-02 18:31:34 +010094 mkdir $empirist_path . 'web/' . $_;
95};
96
97
98# Run the CMC test suite
99my @files = (
100 'cmc_test_blog_comment.txt',
101 'cmc_test_professional_chat.txt',
102 'cmc_test_social_chat.txt',
103 'cmc_test_twitter.txt',
104 'cmc_test_whatsapp.txt',
105 'cmc_test_wiki_discussion.txt',
106);
107
108
109# Run tokenization
110foreach my $file (@files) {
111 foreach (keys %tools) {
112 $tools{$_}->($file, 'cmc');
113 }
114};
115
116foreach my $tool (keys %tools) {
117 print "\n##########\n";
118 print "##### $tool - Empirist-CMC\n";
119 print "##\n";
120 system $cmd . ' -x ' . $gold_path . 'cmc/tokenized/ ' . $empirist_path . 'cmc/' . $tool . '/ 2> /dev/null';
121};
122
123
124# Run the Web test suite
125@files = (
126 'web_test_001.txt',
127 'web_test_002.txt',
128 'web_test_003.txt',
129 'web_test_004.txt',
130 'web_test_005.txt',
131 'web_test_006.txt',
132 'web_test_007.txt',
133 'web_test_008.txt',
134 'web_test_009.txt',
135 'web_test_010.txt',
136 'web_test_011.txt',
137 'web_test_012.txt'
138);
139
140# Run tokenization
141foreach my $file (@files) {
142 foreach (keys %tools) {
143 $tools{$_}->($file, 'web');
144 }
145};
146
147foreach my $tool (keys %tools) {
148 print "\n##########\n";
149 print "##### $tool - Empirist-Web\n";
150 print "##\n";
151 system $cmd . ' -x ' . $gold_path . 'web/tokenized/ ' . $empirist_path . 'web/' . $tool . '/ 2> /dev/null';
152};