blob: 50ac2cdc108d5c887993d0cda77e0f6584623d90 [file] [log] [blame]
Marc Kupietzdc22b982015-10-09 09:19:34 +02001#!/usr/local/bin/perl
2use Inline C;
Marc Kupietz00eecb12019-01-24 16:08:44 +01003use Inline C => Config => CLEAN_AFTER_BUILD => 0, BUILD_NOISY => 1, ccflags => $Config{ccflags}." -I/vol/work/kupietz/Work2/kl/trunk/CollocatorDB -I, -L. -Wall -O4", libs => "-shared -lpthread -lcollocatordb -lrt -lsnappy -lz -lbz2 -llz4 -lzstd -lrocksdb -lgomp";
Marc Kupietza5f60042017-05-04 10:38:12 +02004#use Inline C => Config => BUILD_NOISY => 1, CFLAGS => $Config{cflags}." -O4 -mtune k9";
5#use Inline C => Config => CLEAN_AFTER_BUILD => 0, ccflags => $Config{ccflags}." -Ofast -march k8 -mtune k8 ";
Marc Kupietzdc22b982015-10-09 09:19:34 +02006use Mojolicious::Lite;
Marc Kupietzc4893362016-02-25 08:04:46 +01007use Mojo::JSON qw(decode_json encode_json to_json);
Marc Kupietz30ca4342017-11-22 21:21:20 +01008use base 'Mojolicious::Plugin';
9
Marc Kupietz247500f2015-10-09 11:29:01 +020010use Encode qw(decode encode);
Marc Kupietza5b90152016-03-15 17:39:19 +010011use Getopt::Std;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010012use Mojo::Server::Daemon;
Marc Kupietzffef9302017-11-07 15:58:01 +010013use Cwd;
Marc Kupietz66bfd952017-12-11 09:59:45 +010014
Marc Kupietzffef9302017-11-07 15:58:01 +010015app->static->paths->[0] = getcwd;
16
Marc Kupietzd4227392016-03-01 16:45:12 +010017plugin 'Log::Access';
Marc Kupietzb3422c12017-07-04 14:12:11 +020018plugin "RequestBase";
Marc Kupietzdc22b982015-10-09 09:19:34 +020019
Marc Kupietza5b90152016-03-15 17:39:19 +010020our $opt_i = 0; # latin1-input?
21our $opt_l = undef;
22our $opt_p = 5676;
Marc Kupietza2e64502016-04-27 09:53:51 +020023our $opt_m;
Marc Kupietz6ed81872016-04-27 14:04:04 +020024our $opt_M;
Marc Kupietz43ee87e2016-04-25 10:50:08 +020025our $opt_n = '';
26our $opt_d;
Marc Kupietzfa194262018-06-05 09:39:32 +020027our $opt_D;
Marc Kupietz5c3887d2016-04-28 08:53:35 +020028our $opt_G;
Marc Kupietza5b90152016-03-15 17:39:19 +010029
Marc Kupietz6ed81872016-04-27 14:04:04 +020030my %marked;
Marc Kupietzc053d972019-01-10 10:41:51 +010031my $title="";
Marc Kupietz793413b2016-04-02 21:48:57 +020032my $training_args="";
Marc Kupietza2e64502016-04-27 09:53:51 +020033my $mergedEnd=0;
Marc Kupietz15987412017-11-07 15:56:58 +010034my %cache;
Marc Kupietz19c68242018-03-12 09:42:21 +010035my %cccache; # classic collocator cache
Marc Kupietza51dcfa2018-03-19 16:22:05 +010036my %spcache; # similar profile cache
Marc Kupietz793413b2016-04-02 21:48:57 +020037
Marc Kupietzfa194262018-06-05 09:39:32 +020038getopts('d:D:Gil:p:m:n:M:');
Marc Kupietz6ed81872016-04-27 14:04:04 +020039
40if($opt_M) {
Marc Kupietzed930212016-04-27 15:42:38 +020041 open my $handle, '<:encoding(UTF-8)', $opt_M
42 or die "Can't open '$opt_M' for reading: $!";
43 while(<$handle>) {
Marc Kupietz6ed81872016-04-27 14:04:04 +020044 foreach my $mw (split /\s+/) {
45 $marked{$mw}=1
46 }
47 }
Marc Kupietzed930212016-04-27 15:42:38 +020048 close($handle);
Marc Kupietz6ed81872016-04-27 14:04:04 +020049}
Marc Kupietza5b90152016-03-15 17:39:19 +010050
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010051# -cbow 1 -size 200 -window 8 -negative 25 -hs 0 -sample 1e-4 -threads 40 -binary 1 -iter 15
Marc Kupietza5b90152016-03-15 17:39:19 +010052if(!$ARGV[0]) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010053 init_net("vectors15.bin", $opt_n, ($opt_i? 1 : 0));
Marc Kupietz2cb667e2016-03-10 09:44:12 +010054} else {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010055 init_net($ARGV[0], $opt_n, ($opt_i? 1 : 0));
Marc Kupietz793413b2016-04-02 21:48:57 +020056 if(open(FILE, "$ARGV[0].args")) {
57 $training_args = <FILE>;
58 }
59 close(FILE);
Marc Kupietzc053d972019-01-10 10:41:51 +010060 $title = fname2corpusname($ARGV[0]);
Marc Kupietz2cb667e2016-03-10 09:44:12 +010061}
Marc Kupietzdc22b982015-10-09 09:19:34 +020062
Marc Kupietza51dcfa2018-03-19 16:22:05 +010063my $have_sprofiles = load_sprofiles($ARGV[0]);
64
Marc Kupietza2e64502016-04-27 09:53:51 +020065if($opt_m) {
66 $mergedEnd = mergeVectors($opt_m);
Marc Kupietzc053d972019-01-10 10:41:51 +010067 $title = "<span class=\"merged\">" . $title . "</span> vs. " . fname2corpusname($opt_m);
Marc Kupietza2e64502016-04-27 09:53:51 +020068}
69
Marc Kupietze5568a02018-12-20 11:42:02 +010070
Marc Kupietz43ee87e2016-04-25 10:50:08 +020071if($opt_d) { # -d: dump vecs and exit
72 dump_vecs($opt_d);
73 exit;
74}
75
Marc Kupietzfa194262018-06-05 09:39:32 +020076if($opt_D) { # -D: dump vecs for numpy and exit
77 dump_for_numpy($opt_D);
78 exit;
79}
80
Marc Kupietza5b90152016-03-15 17:39:19 +010081my $daemon = Mojo::Server::Daemon->new(
82 app => app,
83 listen => ['http://'.($opt_l ? $opt_l : '*').":$opt_p"]
84);
85
Marc Kupietz5c3887d2016-04-28 08:53:35 +020086if($opt_G) {
87 print "Filtering garbage\n";
88 filter_garbage();
89}
90
Marc Kupietz554aff52017-11-09 14:42:09 +010091get '*/js/*' => sub {
Marc Kupietzffef9302017-11-07 15:58:01 +010092 my $c = shift;
93 my $url = $c->req->url;
94 $url =~ s@/derekovecs@@g;
95 $c->app->log->info("GET: " . $url);
96 $c->reply->static($url);
97};
98
Marc Kupietza9270572018-03-17 15:17:07 +010099get '*/css/*' => sub {
100 my $c = shift;
101 my $url = $c->req->url;
102 $url =~ s@/derekovecs/@/@g;
103 $c->app->log->info("GET: " . $url);
104 $c->reply->static($url);
105};
106
Marc Kupietzc053d972019-01-10 10:41:51 +0100107sub fname2corpusname {
108 ($_) = @_;
109 s@.*/@@;
Marc Kupietz86b50292019-02-17 21:03:59 +0100110 s@\.en@-en@;
Marc Kupietzc053d972019-01-10 10:41:51 +0100111 s@\..*@@;
112 return $_;
113}
114
Marc Kupietz19c68242018-03-12 09:42:21 +0100115sub getClassicCollocatorsCached {
116 my ($c, $word) = @_;
Marc Kupietz81aeed22019-02-17 21:22:45 +0100117 my $s2 = "";
Marc Kupietz9ff3c992019-02-04 12:32:54 +0100118 if($word > $mergedEnd) {
119 $word-=$mergedEnd;
120 }
Marc Kupietz81aeed22019-02-17 21:22:45 +0100121
Marc Kupietz999ab8c2019-02-17 21:42:21 +0100122 if($opt_p >= 5000 && $opt_p < 5600) { # German non-reference
Marc Kupietz9ee3f412019-08-02 14:58:19 +0200123 open PIPE, "GET http://compute:5673/getClassicCollocators?w=$word |" or
124 open PIPE, "GET http://klinux10:5673/getClassicCollocators?w=$word |";
Marc Kupietz999ab8c2019-02-17 21:42:21 +0100125 }
Marc Kupietz19c68242018-03-12 09:42:21 +0100126 if(!$cccache{$word}) {
Marc Kupietz06d61292019-02-04 12:33:22 +0100127 $c->app->log->info("Getting classic collocates of $word.");
Marc Kupietz19c68242018-03-12 09:42:21 +0100128 $cccache{$word} = getClassicCollocators($word);
Marc Kupietz1d96a082019-02-18 09:29:06 +0100129 $cccache{$word} =~ s/:(-?)(nan|inf)/:"${1}${2}"/g;
Marc Kupietz19c68242018-03-12 09:42:21 +0100130 } else {
Marc Kupietz06d61292019-02-04 12:33:22 +0100131 $c->app->log->info("Getting classic collocates for $word from cache.");
Marc Kupietz19c68242018-03-12 09:42:21 +0100132 }
Marc Kupietz81aeed22019-02-17 21:22:45 +0100133 if($opt_p >= 5000 && $opt_p < 5600) { # German non-reference
Marc Kupietz999ab8c2019-02-17 21:42:21 +0100134 while(<PIPE>) {
135 $s2 .= $_;
136 }
137 close(PIPE);
Marc Kupietz81aeed22019-02-17 21:22:45 +0100138 }
Marc Kupietz999ab8c2019-02-17 21:42:21 +0100139
Marc Kupietz81aeed22019-02-17 21:22:45 +0100140 if(length($s2) > 2000) {
141 my $d1 = decode_json($cccache{$word});
142 my $d2 = decode_json($s2);
143 my %d2ld;
Marc Kupietz001bffd2019-02-21 08:52:41 +0100144 my $minLd = 14;
Marc Kupietz81aeed22019-02-17 21:22:45 +0100145 foreach my $i (@{$d2->{collocates}}) {
146 $d2ld{$i->{word}}=$i->{ld};
Marc Kupietz001bffd2019-02-21 08:52:41 +0100147 $minLd=$i->{ld} if($i->{ld} < $minLd);
Marc Kupietz81aeed22019-02-17 21:22:45 +0100148 }
149 foreach my $i (@{$d1->{collocates}}) {
150 my $w = $i->{word};
Marc Kupietz001bffd2019-02-21 08:52:41 +0100151 $i->{delta} = $i->{ld} - (defined $d2ld{$w} ? $d2ld{$w} : $minLd-0.1);
Marc Kupietz81aeed22019-02-17 21:22:45 +0100152 }
153 return(encode_json($d1));
154 } else {
155 my $d1 = decode_json($cccache{$word});
156 foreach my $i (@{$d1->{collocates}}) {
157 $i->{delta} = 0;
158 }
159 return(encode_json($d1));
160 }
Marc Kupietz19c68242018-03-12 09:42:21 +0100161}
162
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100163sub getSimilarProfilesCached {
164 my ($c, $word) = @_;
165 if(!$spcache{$word}) {
166 $spcache{$word} = getSimilarProfiles($word);
167 } else {
168 $c->app->log->info("Getting similar profiles for $word from cache:");
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100169 }
170 return $spcache{$word};
171}
172
Marc Kupietz66bfd952017-12-11 09:59:45 +0100173post '/derekovecs/getVecsByRanks' => sub {
174 my $self = shift;
175 my $vec = getVecs($self->req->json);
176 $self->render(json => $vec);
177};
178
Marc Kupietze13a3552018-01-25 08:48:34 +0100179any '*/getClassicCollocators' => sub {
Marc Kupietze243efd2018-01-11 22:19:24 +0100180 my $self = shift;
Marc Kupietz19c68242018-03-12 09:42:21 +0100181 $self->render(data => getClassicCollocatorsCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
Marc Kupietze243efd2018-01-11 22:19:24 +0100182};
183
Marc Kupietze13a3552018-01-25 08:48:34 +0100184any '/getClassicCollocators' => sub {
Marc Kupietze243efd2018-01-11 22:19:24 +0100185 my $self = shift;
Marc Kupietz19c68242018-03-12 09:42:21 +0100186 $self->render(data => getClassicCollocatorsCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
Marc Kupietze243efd2018-01-11 22:19:24 +0100187};
188
Marc Kupietzd7760b42019-02-21 09:01:44 +0100189any '/getBiggestVocabDistances' => sub {
190 my $self = shift;
191 $self->render(data => getBiggestMergedDifferences(), format=>'json');
192};
193
194any '*/getBiggestVocabDistances' => sub {
195 my $self = shift;
196 $self->render(data => getBiggestMergedDifferences(), format=>'json');
197};
198
Marc Kupietz33c79d32019-08-02 15:11:23 +0200199any '*/getPosWiseW2VCollocators' => sub {
200 my $self = shift;
201 $self->render(data => getPosWiseW2VCollocatorsAsTsv($self->param("w"),
202 ($self->param("max")? $self->param("max") : 200),
203 ($self->param("cutoff")? $self->param("cutoff") :750000),
204 ($self->param("threshold")? $self->param("threshold") : 0.2)),
205 format=>'tsv');
206};
207
208any '/getPosWiseW2VCollocators' => sub {
209 my $self = shift;
210 $self->render(data => getPosWiseW2VCollocatorsAsTsv($self->param("w"),
211 ($self->param("max")? $self->param("max") : 200),
212 ($self->param("cutoff")? $self->param("cutoff") : 750000),
213 ($self->param("threshold")? $self->param("threshold") : 0.2)),
214 format=>'tsv');
215};
216
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100217any '*/getSimilarProfiles' => sub {
218 my $self = shift;
219 $self->render(data => getSimilarProfilesCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
220};
221
Marc Kupietzc987fa82018-03-21 12:14:25 +0100222any '/getSimilarProfiles' => sub {
223 my $self = shift;
224 $self->render(data => getSimilarProfilesCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
225};
226
Marc Kupietz98ed1c02019-08-02 15:05:37 +0200227any '/getSimilarity' => sub {
228 my $self = shift;
229 my $w1 = $self->param("w1");
230 my $w2 = $self->param("w2");
231 $self->render(data => cos_similarity_as_json($w1, $w2), format=>'json');
232};
233
234any '*/getSimilarity' => sub {
235 my $self = shift;
236 my $w1 = $self->param("w1");
237 my $w2 = $self->param("w2");
238 $self->render(data => cos_similarity_as_json($w1, $w2), format=>'json');
239};
240
Marc Kupietzdf3d4b52017-11-29 16:57:27 +0100241get '*/img/*' => sub {
242 my $c = shift;
243 my $url = $c->req->url;
244 $url =~ s@/derekovecs@@g;
245 $c->app->log->info("GET: " . $url);
246 $c->reply->static($url);
247};
248
Marc Kupietzdc22b982015-10-09 09:19:34 +0200249get '/' => sub {
250 my $c = shift;
Marc Kupietza5f60042017-05-04 10:38:12 +0200251 $c->app->log->info("get: ".$c->req->url->to_abs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200252 my $word=$c->param('word');
Marc Kupietz2da2a812019-02-21 14:17:35 +0100253 my $no_nbs=$c->param('n') || ($opt_m? 50 : 100);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100254 my $no_iterations=$c->param('N') || 2000;
Marc Kupietzd4227392016-03-01 16:45:12 +0100255 my $perplexity=$c->param('perplexity') || 20;
Marc Kupietzc4d62f82016-03-01 11:04:24 +0100256 my $epsilon=$c->param('epsilon') || 5;
Marc Kupietzd7aea722016-03-02 11:59:12 +0100257 my $som=$c->param('som') || 0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200258 my $searchBaseVocabFirst=$c->param('sbf') || 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100259 my $sort=$c->param('sort') || 0;
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100260 my $csv=$c->param('csv') || 0;
Marc Kupietzb613b052016-04-28 14:11:59 +0200261 my $json=$c->param('json') || 0;
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +0100262 my $cutoff=$c->param('cutoff') || 500000;
Marc Kupietzd91212f2017-11-13 10:05:09 +0100263 my $dedupe=$c->param('dedupe') || 0;
Marc Kupietzac707b32018-12-20 11:36:38 +0100264 my $nosp=$c->param('nosp') || 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100265 my $res;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100266 my @lists;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100267 my @collocations;
Marc Kupietzd897d5d2019-08-02 15:09:07 +0200268 $word="idea" if(!defined($word));
269 if(defined($word) && $word !~ /^\s*$/) {
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100270 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100271 $word =~ s/\s+/ /g;
Marc Kupietz3082fd02019-01-09 14:54:06 +0100272 if($opt_m && $word !~ /\|/) {
273 $word .= "|$word";
274 }
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100275 for my $w (split(' *\| *', $word)) {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100276 if($opt_m) {
277 if($searchBaseVocabFirst) {
278 $searchBaseVocabFirst=0;
279 } else {
280 $searchBaseVocabFirst=1;
281 }
282 }
283 if ($cache{$w.$cutoff.$no_nbs.$sort.$dedupe,$searchBaseVocabFirst}) {
Marc Kupietz15987412017-11-07 15:56:58 +0100284 $c->app->log->info("Getting $w results from cache");
Marc Kupietz3082fd02019-01-09 14:54:06 +0100285 $res = $cache{$w.$cutoff.$no_nbs.$sort.$dedupe.$searchBaseVocabFirst}
Marc Kupietza5b90152016-03-15 17:39:19 +0100286 } else {
Marc Kupietz15987412017-11-07 15:56:58 +0100287 $c->app->log->info('Looking for neighbours of '.$w);
288 if($opt_i) {
Marc Kupietzac707b32018-12-20 11:36:38 +0100289 $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp);
Marc Kupietz15987412017-11-07 15:56:58 +0100290 } else {
Marc Kupietzac707b32018-12-20 11:36:38 +0100291 $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp);
Marc Kupietz15987412017-11-07 15:56:58 +0100292 }
Marc Kupietz2dd2dd72017-12-01 22:08:14 +0100293 $cache{$w.$cutoff.$no_nbs.$sort.$dedupe} = $res;
Marc Kupietza5b90152016-03-15 17:39:19 +0100294 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100295 push(@lists, $res->{paradigmatic});
Marc Kupietz15987412017-11-07 15:56:58 +0100296 }
297 }
Marc Kupietz56844a22019-08-02 15:12:19 +0200298
Marc Kupietz000ad862016-02-26 14:59:12 +0100299 $word =~ s/ *\| */ | /g;
Marc Kupietzb613b052016-04-28 14:11:59 +0200300 if($json) {
301 return $c->render(json => {word => $word, list => \@lists, collocators=>$res->{syntagmatic}});
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100302 } elsif($csv) {
303 my $csv_data="";
304 for (my $i=0; $i <= $no_nbs; $i++) {
305 $csv_data .= $res->{paradigmatic}->[$i]->{word} . ", ";
306 }
307 for (my $i=0; $i < $no_nbs; $i++) {
308 $csv_data .= $res->{syntagmatic}->[$i]->{word} . ", ";
309 }
310 chop $csv_data;
311 chop $csv_data;
312 $csv_data .= "\n";
313 return $c->render(text=>$csv_data);
Marc Kupietzb613b052016-04-28 14:11:59 +0200314 } else {
Marc Kupietzd7760b42019-02-21 09:01:44 +0100315 my $distantWords="";
316 if(!defined($word) || $word !~ /^\s*$/) {
317 $distantWords = getBiggestMergedDifferences();
318 }
319 $c->render(template=>"index", title=>$title, word=>$word, distantWords=>$distantWords, cutoff=>$cutoff, no_nbs=>$no_nbs, no_iterations => $no_iterations, epsilon=> $epsilon, perplexity=> $perplexity, show_som=>$som, searchBaseVocabFirst=>$searchBaseVocabFirst, sort=>$sort, training_args=>$training_args, mergedEnd=> $mergedEnd, haveSProfiles=> $have_sprofiles, dedupe=> $dedupe, marked=>\%marked, lists=> \@lists, collocators=> $res->{syntagmatic});
Marc Kupietzb613b052016-04-28 14:11:59 +0200320 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200321};
322
Marc Kupietz30ca4342017-11-22 21:21:20 +0100323helper(bitvec2window => sub {
324 my ($self, $n) = @_;
325 my $str = unpack("B32", pack("N", $n));
326 $str =~ s/^\d{22}//;
327 $str =~ s/^(\d{5})/$1x/;
328 $str =~ s/0/·/g;
329 $str =~ s/1/+/g;
330 return $str;
331 });
332
Marc Kupietza5b90152016-03-15 17:39:19 +0100333$daemon->run; # app->start;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200334
335exit;
336
337__END__
338
339__C__
340#include <stdio.h>
341#include <string.h>
342#include <math.h>
343#include <malloc.h>
344#include <stdlib.h> //strlen
Marc Kupietzf0809762016-02-26 10:13:47 +0100345#include <sys/mman.h>
Marc Kupietz000ad862016-02-26 14:59:12 +0100346#include <pthread.h>
Marc Kupietze243efd2018-01-11 22:19:24 +0100347#include <collocatordb.h>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200348
349#define max_size 2000
350#define max_w 50
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100351#define MAX_NEIGHBOURS 1000
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100352#define MAX_WORDS -1
Marc Kupietz000ad862016-02-26 14:59:12 +0100353#define MAX_THREADS 100
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100354#define MAX_CC 50
355#define EXP_TABLE_SIZE 1000
356#define MAX_EXP 6
Marc Kupietz271e2a42016-03-22 11:37:43 +0100357#define MIN_RESP 0.50
Marc Kupietzdc22b982015-10-09 09:19:34 +0200358
359//the thread function
360void *connection_handler(void *);
Marc Kupietz000ad862016-02-26 14:59:12 +0100361
362typedef struct {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100363 long long wordi;
364 long position;
365 float activation;
Marc Kupietz4116b432017-12-06 14:15:32 +0100366 float average;
Marc Kupietza77acce2017-11-30 16:59:07 +0100367 float cprobability; // column wise probability
Marc Kupietz4116b432017-12-06 14:15:32 +0100368 float cprobability_sum;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100369 float probability;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100370 float activation_sum;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100371 float max_activation;
Marc Kupietz4116b432017-12-06 14:15:32 +0100372 float heat[16];
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100373} collocator;
374
375typedef struct {
376 collocator *best;
Marc Kupietz80abb442016-03-23 21:04:08 +0100377 int length;
Marc Kupietz000ad862016-02-26 14:59:12 +0100378} knn;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100379
Marc Kupietz000ad862016-02-26 14:59:12 +0100380typedef struct {
Marc Kupietz48c29682016-03-19 11:30:43 +0100381 long long wordi[MAX_NEIGHBOURS];
382 char sep[MAX_NEIGHBOURS];
383 int length;
384} wordlist;
385
386typedef struct {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100387 long cutoff;
Marc Kupietz48c29682016-03-19 11:30:43 +0100388 wordlist *wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100389 char *token;
390 int N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100391 long from;
Marc Kupietz000ad862016-02-26 14:59:12 +0100392 unsigned long upto;
Marc Kupietzc55c8872017-12-01 23:27:10 +0100393 collocator *best;
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100394 float *target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100395 float *window_sums;
Marc Kupietz3c0fab12019-08-02 15:07:47 +0200396 float threshold;
Marc Kupietz000ad862016-02-26 14:59:12 +0100397} knnpars;
398
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100399typedef struct {
400 uint32_t index;
401 float value;
402} sparse_t;
403
404typedef struct {
405 uint32_t len;
406 sparse_t nbr[100];
407} profile_t;
408
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200409float *M, *M2=0L, *syn1neg_window, *expTable;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100410float *window_sums;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200411char *vocab;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200412char *garbage = NULL;
Marc Kupietze243efd2018-01-11 22:19:24 +0100413COLLOCATORDB *cdb = NULL;
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100414profile_t *sprofiles = NULL;
415size_t sprofiles_qty = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100416
Marc Kupietza2e64502016-04-27 09:53:51 +0200417long long words, size, merged_end;
Marc Kupietza5f60042017-05-04 10:38:12 +0200418long long merge_words = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100419int num_threads=20;
Marc Kupietza5b90152016-03-15 17:39:19 +0100420int latin_enc=0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100421int window;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200422
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100423/* load collocation profiles if file exists */
424int load_sprofiles(char *vecsname) {
425 char *basename = strdup(vecsname);
426 char *pos = strstr(basename, ".vecs");
427 if(pos)
428 *pos=0;
429
430 char binsprofiles_fname[256];
431 strcpy(binsprofiles_fname, basename);
432 strcat(binsprofiles_fname, ".sprofiles.bin");
433 FILE *fp = fopen(binsprofiles_fname, "rb");
434 if (fp == NULL) {
435 printf("Collocation profiles %s not found. No problem.\n", binsprofiles_fname);
436 return 0;
437 }
438 fseek(fp, 0L, SEEK_END);
439 size_t sz = ftell(fp);
440 fclose(fp);
441
442 int fd = open(binsprofiles_fname, O_RDONLY);
443 sprofiles = mmap(0, sz, PROT_READ, MAP_SHARED, fd, 0);
444 if (sprofiles == MAP_FAILED) {
445 close(fd);
446 fprintf(stderr, "Cannot mmap %s\n", binsprofiles_fname);
447 sprofiles = NULL;
448 return 0;
449 } else {
450 sprofiles_qty = sz / sizeof(profile_t);
451 fprintf(stderr, "Successfully mmaped %s containing similar profiles for %ld word forms.\n", binsprofiles_fname, sprofiles_qty);
452 }
453 return 1;
454}
455
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100456int init_net(char *file_name, char *net_name, int latin) {
Marc Kupietz67c20282016-02-26 09:42:00 +0100457 FILE *f, *binvecs, *binwords;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100458 int binwords_fd, binvecs_fd, net_fd, i;
Marc Kupietz82b02672016-02-26 12:32:25 +0100459 long long a, b, c, d, cn;
460 float len;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200461 double val;
Marc Kupietz82b02672016-02-26 12:32:25 +0100462
Marc Kupietz67c20282016-02-26 09:42:00 +0100463 char binvecs_fname[256], binwords_fname[256];
464 strcpy(binwords_fname, file_name);
465 strcat(binwords_fname, ".words");
466 strcpy(binvecs_fname, file_name);
467 strcat(binvecs_fname, ".vecs");
Marc Kupietzdc22b982015-10-09 09:19:34 +0200468
Marc Kupietza5b90152016-03-15 17:39:19 +0100469 latin_enc = latin;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200470 f = fopen(file_name, "rb");
471 if (f == NULL) {
472 printf("Input file %s not found\n", file_name);
473 return -1;
474 }
475 fscanf(f, "%lld", &words);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100476 if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200477 fscanf(f, "%lld", &size);
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100478 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) {
479 printf("Converting %s to memory mappable structures\n", file_name);
Marc Kupietzf0809762016-02-26 10:13:47 +0100480 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
481 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
482 if (M == NULL) {
483 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
484 return -1;
485 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200486 if(strstr(file_name, ".txt")) {
487 for (b = 0; b < words; b++) {
488 a = 0;
489 while (1) {
490 vocab[b * max_w + a] = fgetc(f);
491 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
492 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
493 }
494 vocab[b * max_w + a] = 0;
495 len = 0;
496 for (a = 0; a < size; a++) {
497 fscanf(f, "%lf", &val);
498 M[a + b * size] = val;
499 len += val * val;
500 }
501 len = sqrt(len);
502 for (a = 0; a < size; a++) M[a + b * size] /= len;
503 }
504 } else {
505 for (b = 0; b < words; b++) {
506 a = 0;
507 while (1) {
508 vocab[b * max_w + a] = fgetc(f);
509 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
510 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
511 }
512 vocab[b * max_w + a] = 0;
513 fread(&M[b * size], sizeof(float), size, f);
514 len = 0;
515 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
516 len = sqrt(len);
517 for (a = 0; a < size; a++) M[a + b * size] /= len;
518 }
519 }
Marc Kupietz67c20282016-02-26 09:42:00 +0100520 if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) {
521 fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs);
522 fclose(binvecs);
523 fwrite(vocab, sizeof(char), (long long)words * max_w, binwords);
524 fclose(binwords);
525 }
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100526 }
527 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
528 M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0);
529 vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0);
530 if (M == MAP_FAILED || vocab == MAP_FAILED) {
531 close(binvecs_fd);
532 close(binwords_fd);
533 fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname);
534 exit(-1);
535 }
536 } else {
537 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
538 exit(-1);
Marc Kupietz67c20282016-02-26 09:42:00 +0100539 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200540 fclose(f);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100541
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200542 if(net_name && strlen(net_name) > 0) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100543 if( (net_fd = open(net_name, O_RDONLY)) >= 0) {
544 window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2;
545 // lseek(net_fd, sizeof(float) * words * size, SEEK_SET);
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100546 // munmap(M, sizeof(float) * words * size);
547 M2 = mmap(0, sizeof(float) * words * size + sizeof(float) * 2 * window * size * words, PROT_READ, MAP_SHARED, net_fd, 0);
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200548 if (M2 == MAP_FAILED) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100549 close(net_fd);
550 fprintf(stderr, "Cannot mmap %s\n", net_name);
551 exit(-1);
552 }
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100553 syn1neg_window = M2 + words * size;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100554 } else {
555 fprintf(stderr, "Cannot open %s\n", net_name);
556 exit(-1);
557 }
558 fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window);
Marc Kupietze243efd2018-01-11 22:19:24 +0100559
560 char collocatordb_name[2048];
561 strcpy(collocatordb_name, net_name);
562 char *ext = rindex(collocatordb_name, '.');
563 if(ext) {
564 strcpy(ext, ".rocksdb");
565 if(access(collocatordb_name, R_OK) == 0) {
566 *ext = 0;
567 fprintf(stderr, "Opening collocator DB %s\n", collocatordb_name);
568 cdb = open_collocatordb(collocatordb_name);
569 }
570 }
571 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100572
573 expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float));
574 for (i = 0; i < EXP_TABLE_SIZE; i++) {
575 expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table
576 expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1)
577 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100578 window_sums = malloc(sizeof(float) * (window+1) * 2);
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100579
580 return 0;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200581}
582
Marc Kupietza2e64502016-04-27 09:53:51 +0200583long mergeVectors(char *file_name){
584 FILE *f, *binvecs, *binwords;
585 int binwords_fd, binvecs_fd, net_fd, i;
586 long long a, b, c, d, cn;
587 float len;
588 float *merge_vecs;
589 char *merge_vocab;
Marc Kupietza5f60042017-05-04 10:38:12 +0200590 /* long long merge_words, merge_size; */
591 long long merge_size;
Marc Kupietza2e64502016-04-27 09:53:51 +0200592
593 char binvecs_fname[256], binwords_fname[256];
594 strcpy(binwords_fname, file_name);
595 strcat(binwords_fname, ".words");
596 strcpy(binvecs_fname, file_name);
597 strcat(binvecs_fname, ".vecs");
598
599 f = fopen(file_name, "rb");
600 if (f == NULL) {
601 printf("Input file %s not found\n", file_name);
602 exit -1;
603 }
604 fscanf(f, "%lld", &merge_words);
605 fscanf(f, "%lld", &merge_size);
606 if(merge_size != size){
607 fprintf(stderr, "vectors must have the same length\n");
608 exit(-1);
609 }
610 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
611 merge_vecs = malloc(sizeof(float) * (words + merge_words) * size);
612 merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w);
613 if (merge_vecs == NULL || merge_vocab == NULL) {
614 close(binvecs_fd);
615 close(binwords_fd);
616 fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname);
617 exit(-1);
618 }
619 read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float));
620 read(binwords_fd, merge_vocab, merge_words * max_w);
621 } else {
622 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
623 exit(-1);
624 }
625 printf("Successfully reallocated memory\nMerging...\n");
626 fflush(stdout);
627 memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float));
628 memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w);
629 munmap(M, words * size * sizeof(float));
630 munmap(vocab, words * max_w);
631 M = merge_vecs;
632 vocab = merge_vocab;
633 merged_end = merge_words;
634 words += merge_words;
635 fclose(f);
636 printf("merged_end: %lld, words: %lld\n", merged_end, words);
Marc Kupietzd7760b42019-02-21 09:01:44 +0100637 //printBiggestMergedDifferences();
Marc Kupietza2e64502016-04-27 09:53:51 +0200638 return((long) merged_end);
639}
640
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200641void filter_garbage() {
642 long i;
Marc Kupietzab591a82016-04-28 14:08:49 +0200643 unsigned char *w, previous, c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200644 garbage = malloc(words);
645 memset(garbage, 0, words);
646 for (i = 0; i < words; i++) {
647 w = vocab + i * max_w;
648 previous = 0;
Marc Kupietz969adfa2018-03-12 09:43:53 +0100649 if(strncmp("quot", w, 4) == 0) {
650 garbage[i]=1;
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100651// printf("Gargabe: %s\n", vocab + i * max_w);
Marc Kupietz969adfa2018-03-12 09:43:53 +0100652 } else {
653 while((c = *w++) && !garbage[i]) {
654 if( ((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) ||
655 (previous == '-' && (c & 32)) ||
656 (previous == 0xc2 && (c == 0xa4 || c == 0xb6 )) ||
657 (previous == 'q' && c == 'u' && *(w) == 'o' && *(w+1) == 't') || /* quot */
658 c == '<'
659 ) {
660 garbage[i]=1;
661 continue;
662 }
663 previous = c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200664 }
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200665 }
666 }
667 return;
668}
669
Marc Kupietzac707b32018-12-20 11:36:38 +0100670
671knn *simpleGetCollocators(int word, int number, long cutoff, int *result) {
672 knnpars *pars = calloc(sizeof(knnpars), 1);
673 float *target_sums;
674 float *window_sums = malloc(sizeof(float) * (window+1) * 2);
675 pars->cutoff = (cutoff? cutoff : 300000);
676 long a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float));
677 for(a = 0; a < cutoff; a++)
678 target_sums[a] = 0;
679 pars->target_sums = target_sums;
680 pars->window_sums = window_sums;
681 pars->N = (number? number : 20);
682 pars->from = 0;
683 pars->upto = window * 2 -1;
Marc Kupietz7631e022019-01-25 12:04:42 +0100684 knn *syn_nbs = NULL; // = (knn*) getCollocators(pars);
Marc Kupietzac707b32018-12-20 11:36:38 +0100685 free(pars);
686 free(window_sums);
687 free(target_sums);
688 return syn_nbs;
689}
690
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100691void *getCollocators(void *args) {
692 knnpars *pars = args;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100693 int N = pars->N;
Marc Kupietz52702832019-01-15 17:55:52 +0100694
Marc Kupietz271e2a42016-03-22 11:37:43 +0100695 int cc = pars->wl->wordi[0];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100696 knn *nbs = NULL;
697 long window_layer_size = size * window * 2;
698 long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target;
699 float f, max_f, maxmax_f;
Marc Kupietz7631e022019-01-25 12:04:42 +0100700 float *target_sums=NULL, worstbest, wpos_sum;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100701 collocator *best;
Marc Kupietzd5642582016-03-19 22:23:13 +0100702
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200703 if(M2 == NULL || cc == -1)
Marc Kupietzd5642582016-03-19 22:23:13 +0100704 return NULL;
705
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100706 a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float));
Marc Kupietz7631e022019-01-25 12:04:42 +0100707 memset(target_sums, 0, pars->cutoff * sizeof(float));
708 best = malloc((N>200?N:200) * sizeof(collocator));
709 memset(best, 0, (N>200?N:200) * sizeof(collocator));
Marc Kupietz3c0fab12019-08-02 15:07:47 +0200710 worstbest = pars->threshold;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100711
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100712 for (b = 0; b < pars->cutoff; b++)
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100713 target_sums[b]=0;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100714 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100715 best[b].wordi = -1;
716 best[b].probability = 1;
717 best[b].activation = worstbest;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100718 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100719
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100720 d = cc;
721 maxmax_f = -1;
722 maxmax_target = 0;
723
Marc Kupietz271e2a42016-03-22 11:37:43 +0100724 for (a = pars->from; a < pars->upto; a++) {
725 if(a >= window)
726 a++;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100727 wpos_sum = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100728 printf("window pos: %ld\n", a);
729 if (a != window) {
730 max_f = -1;
731 window_offset = a * size;
732 if (a > window)
733 window_offset -= size;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100734 for(target = 0; target < pars->cutoff; target ++) {
735 if(garbage && garbage[target]) continue;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100736 if(target == d)
737 continue;
738 f = 0;
739 for (c = 0; c < size; c++)
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100740 f += M2[d* size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100741 if (f < -MAX_EXP)
742 continue;
743 else if (f > MAX_EXP)
744 continue;
745 else
746 f = expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100747 wpos_sum += f;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100748
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100749 target_sums[target] += f;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100750 if(f > worstbest) {
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100751 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100752 if (f > best[b].activation) {
753 memmove(best + b + 1, best + b, (N - b -1) * sizeof(collocator));
754 best[b].activation = f;
755 best[b].wordi = target;
756 best[b].position = window-a;
Marc Kupietz33679a32016-03-22 08:49:39 +0100757 break;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100758 }
759 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100760 if(b == N - 1)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100761 worstbest = best[N-1].activation;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100762 }
763 }
764 printf("%d %.2f\n", max_target, max_f);
765 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
766 if(max_f > maxmax_f) {
767 maxmax_f = max_f;
768 maxmax_target = max_target;
769 }
Marc Kupietz33679a32016-03-22 08:49:39 +0100770 for (b = 0; b < N; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100771 if(best[b].position == window-a)
Marc Kupietza77acce2017-11-30 16:59:07 +0100772 best[b].cprobability = best[b].activation / wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100773 } else {
774 printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]);
775 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100776 pars->window_sums[a] = wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100777 }
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100778 for (b = 0; b < pars->cutoff; b++)
Marc Kupietza77acce2017-11-30 16:59:07 +0100779 pars->target_sums[b] += target_sums[b]; //(target_sums[b] / wpos_sum ) / (window * 2);
Marc Kupietzd89431f2019-08-02 15:06:38 +0200780
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100781 free(target_sums);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100782 for(b=0; b<N && best[b].wordi >= 0; b++);; // THIS LOOP IS NEEDED (b...)
783// printf("%d: best syn: %s %.2f %.5f\n", b, &vocab[best[b].wordi*max_w], best[b].activation, best[b].probability);
Marc Kupietzbd41da32017-11-24 10:26:43 +0100784// printf("\n");
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100785 nbs = malloc(sizeof(knn));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100786 nbs->best = best;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100787 nbs->length = b-1;
788 pthread_exit(nbs);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100789}
790
Marc Kupietz30ca4342017-11-22 21:21:20 +0100791
Marc Kupietz66bfd952017-12-11 09:59:45 +0100792AV *getVecs(AV *array) {
793 int i, b;
794 AV *result = newAV();
795 for (i=0; i<=av_len(array); i++) {
796 SV** elem = av_fetch(array, i, 0);
797 if (elem != NULL) {
798 long j = (long) SvNV(*elem);
799 AV *vector = newAV();
800 for (b = 0; b < size; b++) {
801 av_push(vector, newSVnv(M[b + j * size]));
802 }
803 av_push(result, newRV_noinc(vector));
804 }
805 }
806 return result;
807}
808
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100809char *getSimilarProfiles(long node) {
810 int i;
811 char buffer[120000];
812 char pair_buffer[2048];
813 buffer[0]='[';
814 buffer[1]=0;
815 if(node >= sprofiles_qty) {
816 printf("Not available in precomputed profile\n");
817 return(strdup("[{\"w\":\"not available\", \"v\":0}]\n"));
818 }
819
820 printf("******* %s ******\n", &vocab[max_w * node]);
821
822 for(i=0; i < 100 && i < sprofiles[node].len; i++) {
823 sprintf(pair_buffer, "{\"w\":\"%s\", \"v\":%f},", &vocab[max_w * (sprofiles[node].nbr[i].index)], sprofiles[node].nbr[i].value);
824 strcat(buffer, pair_buffer);
825 }
826 buffer[strlen(buffer)-1]=']';
827 strcat(buffer, "\n");
828 printf(buffer);
829 return(strdup(buffer));
830}
831
Marc Kupietze243efd2018-01-11 22:19:24 +0100832char *getClassicCollocators(long node) {
833 char *res = (cdb? strdup(get_collocators_as_json(cdb, node)) : "[]");
834 return res;
835}
836
Marc Kupietz0957d532019-01-03 17:54:00 +0100837wordlist *getTargetWords(char *st1, int search_backw) {
Marc Kupietz48c29682016-03-19 11:30:43 +0100838 wordlist *wl = malloc(sizeof(wordlist));
839 char st[100][max_size], sep[100];
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100840 long a, b=0, c=0, cn=0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200841 int unmerged;
842
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100843 while (1) {
844 st[cn][b] = st1[c];
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100845 b++;
846 c++;
847 st[cn][b] = 0;
848 if (st1[c] == 0) break;
849 if (st1[c] == ' ' || st1[c] == '-') {
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100850 sep[cn++] = st1[c];
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100851 b = 0;
852 c++;
853 }
854 }
855 cn++;
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100856 for (a = 0; a < cn; a++) {
857 if (search_backw) {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100858 for (b = words - 1; b >= (merge_words? merge_words : 0) && strcmp(&vocab[b * max_w], st[a]) !=0; b--);
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100859 } else {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100860 for (b = 0; b < (merge_words? merge_words : words) && strcmp(&vocab[b * max_w], st[a]) != 0; b++);
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100861 }
862 if (b == words) b = -1;
863 wl->wordi[a] = b;
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100864 if (b == -1) {
865 fprintf(stderr, "Out of dictionary word!\n");
866 cn--;
Marc Kupietz3082fd02019-01-09 14:54:06 +0100867 } else {
868 fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", &vocab[wl->wordi[a]*max_w], wl->wordi[a]);
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100869 }
870 }
Marc Kupietz48c29682016-03-19 11:30:43 +0100871 wl->length=cn;
872 return(wl);
873}
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100874
Marc Kupietz98ed1c02019-08-02 15:05:37 +0200875float get_distance(long b, long c) {
876 long a;
877 float dist = 0;
878 for (a = 0; a < size; a++) dist += M[a + c * size] * M[a + b * size];
879 return dist;
880}
881
Marc Kupietzd7760b42019-02-21 09:01:44 +0100882char *getBiggestMergedDifferences() {
883 static char *result = NULL;
Marc Kupietzebc131e2019-01-03 16:24:27 +0100884 float dist, len, vec[max_size];
885 long long a, b, c, d, cn, *bi;
886 char ch;
887 knn *nbs = NULL;
Marc Kupietzd7760b42019-02-21 09:01:44 +0100888 int N = 1000;
889
Marc Kupietzb6514dc2019-06-26 11:47:56 +0200890 if(merged_end == 0)
891 result = "[]";
892
Marc Kupietzd7760b42019-02-21 09:01:44 +0100893 if(result != NULL)
894 return result;
Marc Kupietzebc131e2019-01-03 16:24:27 +0100895
896 printf("Looking for biggest distances between main and merged vectors ...\n");
897 collocator *best;
898 best = malloc(N * sizeof(collocator));
899 memset(best, 0, N * sizeof(collocator));
900
901 float worstbest=1000000;
902
903 for (a = 0; a < N; a++) best[a].activation = worstbest;
904
Marc Kupietz2da2a812019-02-21 14:17:35 +0100905 for (c = 0; c < 500000; c++) {
Marc Kupietzebc131e2019-01-03 16:24:27 +0100906 if(garbage && garbage[c]) continue;
907 a = 0;
908 dist = 0;
909 for (a = 0; a < size; a++) dist += M[a + c * size] * M[a + (c+merged_end) * size];
910 if(dist < worstbest) {
911 for (a = 0; a < N; a++) {
912 if (dist < best[a].activation) {
913 memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator));
914 best[a].activation = dist;
915 best[a].wordi = c;
916 break;
917 }
918 }
919 worstbest = best[N-1].activation;
920 }
921 }
922
Marc Kupietzd7760b42019-02-21 09:01:44 +0100923 result = malloc(N*max_w);
924 char *p = result;
925 *p++ = '['; *p = 0;
Marc Kupietzebc131e2019-01-03 16:24:27 +0100926 for (a = 0; a < N; a++) {
Marc Kupietzd7760b42019-02-21 09:01:44 +0100927 p += sprintf(p, "{\"rank\":%d,\"word\":\"%s\",\"dist\":%.3f},", a, &vocab[best[a].wordi * max_w], 1-best[a].activation);
Marc Kupietzebc131e2019-01-03 16:24:27 +0100928 }
Marc Kupietzd7760b42019-02-21 09:01:44 +0100929 *--p = ']';
930 return(result);
Marc Kupietzebc131e2019-01-03 16:24:27 +0100931}
932
Marc Kupietz98ed1c02019-08-02 15:05:37 +0200933
934float cos_similarity(long b, long c) {
935 float dist=0;
936 long a;
937 for (a = 0; a < size; a++) dist += M[b * size + a] * M[c * size + a];
938 return dist;
939}
940
941char *cos_similarity_as_json(char *w1, char *w2) {
942 wordlist *a, *b;
943 float res;
944 a = getTargetWords(w1, 0);
945 b = getTargetWords(w2, 0);
946 if (a == NULL || b==NULL || a->length != 1 || b->length != 1)
947 res = -1;
948 else
949 res = cos_similarity(a->wordi[0], b->wordi[0]);
950 fprintf(stderr, "a: %lld b: %lld res:%f\n", a->wordi[0], b->wordi[0], res);
951 char *json = malloc(16);
952 sprintf(json, "%.5f", res);
953 return json;
954}
955
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100956void *_get_neighbours(void *arg) {
957 knnpars *pars = arg;
Marc Kupietz48c29682016-03-19 11:30:43 +0100958 char *st1 = pars->token;
959 int N = pars->N;
960 long from = pars -> from;
961 unsigned long upto = pars -> upto;
962 char file_name[max_size], st[100][max_size], *sep;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100963 float dist, len, vec[max_size];
964 long long a, b, c, d, cn, *bi;
Marc Kupietz48c29682016-03-19 11:30:43 +0100965 char ch;
966 knn *nbs = NULL;
967 wordlist *wl = pars->wl;
968
Marc Kupietzc55c8872017-12-01 23:27:10 +0100969 collocator *best = pars->best;
Marc Kupietz48c29682016-03-19 11:30:43 +0100970
971 float worstbest=-1;
972
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100973 for (a = 0; a < N; a++) best[a].activation = 0;
Marc Kupietz48c29682016-03-19 11:30:43 +0100974 a = 0;
975 bi = wl->wordi;
976 cn = wl->length;
977 sep = wl->sep;
978 b = bi[0];
979 c = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100980 if (b == -1) {
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100981 N = 0;
982 goto end;
983 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200984 for (a = 0; a < size; a++) vec[a] = 0;
985 for (b = 0; b < cn; b++) {
986 if (bi[b] == -1) continue;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100987 if(b>0 && sep[b-1] == '-')
988 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
989 else
990 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200991 }
992 len = 0;
993 for (a = 0; a < size; a++) len += vec[a] * vec[a];
994 len = sqrt(len);
995 for (a = 0; a < size; a++) vec[a] /= len;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100996 for (a = 0; a < N; a++) best[a].activation = -1;
Marc Kupietz000ad862016-02-26 14:59:12 +0100997 for (c = from; c < upto; c++) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200998 if(garbage && garbage[c]) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200999 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +01001000// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +01001001// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
1002// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +02001003 dist = 0;
1004 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +01001005 if(dist > worstbest) {
1006 for (a = 0; a < N; a++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001007 if (dist > best[a].activation) {
1008 memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator));
1009 best[a].activation = dist;
1010 best[a].wordi = c;
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +01001011 break;
Marc Kupietzdc22b982015-10-09 09:19:34 +02001012 }
Marc Kupietzdc22b982015-10-09 09:19:34 +02001013 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001014 worstbest = best[N-1].activation;
Marc Kupietzdc22b982015-10-09 09:19:34 +02001015 }
1016 }
Marc Kupietz34020dc2016-02-25 08:44:19 +01001017
Marc Kupietz44bee3c2016-02-25 16:26:29 +01001018end:
Marc Kupietz000ad862016-02-26 14:59:12 +01001019 pthread_exit(nbs);
Marc Kupietzdc22b982015-10-09 09:19:34 +02001020}
1021
Marc Kupietze0e42132017-11-24 16:44:34 +01001022int cmp_activation (const void * a, const void * b) {
1023 float fb = ((collocator *)a)->activation;
1024 float fa = ((collocator *)b)->activation;
1025 return (fa > fb) - (fa < fb);
1026}
1027
1028int cmp_probability (const void * a, const void * b) {
1029 float fb = ((collocator *)a)->probability;
1030 float fa = ((collocator *)b)->probability;
1031 return (fa > fb) - (fa < fb);
1032}
1033
Marc Kupietz33c79d32019-08-02 15:11:23 +02001034char* getPosWiseW2VCollocatorsAsTsv(char *word, long maxPerPos, long cutoff, float threshold) {
1035 HV *result = newHV();
1036 float *target_sums=NULL, vec[max_size];
1037 long long old_words;
1038 long a, b, c, d;
1039 knn *para_nbs[MAX_THREADS];
1040 knn *syn_nbs[MAX_THREADS];
1041 knnpars pars[MAX_THREADS];
1042 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
1043 wordlist *wl;
1044 int syn_threads = (M2? window * 2 : 0);
1045 int search_backw = 0;
1046 collocator *best = NULL;
1047 posix_memalign((void **) &best, 128, 10 * (maxPerPos>=200? maxPerPos : 200) * sizeof(collocator));
1048 memset(best, 0, (maxPerPos>=200? maxPerPos : 200) * sizeof(collocator));
1049
1050
1051 if(cutoff < 1 || cutoff > words)
1052 cutoff=words;
1053
1054 wl = getTargetWords(word, search_backw);
1055 if(wl == NULL || wl->length < 1)
1056 return "";
1057
1058 a = posix_memalign((void **) &target_sums, 128, cutoff * sizeof(float));
1059 memset(target_sums, 0, cutoff * sizeof(float));
1060
1061 printf("Starting %d threads\n", syn_threads);
1062 fflush(stdout);
1063 for(a=0; a < syn_threads; a++) {
1064 pars[a].cutoff = cutoff;
1065 pars[a].target_sums = target_sums;
1066 pars[a].window_sums = window_sums;
1067 pars[a].wl = wl;
1068 pars[a].N = maxPerPos;
1069 pars[a].threshold = threshold;
1070 pars[a].from = a;
1071 pars[a].upto = a+1;
1072 pthread_create(&pt[a], NULL, getCollocators, (void *) &pars[a]);
1073 }
1074 printf("Waiting for syn threads to join\n");
1075 fflush(stdout);
1076 for (a = 0; a < syn_threads; a++) pthread_join(pt[a], (void *) &syn_nbs[a]);
1077 printf("Syn threads joint\n");
1078 fflush(stdout);
1079 result = malloc(maxPerPos*80*syn_threads);
1080 char *p = result;
1081 *p = 0;
1082 for (a = syn_threads -1; a >= 0; a--) {
1083 for (b=0; b < syn_nbs[a]->length; b++) {
1084 p += sprintf(p, "%ld\t%s\t%f\n", syn_nbs[a]->best[b].position, &vocab[syn_nbs[a]->best[b].wordi * max_w], syn_nbs[a]->best[b].activation);
1085 }
1086 }
1087 return(result);
1088}
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001089
Marc Kupietzac707b32018-12-20 11:36:38 +01001090SV *get_neighbours(char *st1, int N, int sort_by, int search_backw, long cutoff, int dedupe, int no_similar_profiles) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001091 HV *result = newHV();
Marc Kupietz7631e022019-01-25 12:04:42 +01001092 float *target_sums=NULL, vec[max_size];
Marc Kupietza5f60042017-05-04 10:38:12 +02001093 long long old_words;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001094 long a, b, c, d, slice;
Marc Kupietz271e2a42016-03-22 11:37:43 +01001095 knn *para_nbs[MAX_THREADS];
1096 knn *syn_nbs[MAX_THREADS];
Marc Kupietz000ad862016-02-26 14:59:12 +01001097 knnpars pars[MAX_THREADS];
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001098 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
Marc Kupietz48c29682016-03-19 11:30:43 +01001099 wordlist *wl;
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001100 int syn_threads = (M2? window * 2 : 0);
Marc Kupietzac707b32018-12-20 11:36:38 +01001101 int para_threads = (no_similar_profiles? 0 : num_threads - syn_threads);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001102
Marc Kupietz7631e022019-01-25 12:04:42 +01001103 collocator *best = NULL;
1104 posix_memalign((void **) &best, 128, 10 * (N>=200? N : 200) * sizeof(collocator));
1105 memset(best, 0, (N>=200? N : 200) * sizeof(collocator));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001106
Marc Kupietz000ad862016-02-26 14:59:12 +01001107 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
1108
Marc Kupietzd5d05732018-01-30 11:57:35 +01001109 if(cutoff < 1 || cutoff > words)
Marc Kupietz2c79c5e2017-11-09 16:18:40 +01001110 cutoff=words;
1111
Marc Kupietza2e64502016-04-27 09:53:51 +02001112 wl = getTargetWords(st1, search_backw);
Marc Kupietzf9ac54e2017-11-21 09:22:29 +01001113 if(wl == NULL || wl->length < 1)
Marc Kupietz271e2a42016-03-22 11:37:43 +01001114 goto end;
Marc Kupietz48c29682016-03-19 11:30:43 +01001115
Marc Kupietz2c79c5e2017-11-09 16:18:40 +01001116 old_words = cutoff;
Marc Kupietz3082fd02019-01-09 14:54:06 +01001117 slice = cutoff / para_threads;
Marc Kupietza5f60042017-05-04 10:38:12 +02001118
Marc Kupietz2c79c5e2017-11-09 16:18:40 +01001119 a = posix_memalign((void **) &target_sums, 128, cutoff * sizeof(float));
Marc Kupietz7631e022019-01-25 12:04:42 +01001120 memset(target_sums, 0, cutoff * sizeof(float));
Marc Kupietzce3d4c62016-03-23 16:11:25 +01001121
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001122 printf("Starting %d threads\n", para_threads);
1123 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001124 for(a=0; a < para_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +01001125 pars[a].cutoff = cutoff;
Marc Kupietz000ad862016-02-26 14:59:12 +01001126 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +01001127 pars[a].wl = wl;
Marc Kupietz000ad862016-02-26 14:59:12 +01001128 pars[a].N = N;
Marc Kupietzc55c8872017-12-01 23:27:10 +01001129 pars[a].best = &best[N*a];
Marc Kupietz3082fd02019-01-09 14:54:06 +01001130 if(merge_words == 0 || search_backw == 0) {
Marc Kupietz1f0f7802019-01-03 16:23:29 +01001131 pars[a].from = a*slice;
1132 pars[a].upto = ((a+1)*slice > cutoff? cutoff : (a+1) * slice);
1133 } else {
Marc Kupietz3082fd02019-01-09 14:54:06 +01001134 pars[a].from = merge_words + a * slice;
1135 pars[a].upto = merge_words + ((a+1)*slice > cutoff? cutoff : (a+1) * slice);
Marc Kupietz1f0f7802019-01-03 16:23:29 +01001136 }
1137 printf("From: %ld, Upto: %ld\n", pars[a].from, pars[a].upto);
Marc Kupietz000ad862016-02-26 14:59:12 +01001138 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
1139 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001140 if(M2) {
1141 for(a=0; a < syn_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +01001142 pars[a + para_threads].cutoff = cutoff;
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001143 pars[a + para_threads].target_sums = target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001144 pars[a + para_threads].window_sums = window_sums;
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001145 pars[a + para_threads].wl = wl;
1146 pars[a + para_threads].N = N;
Marc Kupietz3c0fab12019-08-02 15:07:47 +02001147 pars[a + para_threads].threshold = MIN_RESP;
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001148 pars[a + para_threads].from = a;
1149 pars[a + para_threads].upto = a+1;
1150 pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *) &pars[a + para_threads]);
1151 }
Marc Kupietz271e2a42016-03-22 11:37:43 +01001152 }
1153 printf("Waiting for para threads to join\n");
1154 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001155 for (a = 0; a < para_threads; a++) pthread_join(pt[a], (void *) &para_nbs[a]);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001156 printf("Para threads joint\n");
1157 fflush(stdout);
Marc Kupietz000ad862016-02-26 14:59:12 +01001158
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001159 /* if(!syn_nbs[0]) */
1160 /* goto end; */
Marc Kupietz000ad862016-02-26 14:59:12 +01001161
Marc Kupietzc55c8872017-12-01 23:27:10 +01001162 qsort(best, N*para_threads, sizeof(collocator), cmp_activation);
Marc Kupietz000ad862016-02-26 14:59:12 +01001163
Marc Kupietz000ad862016-02-26 14:59:12 +01001164
Marc Kupietzd0d3e912017-12-01 22:09:43 +01001165 long long chosen[MAX_NEIGHBOURS];
1166 printf("N: %ld\n", N);
1167
Marc Kupietz271e2a42016-03-22 11:37:43 +01001168 AV* array = newAV();
Marc Kupietzd91212f2017-11-13 10:05:09 +01001169 int i, j;
Marc Kupietza5f60042017-05-04 10:38:12 +02001170 int l1_words=0, l2_words=0;
Marc Kupietzd0d3e912017-12-01 22:09:43 +01001171
1172 for (a = 0, i = 0; i < N && a < N*para_threads; a++) {
Marc Kupietzd91212f2017-11-13 10:05:09 +01001173 int filtered=0;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001174 long long c = best[a].wordi;
Marc Kupietze8b9dd22019-01-03 17:55:59 +01001175 if ((merge_words && dedupe && i > 1) || (!merge_words && dedupe && i > 0)) {
Marc Kupietzd0d3e912017-12-01 22:09:43 +01001176 for (j=0; j<i && !filtered; j++)
1177 if (strcasestr(&vocab[c * max_w], &vocab[chosen[j] * max_w]) ||
1178 strcasestr(&vocab[chosen[j] * max_w], &vocab[c * max_w])) {
1179 printf("filtering %s %s\n", &vocab[chosen[j] * max_w], &vocab[c * max_w]);
Marc Kupietzd91212f2017-11-13 10:05:09 +01001180 filtered = 1;
1181 }
1182 if(filtered)
1183 continue;
1184 }
Marc Kupietz3082fd02019-01-09 14:54:06 +01001185
1186
1187 if(0 && merge_words > 0) {
Marc Kupietza5f60042017-05-04 10:38:12 +02001188 if(c >= merge_words) {
1189 if(l1_words > N / 2)
1190 continue;
1191 else
1192 l1_words++;
1193 } else {
1194 if(l2_words > N / 2)
1195 continue;
1196 else
1197 l2_words++;
1198 }
1199 }
Marc Kupietz3082fd02019-01-09 14:54:06 +01001200
1201// printf("%s l1:%d l2:%d i:%d a:%ld\n", &vocab[c * max_w], l1_words, l2_words, i, a);
1202// fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001203 HV* hash = newHV();
Marc Kupietza5f60042017-05-04 10:38:12 +02001204 SV* word = newSVpvf(&vocab[c * max_w], 0);
Marc Kupietzd0d3e912017-12-01 22:09:43 +01001205 chosen[i] = c;
Marc Kupietz271e2a42016-03-22 11:37:43 +01001206 if(latin_enc == 0) SvUTF8_on(word);
Marc Kupietza5f60042017-05-04 10:38:12 +02001207 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001208 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001209 hv_store(hash, "dist", strlen("dist"), newSVnv(best[a].activation), 0);
1210 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001211 AV *vector = newAV();
1212 for (b = 0; b < size; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001213 av_push(vector, newSVnv(M[b + best[a].wordi * size]));
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001214 }
Marc Kupietz271e2a42016-03-22 11:37:43 +01001215 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
1216 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietza5f60042017-05-04 10:38:12 +02001217 i++;
Marc Kupietz271e2a42016-03-22 11:37:43 +01001218 }
1219 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz7631e022019-01-25 12:04:42 +01001220
Marc Kupietz50485ba2016-03-23 09:13:14 +01001221 for(b=0; b < MAX_NEIGHBOURS; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001222 best[b].wordi = -1L;
1223 best[b].activation = 0;
1224 best[b].probability = 0;
1225 best[b].position = 0;
1226 best[b].activation_sum = 0;
Marc Kupietz7631e022019-01-25 12:04:42 +01001227 memset(best[b].heat, 0, sizeof(float)*16);
Marc Kupietz50485ba2016-03-23 09:13:14 +01001228 }
1229
Marc Kupietza77acce2017-11-30 16:59:07 +01001230 float total_activation = 0;
1231
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001232 if (M2) {
1233 printf("Waiting for syn threads to join\n");
1234 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001235 for (a = 0; a < syn_threads; a++) pthread_join(pt[a+para_threads], (void *) &syn_nbs[a]);
Marc Kupietza77acce2017-11-30 16:59:07 +01001236 for (a = 0; a <= syn_threads; a++) {
Marc Kupietz63872182018-03-12 09:44:49 +01001237 if(a == window) continue;
Marc Kupietza77acce2017-11-30 16:59:07 +01001238 total_activation += window_sums[a];
1239 printf("window pos: %d, sum: %f\n", a, window_sums[a]);
1240 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001241 printf("syn threads joint\n");
1242 fflush(stdout);
Marc Kupietz50485ba2016-03-23 09:13:14 +01001243
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001244 for(b=0; b < syn_nbs[0]->length; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001245 memcpy(best + b, &syn_nbs[0]->best[b], sizeof(collocator));
1246 best[b].position = -1; // syn_nbs[0]->pos[b];
1247 best[b].activation_sum = target_sums[syn_nbs[0]->best[b].wordi];
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001248 best[b].max_activation = 0.0;
Marc Kupietz4116b432017-12-06 14:15:32 +01001249 best[b].average = 0.0;
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001250 best[b].probability = 0.0;
Marc Kupietza77acce2017-11-30 16:59:07 +01001251 best[b].cprobability = syn_nbs[0]->best[b].cprobability;
Marc Kupietz7631e022019-01-25 12:04:42 +01001252 memset(best[b].heat, 0, sizeof(float)*16);
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001253 }
Marc Kupietz30ca4342017-11-22 21:21:20 +01001254
1255 float best_window_sum[MAX_NEIGHBOURS];
1256 int found_index=0, i=0, j, w;
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001257 for(a=0; a < syn_threads; a++) {
1258 for(b=0; b < syn_nbs[a]->length; b++) {
1259 for(i=0; i < found_index; i++)
1260 if(best[i].wordi == syn_nbs[a]->best[b].wordi)
1261 break;
1262 if(i >= found_index) {
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001263 best[found_index].max_activation = 0.0;
Marc Kupietz4116b432017-12-06 14:15:32 +01001264 best[found_index].average = 0.0;
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001265 best[found_index].probability = 0.0;
Marc Kupietz7631e022019-01-25 12:04:42 +01001266 memset(best[found_index].heat, 0, sizeof(float)*16);
Marc Kupietza77acce2017-11-30 16:59:07 +01001267 best[found_index].cprobability = syn_nbs[a]->best[b].cprobability;
1268 best[found_index].activation_sum = target_sums[syn_nbs[a]->best[b].wordi]; // syn_nbs[a]->best[b].activation_sum;
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001269 best[found_index++].wordi = syn_nbs[a]->best[b].wordi;
1270 // printf("found: %s\n", &vocab[syn_nbs[a]->index[b] * max_w]);
Marc Kupietz30ca4342017-11-22 21:21:20 +01001271 }
1272 }
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001273 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001274 sort_by =0; // ALWAYS AUTO-FOCUS
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001275 if(sort_by != 1 && sort_by != 2) { // sort by auto focus mean
Marc Kupietz30ca4342017-11-22 21:21:20 +01001276 printf("window: %d - syn_threads: %d, %d\n", window, syn_threads, (1 << syn_threads) -1);
Marc Kupietzbd41da32017-11-24 10:26:43 +01001277 int wpos;
Marc Kupietz4116b432017-12-06 14:15:32 +01001278 int bits_set = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +01001279 for(i=0; i < found_index; i++) {
Marc Kupietz4116b432017-12-06 14:15:32 +01001280 best[i].activation = best[i].probability = best[i].average = best[i].cprobability_sum = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +01001281 for(w=1; w < (1 << syn_threads); w++) { // loop through all possible windows
Marc Kupietz4116b432017-12-06 14:15:32 +01001282 float word_window_sum = 0, word_window_average=0, word_cprobability_sum=0, word_activation_sum = 0, total_window_sum = 0;
1283 bits_set = 0;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001284 for(a=0; a < syn_threads; a++) {
Marc Kupietz30ca4342017-11-22 21:21:20 +01001285 if((1 << a) & w) {
Marc Kupietzbd41da32017-11-24 10:26:43 +01001286 wpos = (a >= window? a+1 : a);
1287 total_window_sum += window_sums[wpos];
Marc Kupietz30ca4342017-11-22 21:21:20 +01001288 }
1289 }
Marc Kupietzbd41da32017-11-24 10:26:43 +01001290// printf("%d window-sum %f\n", w, total_window_sum);
1291 for(a=0; a < syn_threads; a++) {
1292 if((1 << a) & w) {
1293 wpos = (a >= window? a+1 : a);
1294 bits_set++;
1295 for(b=0; b < syn_nbs[a]->length; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001296 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
Marc Kupietza77acce2017-11-30 16:59:07 +01001297// float acti = syn_nbs[a]->best[b].activation / total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001298// word_window_sum += syn_nbs[a]->dist[b] * syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
Marc Kupietzbd41da32017-11-24 10:26:43 +01001299// word_window_sum += syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1300// word_window_sum = (word_window_sum + syn_nbs[a]->norm[b]) - (word_window_sum * syn_nbs[a]->norm[b]); // syn_nbs[a]->norm[b];
Marc Kupietza77acce2017-11-30 16:59:07 +01001301
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001302 word_window_sum += syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
Marc Kupietza77acce2017-11-30 16:59:07 +01001303// word_window_sum += acti - (word_window_sum * acti); syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1304
Marc Kupietz4116b432017-12-06 14:15:32 +01001305 word_window_average += syn_nbs[a]->best[b].activation; // - word_window_average * syn_nbs[a]->best[b].activation; // conormalied activation sum
1306 word_cprobability_sum += syn_nbs[a]->best[b].cprobability - word_cprobability_sum * syn_nbs[a]->best[b].cprobability; // conormalied column probability sum
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001307 word_activation_sum += syn_nbs[a]->best[b].activation;
1308 if(syn_nbs[a]->best[b].activation > best[i].max_activation)
1309 best[i].max_activation = syn_nbs[a]->best[b].activation;
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +01001310 if(syn_nbs[a]->best[b].activation > best[i].heat[wpos] )
Marc Kupietz728b8ed2017-12-02 11:13:49 +01001311 best[i].heat[wpos] = syn_nbs[a]->best[b].activation;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001312 }
1313 }
1314 }
Marc Kupietz4116b432017-12-06 14:15:32 +01001315 if(bits_set) {
1316 word_window_average /= bits_set;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001317// word_activation_sum /= bits_set;
1318// word_window_sum /= bits_set;
Marc Kupietz4116b432017-12-06 14:15:32 +01001319 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001320
1321 word_window_sum /= total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001322
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001323 if(word_window_sum > best[i].probability) {
Marc Kupietz4116b432017-12-06 14:15:32 +01001324// best[i].position = w;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001325 best[i].probability = word_window_sum;
Marc Kupietz30ca4342017-11-22 21:21:20 +01001326 }
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001327
Marc Kupietz4116b432017-12-06 14:15:32 +01001328 if(word_cprobability_sum > best[i].cprobability_sum) {
1329 best[i].position = w;
1330 best[i].cprobability_sum = word_cprobability_sum;
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001331 }
Marc Kupietz4116b432017-12-06 14:15:32 +01001332
1333 best[i].average = word_window_average;
1334// best[i].activation = word_activation_sum;
1335 }
Marc Kupietz30ca4342017-11-22 21:21:20 +01001336 }
Marc Kupietze0e42132017-11-24 16:44:34 +01001337 qsort(best, found_index, sizeof(collocator), cmp_probability);
Marc Kupietz30ca4342017-11-22 21:21:20 +01001338// for(i=0; i < found_index; i++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001339// printf("found: %s - sum: %f - window: %d\n", &vocab[best[i].wordi * max_w], best[i].activation, best[i].position);
Marc Kupietz30ca4342017-11-22 21:21:20 +01001340// }
1341
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001342 } else if(sort_by == 1) { // responsiveness any window position
1343 int wpos;
1344 for(i=0; i < found_index; i++) {
1345 float word_window_sum = 0, word_activation_sum = 0, total_window_sum = 0;
1346 for(a=0; a < syn_threads; a++) {
1347 wpos = (a >= window? a+1 : a);
1348 for(b=0; b < syn_nbs[a]->length; b++)
1349 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
1350 best[i].probability += syn_nbs[a]->best[b].probability;
1351 if(syn_nbs[a]->best[b].activation > 0.25)
1352 best[i].position |= 1 << wpos;
1353 if(syn_nbs[a]->best[b].activation > best[i].activation) {
1354 best[i].activation = syn_nbs[a]->best[b].activation;
1355 }
1356 }
1357 }
1358 }
1359 qsort(best, found_index, sizeof(collocator), cmp_activation);
1360 } else if(sort_by == 2) { // single window position
Marc Kupietz30ca4342017-11-22 21:21:20 +01001361 for(a=1; a < syn_threads; a++) {
1362 for(b=0; b < syn_nbs[a]->length; b++) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001363 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001364 if(syn_nbs[a]->best[b].activation > best[c].activation) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001365 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001366 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001367 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001368 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
1369 best[c].position = 1 << (-syn_nbs[a]->best[b].position+window - (syn_nbs[a]->best[b].position < 0 ? 1:0));
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001370 break;
Marc Kupietz6d9a6782016-03-23 17:25:25 +01001371 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001372 }
1373 }
1374 }
1375 } else { // sort by mean p
1376 for(a=1; a < syn_threads; a++) {
1377 for(b=0; b < syn_nbs[a]->length; b++) {
1378 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001379 if(target_sums[syn_nbs[a]->best[b].wordi] > best[c].activation_sum) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001380 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001381 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001382 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001383 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
1384 best[c].position = (1 << 2*window) - 1; // syn_nbs[a]->pos[b];
1385 best[c].activation_sum = target_sums[syn_nbs[a]->best[b].wordi];
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001386 break;
1387 }
Marc Kupietz271e2a42016-03-22 11:37:43 +01001388 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +01001389 }
1390 }
1391 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001392 array = newAV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001393 for (a = 0, i=0; a < MAX_NEIGHBOURS && best[a].wordi >= 0; a++) {
1394 long long c = best[a].wordi;
Marc Kupietza77acce2017-11-30 16:59:07 +01001395/*
Marc Kupietzd91212f2017-11-13 10:05:09 +01001396 if (dedupe) {
1397 int filtered=0;
1398 for (j=0; j<i; j++)
1399 if (strcasestr(&vocab[c * max_w], chosen[j]) ||
1400 strcasestr(chosen[j], &vocab[c * max_w])) {
Marc Kupietza77acce2017-11-30 16:59:07 +01001401 printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]);
1402 filtered = 1;
1403 }
Marc Kupietzd91212f2017-11-13 10:05:09 +01001404 if(filtered)
1405 continue;
1406 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001407*/
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001408 chosen[i++]=c;
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001409 HV* hash = newHV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001410 SV* word = newSVpvf(&vocab[best[a].wordi * max_w], 0);
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001411 AV* heat = newAV();
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001412 if(latin_enc == 0) SvUTF8_on(word);
1413 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001414 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietz4116b432017-12-06 14:15:32 +01001415 hv_store(hash, "average", strlen("average"), newSVnv(best[a].average), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001416 hv_store(hash, "prob", strlen("prob"), newSVnv(best[a].probability), 0);
Marc Kupietz4116b432017-12-06 14:15:32 +01001417 hv_store(hash, "cprob", strlen("cprob"), newSVnv(best[a].cprobability_sum), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001418 hv_store(hash, "max", strlen("max"), newSVnv(best[a].max_activation), 0); // newSVnv(target_sums[best[a].wordi]), 0);
Marc Kupietza77acce2017-11-30 16:59:07 +01001419 hv_store(hash, "overall", strlen("overall"), newSVnv(best[a].activation_sum/total_activation), 0); // newSVnv(target_sums[best[a].wordi]), 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001420 hv_store(hash, "pos", strlen("pos"), newSVnv(best[a].position), 0);
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001421 best[a].heat[5]=0;
1422 for(i=10; i >= 0; i--) av_push(heat, newSVnv(best[a].heat[i]));
1423 hv_store(hash, "heat", strlen("heat"), newRV_noinc((SV*)heat), 0);
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001424 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietz271e2a42016-03-22 11:37:43 +01001425 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001426 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001427 }
Marc Kupietz000ad862016-02-26 14:59:12 +01001428end:
Marc Kupietz257a93d2019-01-03 17:55:22 +01001429 // words = old_words; // why was this here?
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001430 free(best);
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001431 return newRV_noinc((SV*)result);
Marc Kupietz000ad862016-02-26 14:59:12 +01001432}
Marc Kupietz7bc85fd2016-02-24 11:42:41 +01001433
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001434int dump_vecs(char *fname) {
1435 long i, j;
1436 FILE *f;
Marc Kupietz56844a22019-08-02 15:12:19 +02001437/* if(words>100000)
Marc Kupietz0a68a792018-12-20 11:41:45 +01001438 words=100000;
Marc Kupietz56844a22019-08-02 15:12:19 +02001439*/
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001440 if((f=fopen(fname, "w")) == NULL) {
1441 fprintf(stderr, "cannot open %s for writing\n", fname);
1442 return(-1);
1443 }
1444 fprintf(f, "%lld %lld\n", words, size);
1445 for (i=0; i < words; i++) {
1446 fprintf(f, "%s ", &vocab[i * max_w]);
1447 for(j=0; j < size - 1; j++)
1448 fprintf(f, "%f ", M[i*size + j]);
1449 fprintf(f, "%f\n", M[i*size + j]);
1450 }
1451 fclose(f);
1452 return(0);
1453}
Marc Kupietzdc22b982015-10-09 09:19:34 +02001454
Marc Kupietzfa194262018-06-05 09:39:32 +02001455int dump_for_numpy(char *fname) {
1456 long i, j;
1457 FILE *f;
Marc Kupietz56844a22019-08-02 15:12:19 +02001458 int max = 300000;
Marc Kupietzfa194262018-06-05 09:39:32 +02001459
1460 if((f=fopen(fname, "w")) == NULL) {
1461 fprintf(stderr, "cannot open %s for writing\n", fname);
1462 return(-1);
1463 }
Marc Kupietz1233eda2019-03-06 14:16:43 +01001464 for (i=0; i < max; i++) {
Marc Kupietzfa194262018-06-05 09:39:32 +02001465 for(j=0; j < size - 1; j++)
1466 fprintf(f, "%f\t", M[i*size + j]);
1467 fprintf(f, "%f\n", M[i*size + j]);
Marc Kupietz56844a22019-08-02 15:12:19 +02001468 printf("%s\r\n", &vocab[i * max_w]);
1469 }
1470 if(merged_end > 0) {
1471 for (i=0; i < max; i++) {
Marc Kupietz1233eda2019-03-06 14:16:43 +01001472 for(j=0; j < size - 1; j++)
1473 fprintf(f, "%f\t", M[(merged_end + i)*size + j]);
1474 fprintf(f, "%f\n", M[(merged_end + i)*size + j]);
Marc Kupietz56844a22019-08-02 15:12:19 +02001475 printf("_%s\r\n", &vocab[i * max_w]);
Marc Kupietz1233eda2019-03-06 14:16:43 +01001476 }
Marc Kupietzfa194262018-06-05 09:39:32 +02001477 }
1478 fclose(f);
Marc Kupietz7631e022019-01-25 12:04:42 +01001479 return(0);
Marc Kupietzfa194262018-06-05 09:39:32 +02001480}