blob: 8bf0f14862e621d722263dc0408e81152f230d9a [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
123 open PIPE, "GET http://compute:5673/getClassicCollocators?w=$word |" ;
124 }
Marc Kupietz19c68242018-03-12 09:42:21 +0100125 if(!$cccache{$word}) {
Marc Kupietz06d61292019-02-04 12:33:22 +0100126 $c->app->log->info("Getting classic collocates of $word.");
Marc Kupietz19c68242018-03-12 09:42:21 +0100127 $cccache{$word} = getClassicCollocators($word);
Marc Kupietz1d96a082019-02-18 09:29:06 +0100128 $cccache{$word} =~ s/:(-?)(nan|inf)/:"${1}${2}"/g;
Marc Kupietz19c68242018-03-12 09:42:21 +0100129 } else {
Marc Kupietz06d61292019-02-04 12:33:22 +0100130 $c->app->log->info("Getting classic collocates for $word from cache.");
Marc Kupietz19c68242018-03-12 09:42:21 +0100131 }
Marc Kupietz81aeed22019-02-17 21:22:45 +0100132 if($opt_p >= 5000 && $opt_p < 5600) { # German non-reference
Marc Kupietz999ab8c2019-02-17 21:42:21 +0100133 while(<PIPE>) {
134 $s2 .= $_;
135 }
136 close(PIPE);
Marc Kupietz81aeed22019-02-17 21:22:45 +0100137 }
Marc Kupietz999ab8c2019-02-17 21:42:21 +0100138
Marc Kupietz81aeed22019-02-17 21:22:45 +0100139 if(length($s2) > 2000) {
140 my $d1 = decode_json($cccache{$word});
141 my $d2 = decode_json($s2);
142 my %d2ld;
143 foreach my $i (@{$d2->{collocates}}) {
144 $d2ld{$i->{word}}=$i->{ld};
145 }
146 foreach my $i (@{$d1->{collocates}}) {
147 my $w = $i->{word};
Marc Kupietz1d96a082019-02-18 09:29:06 +0100148 $i->{delta} = $i->{ld} - (defined $d2ld{$w} ? $d2ld{$w} : 0);
Marc Kupietz81aeed22019-02-17 21:22:45 +0100149 }
150 return(encode_json($d1));
151 } else {
152 my $d1 = decode_json($cccache{$word});
153 foreach my $i (@{$d1->{collocates}}) {
154 $i->{delta} = 0;
155 }
156 return(encode_json($d1));
157 }
Marc Kupietz19c68242018-03-12 09:42:21 +0100158}
159
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100160sub getSimilarProfilesCached {
161 my ($c, $word) = @_;
162 if(!$spcache{$word}) {
163 $spcache{$word} = getSimilarProfiles($word);
164 } else {
165 $c->app->log->info("Getting similar profiles for $word from cache:");
166 print $spcache{$word};
167 }
168 return $spcache{$word};
169}
170
Marc Kupietz66bfd952017-12-11 09:59:45 +0100171post '/derekovecs/getVecsByRanks' => sub {
172 my $self = shift;
173 my $vec = getVecs($self->req->json);
174 $self->render(json => $vec);
175};
176
Marc Kupietze13a3552018-01-25 08:48:34 +0100177any '*/getClassicCollocators' => sub {
Marc Kupietze243efd2018-01-11 22:19:24 +0100178 my $self = shift;
Marc Kupietz19c68242018-03-12 09:42:21 +0100179 $self->render(data => getClassicCollocatorsCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
Marc Kupietze243efd2018-01-11 22:19:24 +0100180};
181
Marc Kupietze13a3552018-01-25 08:48:34 +0100182any '/getClassicCollocators' => sub {
Marc Kupietze243efd2018-01-11 22:19:24 +0100183 my $self = shift;
Marc Kupietz19c68242018-03-12 09:42:21 +0100184 $self->render(data => getClassicCollocatorsCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
Marc Kupietze243efd2018-01-11 22:19:24 +0100185};
186
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100187any '*/getSimilarProfiles' => sub {
188 my $self = shift;
189 $self->render(data => getSimilarProfilesCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
190};
191
Marc Kupietzc987fa82018-03-21 12:14:25 +0100192any '/getSimilarProfiles' => sub {
193 my $self = shift;
194 $self->render(data => getSimilarProfilesCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
195};
196
Marc Kupietzdf3d4b52017-11-29 16:57:27 +0100197get '*/img/*' => sub {
198 my $c = shift;
199 my $url = $c->req->url;
200 $url =~ s@/derekovecs@@g;
201 $c->app->log->info("GET: " . $url);
202 $c->reply->static($url);
203};
204
Marc Kupietzdc22b982015-10-09 09:19:34 +0200205get '/' => sub {
206 my $c = shift;
Marc Kupietza5f60042017-05-04 10:38:12 +0200207 $c->app->log->info("get: ".$c->req->url->to_abs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200208 my $word=$c->param('word');
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100209 my $no_nbs=$c->param('n') || 100;
210 my $no_iterations=$c->param('N') || 2000;
Marc Kupietzd4227392016-03-01 16:45:12 +0100211 my $perplexity=$c->param('perplexity') || 20;
Marc Kupietzc4d62f82016-03-01 11:04:24 +0100212 my $epsilon=$c->param('epsilon') || 5;
Marc Kupietzd7aea722016-03-02 11:59:12 +0100213 my $som=$c->param('som') || 0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200214 my $searchBaseVocabFirst=$c->param('sbf') || 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100215 my $sort=$c->param('sort') || 0;
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100216 my $csv=$c->param('csv') || 0;
Marc Kupietzb613b052016-04-28 14:11:59 +0200217 my $json=$c->param('json') || 0;
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +0100218 my $cutoff=$c->param('cutoff') || 500000;
Marc Kupietzd91212f2017-11-13 10:05:09 +0100219 my $dedupe=$c->param('dedupe') || 0;
Marc Kupietzac707b32018-12-20 11:36:38 +0100220 my $nosp=$c->param('nosp') || 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100221 my $res;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100222 my @lists;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100223 my @collocations;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100224 if(defined($word) && $word !~ /^\s*$/) {
225 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100226 $word =~ s/\s+/ /g;
Marc Kupietz3082fd02019-01-09 14:54:06 +0100227 if($opt_m && $word !~ /\|/) {
228 $word .= "|$word";
229 }
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100230 for my $w (split(' *\| *', $word)) {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100231 if($opt_m) {
232 if($searchBaseVocabFirst) {
233 $searchBaseVocabFirst=0;
234 } else {
235 $searchBaseVocabFirst=1;
236 }
237 }
238 if ($cache{$w.$cutoff.$no_nbs.$sort.$dedupe,$searchBaseVocabFirst}) {
Marc Kupietz15987412017-11-07 15:56:58 +0100239 $c->app->log->info("Getting $w results from cache");
Marc Kupietz3082fd02019-01-09 14:54:06 +0100240 $res = $cache{$w.$cutoff.$no_nbs.$sort.$dedupe.$searchBaseVocabFirst}
Marc Kupietza5b90152016-03-15 17:39:19 +0100241 } else {
Marc Kupietz15987412017-11-07 15:56:58 +0100242 $c->app->log->info('Looking for neighbours of '.$w);
243 if($opt_i) {
Marc Kupietzac707b32018-12-20 11:36:38 +0100244 $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp);
Marc Kupietz15987412017-11-07 15:56:58 +0100245 } else {
Marc Kupietzac707b32018-12-20 11:36:38 +0100246 $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp);
Marc Kupietz15987412017-11-07 15:56:58 +0100247 }
Marc Kupietz2dd2dd72017-12-01 22:08:14 +0100248 $cache{$w.$cutoff.$no_nbs.$sort.$dedupe} = $res;
Marc Kupietza5b90152016-03-15 17:39:19 +0100249 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100250 push(@lists, $res->{paradigmatic});
Marc Kupietz15987412017-11-07 15:56:58 +0100251 }
252 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100253 $word =~ s/ *\| */ | /g;
Marc Kupietzb613b052016-04-28 14:11:59 +0200254 if($json) {
255 return $c->render(json => {word => $word, list => \@lists, collocators=>$res->{syntagmatic}});
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100256 } elsif($csv) {
257 my $csv_data="";
258 for (my $i=0; $i <= $no_nbs; $i++) {
259 $csv_data .= $res->{paradigmatic}->[$i]->{word} . ", ";
260 }
261 for (my $i=0; $i < $no_nbs; $i++) {
262 $csv_data .= $res->{syntagmatic}->[$i]->{word} . ", ";
263 }
264 chop $csv_data;
265 chop $csv_data;
266 $csv_data .= "\n";
267 return $c->render(text=>$csv_data);
Marc Kupietzb613b052016-04-28 14:11:59 +0200268 } else {
Marc Kupietzc053d972019-01-10 10:41:51 +0100269 $c->render(template=>"index", title=>$title, word=>$word, 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 +0200270 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200271};
272
Marc Kupietz30ca4342017-11-22 21:21:20 +0100273helper(bitvec2window => sub {
274 my ($self, $n) = @_;
275 my $str = unpack("B32", pack("N", $n));
276 $str =~ s/^\d{22}//;
277 $str =~ s/^(\d{5})/$1x/;
278 $str =~ s/0/·/g;
279 $str =~ s/1/+/g;
280 return $str;
281 });
282
Marc Kupietza5b90152016-03-15 17:39:19 +0100283$daemon->run; # app->start;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200284
285exit;
286
287__END__
288
289__C__
290#include <stdio.h>
291#include <string.h>
292#include <math.h>
293#include <malloc.h>
294#include <stdlib.h> //strlen
Marc Kupietzf0809762016-02-26 10:13:47 +0100295#include <sys/mman.h>
Marc Kupietz000ad862016-02-26 14:59:12 +0100296#include <pthread.h>
Marc Kupietze243efd2018-01-11 22:19:24 +0100297#include <collocatordb.h>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200298
299#define max_size 2000
300#define max_w 50
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100301#define MAX_NEIGHBOURS 1000
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100302#define MAX_WORDS -1
Marc Kupietz000ad862016-02-26 14:59:12 +0100303#define MAX_THREADS 100
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100304#define MAX_CC 50
305#define EXP_TABLE_SIZE 1000
306#define MAX_EXP 6
Marc Kupietz271e2a42016-03-22 11:37:43 +0100307#define MIN_RESP 0.50
Marc Kupietzdc22b982015-10-09 09:19:34 +0200308
309//the thread function
310void *connection_handler(void *);
Marc Kupietz000ad862016-02-26 14:59:12 +0100311
312typedef struct {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100313 long long wordi;
314 long position;
315 float activation;
Marc Kupietz4116b432017-12-06 14:15:32 +0100316 float average;
Marc Kupietza77acce2017-11-30 16:59:07 +0100317 float cprobability; // column wise probability
Marc Kupietz4116b432017-12-06 14:15:32 +0100318 float cprobability_sum;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100319 float probability;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100320 float activation_sum;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100321 float max_activation;
Marc Kupietz4116b432017-12-06 14:15:32 +0100322 float heat[16];
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100323} collocator;
324
325typedef struct {
326 collocator *best;
Marc Kupietz80abb442016-03-23 21:04:08 +0100327 int length;
Marc Kupietz000ad862016-02-26 14:59:12 +0100328} knn;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100329
Marc Kupietz000ad862016-02-26 14:59:12 +0100330typedef struct {
Marc Kupietz48c29682016-03-19 11:30:43 +0100331 long long wordi[MAX_NEIGHBOURS];
332 char sep[MAX_NEIGHBOURS];
333 int length;
334} wordlist;
335
336typedef struct {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100337 long cutoff;
Marc Kupietz48c29682016-03-19 11:30:43 +0100338 wordlist *wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100339 char *token;
340 int N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100341 long from;
Marc Kupietz000ad862016-02-26 14:59:12 +0100342 unsigned long upto;
Marc Kupietzc55c8872017-12-01 23:27:10 +0100343 collocator *best;
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100344 float *target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100345 float *window_sums;
Marc Kupietz000ad862016-02-26 14:59:12 +0100346} knnpars;
347
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100348typedef struct {
349 uint32_t index;
350 float value;
351} sparse_t;
352
353typedef struct {
354 uint32_t len;
355 sparse_t nbr[100];
356} profile_t;
357
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200358float *M, *M2=0L, *syn1neg_window, *expTable;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100359float *window_sums;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200360char *vocab;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200361char *garbage = NULL;
Marc Kupietze243efd2018-01-11 22:19:24 +0100362COLLOCATORDB *cdb = NULL;
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100363profile_t *sprofiles = NULL;
364size_t sprofiles_qty = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100365
Marc Kupietza2e64502016-04-27 09:53:51 +0200366long long words, size, merged_end;
Marc Kupietza5f60042017-05-04 10:38:12 +0200367long long merge_words = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100368int num_threads=20;
Marc Kupietza5b90152016-03-15 17:39:19 +0100369int latin_enc=0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100370int window;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200371
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100372/* load collocation profiles if file exists */
373int load_sprofiles(char *vecsname) {
374 char *basename = strdup(vecsname);
375 char *pos = strstr(basename, ".vecs");
376 if(pos)
377 *pos=0;
378
379 char binsprofiles_fname[256];
380 strcpy(binsprofiles_fname, basename);
381 strcat(binsprofiles_fname, ".sprofiles.bin");
382 FILE *fp = fopen(binsprofiles_fname, "rb");
383 if (fp == NULL) {
384 printf("Collocation profiles %s not found. No problem.\n", binsprofiles_fname);
385 return 0;
386 }
387 fseek(fp, 0L, SEEK_END);
388 size_t sz = ftell(fp);
389 fclose(fp);
390
391 int fd = open(binsprofiles_fname, O_RDONLY);
392 sprofiles = mmap(0, sz, PROT_READ, MAP_SHARED, fd, 0);
393 if (sprofiles == MAP_FAILED) {
394 close(fd);
395 fprintf(stderr, "Cannot mmap %s\n", binsprofiles_fname);
396 sprofiles = NULL;
397 return 0;
398 } else {
399 sprofiles_qty = sz / sizeof(profile_t);
400 fprintf(stderr, "Successfully mmaped %s containing similar profiles for %ld word forms.\n", binsprofiles_fname, sprofiles_qty);
401 }
402 return 1;
403}
404
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100405int init_net(char *file_name, char *net_name, int latin) {
Marc Kupietz67c20282016-02-26 09:42:00 +0100406 FILE *f, *binvecs, *binwords;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100407 int binwords_fd, binvecs_fd, net_fd, i;
Marc Kupietz82b02672016-02-26 12:32:25 +0100408 long long a, b, c, d, cn;
409 float len;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200410 double val;
Marc Kupietz82b02672016-02-26 12:32:25 +0100411
Marc Kupietz67c20282016-02-26 09:42:00 +0100412 char binvecs_fname[256], binwords_fname[256];
413 strcpy(binwords_fname, file_name);
414 strcat(binwords_fname, ".words");
415 strcpy(binvecs_fname, file_name);
416 strcat(binvecs_fname, ".vecs");
Marc Kupietzdc22b982015-10-09 09:19:34 +0200417
Marc Kupietza5b90152016-03-15 17:39:19 +0100418 latin_enc = latin;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200419 f = fopen(file_name, "rb");
420 if (f == NULL) {
421 printf("Input file %s not found\n", file_name);
422 return -1;
423 }
424 fscanf(f, "%lld", &words);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100425 if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200426 fscanf(f, "%lld", &size);
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100427 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) {
428 printf("Converting %s to memory mappable structures\n", file_name);
Marc Kupietzf0809762016-02-26 10:13:47 +0100429 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
430 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
431 if (M == NULL) {
432 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
433 return -1;
434 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200435 if(strstr(file_name, ".txt")) {
436 for (b = 0; b < words; b++) {
437 a = 0;
438 while (1) {
439 vocab[b * max_w + a] = fgetc(f);
440 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
441 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
442 }
443 vocab[b * max_w + a] = 0;
444 len = 0;
445 for (a = 0; a < size; a++) {
446 fscanf(f, "%lf", &val);
447 M[a + b * size] = val;
448 len += val * val;
449 }
450 len = sqrt(len);
451 for (a = 0; a < size; a++) M[a + b * size] /= len;
452 }
453 } else {
454 for (b = 0; b < words; b++) {
455 a = 0;
456 while (1) {
457 vocab[b * max_w + a] = fgetc(f);
458 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
459 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
460 }
461 vocab[b * max_w + a] = 0;
462 fread(&M[b * size], sizeof(float), size, f);
463 len = 0;
464 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
465 len = sqrt(len);
466 for (a = 0; a < size; a++) M[a + b * size] /= len;
467 }
468 }
Marc Kupietz67c20282016-02-26 09:42:00 +0100469 if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) {
470 fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs);
471 fclose(binvecs);
472 fwrite(vocab, sizeof(char), (long long)words * max_w, binwords);
473 fclose(binwords);
474 }
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100475 }
476 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
477 M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0);
478 vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0);
479 if (M == MAP_FAILED || vocab == MAP_FAILED) {
480 close(binvecs_fd);
481 close(binwords_fd);
482 fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname);
483 exit(-1);
484 }
485 } else {
486 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
487 exit(-1);
Marc Kupietz67c20282016-02-26 09:42:00 +0100488 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200489 fclose(f);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100490
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200491 if(net_name && strlen(net_name) > 0) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100492 if( (net_fd = open(net_name, O_RDONLY)) >= 0) {
493 window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2;
494 // lseek(net_fd, sizeof(float) * words * size, SEEK_SET);
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100495 // munmap(M, sizeof(float) * words * size);
496 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 +0200497 if (M2 == MAP_FAILED) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100498 close(net_fd);
499 fprintf(stderr, "Cannot mmap %s\n", net_name);
500 exit(-1);
501 }
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100502 syn1neg_window = M2 + words * size;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100503 } else {
504 fprintf(stderr, "Cannot open %s\n", net_name);
505 exit(-1);
506 }
507 fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window);
Marc Kupietze243efd2018-01-11 22:19:24 +0100508
509 char collocatordb_name[2048];
510 strcpy(collocatordb_name, net_name);
511 char *ext = rindex(collocatordb_name, '.');
512 if(ext) {
513 strcpy(ext, ".rocksdb");
514 if(access(collocatordb_name, R_OK) == 0) {
515 *ext = 0;
516 fprintf(stderr, "Opening collocator DB %s\n", collocatordb_name);
517 cdb = open_collocatordb(collocatordb_name);
518 }
519 }
520 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100521
522 expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float));
523 for (i = 0; i < EXP_TABLE_SIZE; i++) {
524 expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table
525 expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1)
526 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100527 window_sums = malloc(sizeof(float) * (window+1) * 2);
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100528
529 return 0;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200530}
531
Marc Kupietza2e64502016-04-27 09:53:51 +0200532long mergeVectors(char *file_name){
533 FILE *f, *binvecs, *binwords;
534 int binwords_fd, binvecs_fd, net_fd, i;
535 long long a, b, c, d, cn;
536 float len;
537 float *merge_vecs;
538 char *merge_vocab;
Marc Kupietza5f60042017-05-04 10:38:12 +0200539 /* long long merge_words, merge_size; */
540 long long merge_size;
Marc Kupietza2e64502016-04-27 09:53:51 +0200541
542 char binvecs_fname[256], binwords_fname[256];
543 strcpy(binwords_fname, file_name);
544 strcat(binwords_fname, ".words");
545 strcpy(binvecs_fname, file_name);
546 strcat(binvecs_fname, ".vecs");
547
548 f = fopen(file_name, "rb");
549 if (f == NULL) {
550 printf("Input file %s not found\n", file_name);
551 exit -1;
552 }
553 fscanf(f, "%lld", &merge_words);
554 fscanf(f, "%lld", &merge_size);
555 if(merge_size != size){
556 fprintf(stderr, "vectors must have the same length\n");
557 exit(-1);
558 }
559 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
560 merge_vecs = malloc(sizeof(float) * (words + merge_words) * size);
561 merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w);
562 if (merge_vecs == NULL || merge_vocab == NULL) {
563 close(binvecs_fd);
564 close(binwords_fd);
565 fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname);
566 exit(-1);
567 }
568 read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float));
569 read(binwords_fd, merge_vocab, merge_words * max_w);
570 } else {
571 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
572 exit(-1);
573 }
574 printf("Successfully reallocated memory\nMerging...\n");
575 fflush(stdout);
576 memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float));
577 memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w);
578 munmap(M, words * size * sizeof(float));
579 munmap(vocab, words * max_w);
580 M = merge_vecs;
581 vocab = merge_vocab;
582 merged_end = merge_words;
583 words += merge_words;
584 fclose(f);
585 printf("merged_end: %lld, words: %lld\n", merged_end, words);
Marc Kupietzebc131e2019-01-03 16:24:27 +0100586 printBiggestMergedDifferences();
Marc Kupietza2e64502016-04-27 09:53:51 +0200587 return((long) merged_end);
588}
589
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200590void filter_garbage() {
591 long i;
Marc Kupietzab591a82016-04-28 14:08:49 +0200592 unsigned char *w, previous, c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200593 garbage = malloc(words);
594 memset(garbage, 0, words);
595 for (i = 0; i < words; i++) {
596 w = vocab + i * max_w;
597 previous = 0;
Marc Kupietz969adfa2018-03-12 09:43:53 +0100598 if(strncmp("quot", w, 4) == 0) {
599 garbage[i]=1;
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100600// printf("Gargabe: %s\n", vocab + i * max_w);
Marc Kupietz969adfa2018-03-12 09:43:53 +0100601 } else {
602 while((c = *w++) && !garbage[i]) {
603 if( ((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) ||
604 (previous == '-' && (c & 32)) ||
605 (previous == 0xc2 && (c == 0xa4 || c == 0xb6 )) ||
606 (previous == 'q' && c == 'u' && *(w) == 'o' && *(w+1) == 't') || /* quot */
607 c == '<'
608 ) {
609 garbage[i]=1;
610 continue;
611 }
612 previous = c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200613 }
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200614 }
615 }
616 return;
617}
618
Marc Kupietzac707b32018-12-20 11:36:38 +0100619
620knn *simpleGetCollocators(int word, int number, long cutoff, int *result) {
621 knnpars *pars = calloc(sizeof(knnpars), 1);
622 float *target_sums;
623 float *window_sums = malloc(sizeof(float) * (window+1) * 2);
624 pars->cutoff = (cutoff? cutoff : 300000);
625 long a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float));
626 for(a = 0; a < cutoff; a++)
627 target_sums[a] = 0;
628 pars->target_sums = target_sums;
629 pars->window_sums = window_sums;
630 pars->N = (number? number : 20);
631 pars->from = 0;
632 pars->upto = window * 2 -1;
Marc Kupietz7631e022019-01-25 12:04:42 +0100633 knn *syn_nbs = NULL; // = (knn*) getCollocators(pars);
Marc Kupietzac707b32018-12-20 11:36:38 +0100634 free(pars);
635 free(window_sums);
636 free(target_sums);
637 return syn_nbs;
638}
639
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100640void *getCollocators(void *args) {
641 knnpars *pars = args;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100642 int N = pars->N;
Marc Kupietz52702832019-01-15 17:55:52 +0100643
Marc Kupietz271e2a42016-03-22 11:37:43 +0100644 int cc = pars->wl->wordi[0];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100645 knn *nbs = NULL;
646 long window_layer_size = size * window * 2;
647 long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target;
648 float f, max_f, maxmax_f;
Marc Kupietz7631e022019-01-25 12:04:42 +0100649 float *target_sums=NULL, worstbest, wpos_sum;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100650 collocator *best;
Marc Kupietzd5642582016-03-19 22:23:13 +0100651
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200652 if(M2 == NULL || cc == -1)
Marc Kupietzd5642582016-03-19 22:23:13 +0100653 return NULL;
654
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100655 a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float));
Marc Kupietz7631e022019-01-25 12:04:42 +0100656 memset(target_sums, 0, pars->cutoff * sizeof(float));
657 best = malloc((N>200?N:200) * sizeof(collocator));
658 memset(best, 0, (N>200?N:200) * sizeof(collocator));
Marc Kupietz271e2a42016-03-22 11:37:43 +0100659 worstbest = MIN_RESP;
660
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100661 for (b = 0; b < pars->cutoff; b++)
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100662 target_sums[b]=0;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100663 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100664 best[b].wordi = -1;
665 best[b].probability = 1;
666 best[b].activation = worstbest;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100667 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100668
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100669 d = cc;
670 maxmax_f = -1;
671 maxmax_target = 0;
672
Marc Kupietz271e2a42016-03-22 11:37:43 +0100673 for (a = pars->from; a < pars->upto; a++) {
674 if(a >= window)
675 a++;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100676 wpos_sum = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100677 printf("window pos: %ld\n", a);
678 if (a != window) {
679 max_f = -1;
680 window_offset = a * size;
681 if (a > window)
682 window_offset -= size;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100683 for(target = 0; target < pars->cutoff; target ++) {
684 if(garbage && garbage[target]) continue;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100685 if(target == d)
686 continue;
687 f = 0;
688 for (c = 0; c < size; c++)
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100689 f += M2[d* size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100690 if (f < -MAX_EXP)
691 continue;
692 else if (f > MAX_EXP)
693 continue;
694 else
695 f = expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100696 wpos_sum += f;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100697
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100698 target_sums[target] += f;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100699 if(f > worstbest) {
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100700 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100701 if (f > best[b].activation) {
702 memmove(best + b + 1, best + b, (N - b -1) * sizeof(collocator));
703 best[b].activation = f;
704 best[b].wordi = target;
705 best[b].position = window-a;
Marc Kupietz33679a32016-03-22 08:49:39 +0100706 break;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100707 }
708 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100709 if(b == N - 1)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100710 worstbest = best[N-1].activation;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100711 }
712 }
713 printf("%d %.2f\n", max_target, max_f);
714 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
715 if(max_f > maxmax_f) {
716 maxmax_f = max_f;
717 maxmax_target = max_target;
718 }
Marc Kupietz33679a32016-03-22 08:49:39 +0100719 for (b = 0; b < N; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100720 if(best[b].position == window-a)
Marc Kupietza77acce2017-11-30 16:59:07 +0100721 best[b].cprobability = best[b].activation / wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100722 } else {
723 printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]);
724 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100725 pars->window_sums[a] = wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100726 }
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100727 for (b = 0; b < pars->cutoff; b++)
Marc Kupietza77acce2017-11-30 16:59:07 +0100728 pars->target_sums[b] += target_sums[b]; //(target_sums[b] / wpos_sum ) / (window * 2);
729 printf("Target-Summe von 0: %f\n", pars->target_sums[150298]);
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100730 free(target_sums);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100731 for(b=0; b<N && best[b].wordi >= 0; b++);; // THIS LOOP IS NEEDED (b...)
732// 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 +0100733// printf("\n");
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100734 nbs = malloc(sizeof(knn));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100735 nbs->best = best;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100736 nbs->length = b-1;
737 pthread_exit(nbs);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100738}
739
Marc Kupietz30ca4342017-11-22 21:21:20 +0100740
Marc Kupietz66bfd952017-12-11 09:59:45 +0100741AV *getVecs(AV *array) {
742 int i, b;
743 AV *result = newAV();
744 for (i=0; i<=av_len(array); i++) {
745 SV** elem = av_fetch(array, i, 0);
746 if (elem != NULL) {
747 long j = (long) SvNV(*elem);
748 AV *vector = newAV();
749 for (b = 0; b < size; b++) {
750 av_push(vector, newSVnv(M[b + j * size]));
751 }
752 av_push(result, newRV_noinc(vector));
753 }
754 }
755 return result;
756}
757
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100758char *getSimilarProfiles(long node) {
759 int i;
760 char buffer[120000];
761 char pair_buffer[2048];
762 buffer[0]='[';
763 buffer[1]=0;
764 if(node >= sprofiles_qty) {
765 printf("Not available in precomputed profile\n");
766 return(strdup("[{\"w\":\"not available\", \"v\":0}]\n"));
767 }
768
769 printf("******* %s ******\n", &vocab[max_w * node]);
770
771 for(i=0; i < 100 && i < sprofiles[node].len; i++) {
772 sprintf(pair_buffer, "{\"w\":\"%s\", \"v\":%f},", &vocab[max_w * (sprofiles[node].nbr[i].index)], sprofiles[node].nbr[i].value);
773 strcat(buffer, pair_buffer);
774 }
775 buffer[strlen(buffer)-1]=']';
776 strcat(buffer, "\n");
777 printf(buffer);
778 return(strdup(buffer));
779}
780
Marc Kupietze243efd2018-01-11 22:19:24 +0100781char *getClassicCollocators(long node) {
782 char *res = (cdb? strdup(get_collocators_as_json(cdb, node)) : "[]");
783 return res;
784}
785
Marc Kupietz0957d532019-01-03 17:54:00 +0100786wordlist *getTargetWords(char *st1, int search_backw) {
Marc Kupietz48c29682016-03-19 11:30:43 +0100787 wordlist *wl = malloc(sizeof(wordlist));
788 char st[100][max_size], sep[100];
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100789 long a, b=0, c=0, cn=0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200790 int unmerged;
791
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100792 while (1) {
793 st[cn][b] = st1[c];
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100794 b++;
795 c++;
796 st[cn][b] = 0;
797 if (st1[c] == 0) break;
798 if (st1[c] == ' ' || st1[c] == '-') {
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100799 sep[cn++] = st1[c];
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100800 b = 0;
801 c++;
802 }
803 }
804 cn++;
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100805 for (a = 0; a < cn; a++) {
806 if (search_backw) {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100807 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 +0100808 } else {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100809 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 +0100810 }
811 if (b == words) b = -1;
812 wl->wordi[a] = b;
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100813 if (b == -1) {
814 fprintf(stderr, "Out of dictionary word!\n");
815 cn--;
Marc Kupietz3082fd02019-01-09 14:54:06 +0100816 } else {
817 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 +0100818 }
819 }
Marc Kupietz48c29682016-03-19 11:30:43 +0100820 wl->length=cn;
821 return(wl);
822}
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100823
Marc Kupietzebc131e2019-01-03 16:24:27 +0100824void printBiggestMergedDifferences() {
825 float dist, len, vec[max_size];
826 long long a, b, c, d, cn, *bi;
827 char ch;
828 knn *nbs = NULL;
829 int N = 100;
830
831 printf("Looking for biggest distances between main and merged vectors ...\n");
832 collocator *best;
833 best = malloc(N * sizeof(collocator));
834 memset(best, 0, N * sizeof(collocator));
835
836 float worstbest=1000000;
837
838 for (a = 0; a < N; a++) best[a].activation = worstbest;
839
840 for (c = 0; c < 10000; c++) {
841 if(garbage && garbage[c]) continue;
842 a = 0;
843 dist = 0;
844 for (a = 0; a < size; a++) dist += M[a + c * size] * M[a + (c+merged_end) * size];
845 if(dist < worstbest) {
846 for (a = 0; a < N; a++) {
847 if (dist < best[a].activation) {
848 memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator));
849 best[a].activation = dist;
850 best[a].wordi = c;
851 break;
852 }
853 }
854 worstbest = best[N-1].activation;
855 }
856 }
857
858 printf("Most distant vectors for:\n ");
859 for (a = 0; a < N; a++) {
860 printf("%s ", &vocab[best[a].wordi * max_w]);
861 }
862 printf("\n");
863}
864
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100865void *_get_neighbours(void *arg) {
866 knnpars *pars = arg;
Marc Kupietz48c29682016-03-19 11:30:43 +0100867 char *st1 = pars->token;
868 int N = pars->N;
869 long from = pars -> from;
870 unsigned long upto = pars -> upto;
871 char file_name[max_size], st[100][max_size], *sep;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100872 float dist, len, vec[max_size];
873 long long a, b, c, d, cn, *bi;
Marc Kupietz48c29682016-03-19 11:30:43 +0100874 char ch;
875 knn *nbs = NULL;
876 wordlist *wl = pars->wl;
877
Marc Kupietzc55c8872017-12-01 23:27:10 +0100878 collocator *best = pars->best;
Marc Kupietz48c29682016-03-19 11:30:43 +0100879
880 float worstbest=-1;
881
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100882 for (a = 0; a < N; a++) best[a].activation = 0;
Marc Kupietz48c29682016-03-19 11:30:43 +0100883 a = 0;
884 bi = wl->wordi;
885 cn = wl->length;
886 sep = wl->sep;
887 b = bi[0];
888 c = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100889 if (b == -1) {
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100890 N = 0;
891 goto end;
892 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200893 for (a = 0; a < size; a++) vec[a] = 0;
894 for (b = 0; b < cn; b++) {
895 if (bi[b] == -1) continue;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100896 if(b>0 && sep[b-1] == '-')
897 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
898 else
899 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200900 }
901 len = 0;
902 for (a = 0; a < size; a++) len += vec[a] * vec[a];
903 len = sqrt(len);
904 for (a = 0; a < size; a++) vec[a] /= len;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100905 for (a = 0; a < N; a++) best[a].activation = -1;
Marc Kupietz000ad862016-02-26 14:59:12 +0100906 for (c = from; c < upto; c++) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200907 if(garbage && garbage[c]) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200908 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +0100909// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +0100910// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
911// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200912 dist = 0;
913 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100914 if(dist > worstbest) {
915 for (a = 0; a < N; a++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100916 if (dist > best[a].activation) {
917 memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator));
918 best[a].activation = dist;
919 best[a].wordi = c;
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100920 break;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200921 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200922 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100923 worstbest = best[N-1].activation;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200924 }
925 }
Marc Kupietz34020dc2016-02-25 08:44:19 +0100926
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100927end:
Marc Kupietz000ad862016-02-26 14:59:12 +0100928 pthread_exit(nbs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200929}
930
Marc Kupietze0e42132017-11-24 16:44:34 +0100931int cmp_activation (const void * a, const void * b) {
932 float fb = ((collocator *)a)->activation;
933 float fa = ((collocator *)b)->activation;
934 return (fa > fb) - (fa < fb);
935}
936
937int cmp_probability (const void * a, const void * b) {
938 float fb = ((collocator *)a)->probability;
939 float fa = ((collocator *)b)->probability;
940 return (fa > fb) - (fa < fb);
941}
942
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100943
Marc Kupietzac707b32018-12-20 11:36:38 +0100944SV *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 +0100945 HV *result = newHV();
Marc Kupietz7631e022019-01-25 12:04:42 +0100946 float *target_sums=NULL, vec[max_size];
Marc Kupietza5f60042017-05-04 10:38:12 +0200947 long long old_words;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100948 long a, b, c, d, slice;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100949 knn *para_nbs[MAX_THREADS];
950 knn *syn_nbs[MAX_THREADS];
Marc Kupietz000ad862016-02-26 14:59:12 +0100951 knnpars pars[MAX_THREADS];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100952 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
Marc Kupietz48c29682016-03-19 11:30:43 +0100953 wordlist *wl;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200954 int syn_threads = (M2? window * 2 : 0);
Marc Kupietzac707b32018-12-20 11:36:38 +0100955 int para_threads = (no_similar_profiles? 0 : num_threads - syn_threads);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100956
Marc Kupietz7631e022019-01-25 12:04:42 +0100957 collocator *best = NULL;
958 posix_memalign((void **) &best, 128, 10 * (N>=200? N : 200) * sizeof(collocator));
959 memset(best, 0, (N>=200? N : 200) * sizeof(collocator));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100960
Marc Kupietz000ad862016-02-26 14:59:12 +0100961 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
962
Marc Kupietzd5d05732018-01-30 11:57:35 +0100963 if(cutoff < 1 || cutoff > words)
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100964 cutoff=words;
965
Marc Kupietza2e64502016-04-27 09:53:51 +0200966 wl = getTargetWords(st1, search_backw);
Marc Kupietzf9ac54e2017-11-21 09:22:29 +0100967 if(wl == NULL || wl->length < 1)
Marc Kupietz271e2a42016-03-22 11:37:43 +0100968 goto end;
Marc Kupietz48c29682016-03-19 11:30:43 +0100969
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100970 old_words = cutoff;
Marc Kupietz3082fd02019-01-09 14:54:06 +0100971 slice = cutoff / para_threads;
Marc Kupietza5f60042017-05-04 10:38:12 +0200972
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100973 a = posix_memalign((void **) &target_sums, 128, cutoff * sizeof(float));
Marc Kupietz7631e022019-01-25 12:04:42 +0100974 memset(target_sums, 0, cutoff * sizeof(float));
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100975
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200976 printf("Starting %d threads\n", para_threads);
977 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100978 for(a=0; a < para_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100979 pars[a].cutoff = cutoff;
Marc Kupietz000ad862016-02-26 14:59:12 +0100980 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100981 pars[a].wl = wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100982 pars[a].N = N;
Marc Kupietzc55c8872017-12-01 23:27:10 +0100983 pars[a].best = &best[N*a];
Marc Kupietz3082fd02019-01-09 14:54:06 +0100984 if(merge_words == 0 || search_backw == 0) {
Marc Kupietz1f0f7802019-01-03 16:23:29 +0100985 pars[a].from = a*slice;
986 pars[a].upto = ((a+1)*slice > cutoff? cutoff : (a+1) * slice);
987 } else {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100988 pars[a].from = merge_words + a * slice;
989 pars[a].upto = merge_words + ((a+1)*slice > cutoff? cutoff : (a+1) * slice);
Marc Kupietz1f0f7802019-01-03 16:23:29 +0100990 }
991 printf("From: %ld, Upto: %ld\n", pars[a].from, pars[a].upto);
Marc Kupietz000ad862016-02-26 14:59:12 +0100992 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
993 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200994 if(M2) {
995 for(a=0; a < syn_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100996 pars[a + para_threads].cutoff = cutoff;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200997 pars[a + para_threads].target_sums = target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100998 pars[a + para_threads].window_sums = window_sums;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200999 pars[a + para_threads].wl = wl;
1000 pars[a + para_threads].N = N;
1001 pars[a + para_threads].from = a;
1002 pars[a + para_threads].upto = a+1;
1003 pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *) &pars[a + para_threads]);
1004 }
Marc Kupietz271e2a42016-03-22 11:37:43 +01001005 }
1006 printf("Waiting for para threads to join\n");
1007 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001008 for (a = 0; a < para_threads; a++) pthread_join(pt[a], (void *) &para_nbs[a]);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001009 printf("Para threads joint\n");
1010 fflush(stdout);
Marc Kupietz000ad862016-02-26 14:59:12 +01001011
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001012 /* if(!syn_nbs[0]) */
1013 /* goto end; */
Marc Kupietz000ad862016-02-26 14:59:12 +01001014
Marc Kupietzc55c8872017-12-01 23:27:10 +01001015 qsort(best, N*para_threads, sizeof(collocator), cmp_activation);
Marc Kupietz000ad862016-02-26 14:59:12 +01001016
Marc Kupietz000ad862016-02-26 14:59:12 +01001017
Marc Kupietzd0d3e912017-12-01 22:09:43 +01001018 long long chosen[MAX_NEIGHBOURS];
1019 printf("N: %ld\n", N);
1020
Marc Kupietz271e2a42016-03-22 11:37:43 +01001021 AV* array = newAV();
Marc Kupietzd91212f2017-11-13 10:05:09 +01001022 int i, j;
Marc Kupietza5f60042017-05-04 10:38:12 +02001023 int l1_words=0, l2_words=0;
Marc Kupietzd0d3e912017-12-01 22:09:43 +01001024
1025 for (a = 0, i = 0; i < N && a < N*para_threads; a++) {
Marc Kupietzd91212f2017-11-13 10:05:09 +01001026 int filtered=0;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001027 long long c = best[a].wordi;
Marc Kupietze8b9dd22019-01-03 17:55:59 +01001028 if ((merge_words && dedupe && i > 1) || (!merge_words && dedupe && i > 0)) {
Marc Kupietzd0d3e912017-12-01 22:09:43 +01001029 for (j=0; j<i && !filtered; j++)
1030 if (strcasestr(&vocab[c * max_w], &vocab[chosen[j] * max_w]) ||
1031 strcasestr(&vocab[chosen[j] * max_w], &vocab[c * max_w])) {
1032 printf("filtering %s %s\n", &vocab[chosen[j] * max_w], &vocab[c * max_w]);
Marc Kupietzd91212f2017-11-13 10:05:09 +01001033 filtered = 1;
1034 }
1035 if(filtered)
1036 continue;
1037 }
Marc Kupietz3082fd02019-01-09 14:54:06 +01001038
1039
1040 if(0 && merge_words > 0) {
Marc Kupietza5f60042017-05-04 10:38:12 +02001041 if(c >= merge_words) {
1042 if(l1_words > N / 2)
1043 continue;
1044 else
1045 l1_words++;
1046 } else {
1047 if(l2_words > N / 2)
1048 continue;
1049 else
1050 l2_words++;
1051 }
1052 }
Marc Kupietz3082fd02019-01-09 14:54:06 +01001053
1054// printf("%s l1:%d l2:%d i:%d a:%ld\n", &vocab[c * max_w], l1_words, l2_words, i, a);
1055// fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001056 HV* hash = newHV();
Marc Kupietza5f60042017-05-04 10:38:12 +02001057 SV* word = newSVpvf(&vocab[c * max_w], 0);
Marc Kupietzd0d3e912017-12-01 22:09:43 +01001058 chosen[i] = c;
Marc Kupietz271e2a42016-03-22 11:37:43 +01001059 if(latin_enc == 0) SvUTF8_on(word);
Marc Kupietza5f60042017-05-04 10:38:12 +02001060 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001061 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001062 hv_store(hash, "dist", strlen("dist"), newSVnv(best[a].activation), 0);
1063 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001064 AV *vector = newAV();
1065 for (b = 0; b < size; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001066 av_push(vector, newSVnv(M[b + best[a].wordi * size]));
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001067 }
Marc Kupietz271e2a42016-03-22 11:37:43 +01001068 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
1069 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietza5f60042017-05-04 10:38:12 +02001070 i++;
Marc Kupietz271e2a42016-03-22 11:37:43 +01001071 }
1072 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz7631e022019-01-25 12:04:42 +01001073
Marc Kupietz50485ba2016-03-23 09:13:14 +01001074 for(b=0; b < MAX_NEIGHBOURS; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001075 best[b].wordi = -1L;
1076 best[b].activation = 0;
1077 best[b].probability = 0;
1078 best[b].position = 0;
1079 best[b].activation_sum = 0;
Marc Kupietz7631e022019-01-25 12:04:42 +01001080 memset(best[b].heat, 0, sizeof(float)*16);
Marc Kupietz50485ba2016-03-23 09:13:14 +01001081 }
1082
Marc Kupietza77acce2017-11-30 16:59:07 +01001083 float total_activation = 0;
1084
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001085 if (M2) {
1086 printf("Waiting for syn threads to join\n");
1087 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001088 for (a = 0; a < syn_threads; a++) pthread_join(pt[a+para_threads], (void *) &syn_nbs[a]);
Marc Kupietza77acce2017-11-30 16:59:07 +01001089 for (a = 0; a <= syn_threads; a++) {
Marc Kupietz63872182018-03-12 09:44:49 +01001090 if(a == window) continue;
Marc Kupietza77acce2017-11-30 16:59:07 +01001091 total_activation += window_sums[a];
1092 printf("window pos: %d, sum: %f\n", a, window_sums[a]);
1093 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001094 printf("syn threads joint\n");
1095 fflush(stdout);
Marc Kupietz50485ba2016-03-23 09:13:14 +01001096
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001097 for(b=0; b < syn_nbs[0]->length; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001098 memcpy(best + b, &syn_nbs[0]->best[b], sizeof(collocator));
1099 best[b].position = -1; // syn_nbs[0]->pos[b];
1100 best[b].activation_sum = target_sums[syn_nbs[0]->best[b].wordi];
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001101 best[b].max_activation = 0.0;
Marc Kupietz4116b432017-12-06 14:15:32 +01001102 best[b].average = 0.0;
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001103 best[b].probability = 0.0;
Marc Kupietza77acce2017-11-30 16:59:07 +01001104 best[b].cprobability = syn_nbs[0]->best[b].cprobability;
Marc Kupietz7631e022019-01-25 12:04:42 +01001105 memset(best[b].heat, 0, sizeof(float)*16);
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001106 }
Marc Kupietz30ca4342017-11-22 21:21:20 +01001107
1108 float best_window_sum[MAX_NEIGHBOURS];
1109 int found_index=0, i=0, j, w;
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001110 for(a=0; a < syn_threads; a++) {
1111 for(b=0; b < syn_nbs[a]->length; b++) {
1112 for(i=0; i < found_index; i++)
1113 if(best[i].wordi == syn_nbs[a]->best[b].wordi)
1114 break;
1115 if(i >= found_index) {
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001116 best[found_index].max_activation = 0.0;
Marc Kupietz4116b432017-12-06 14:15:32 +01001117 best[found_index].average = 0.0;
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001118 best[found_index].probability = 0.0;
Marc Kupietz7631e022019-01-25 12:04:42 +01001119 memset(best[found_index].heat, 0, sizeof(float)*16);
Marc Kupietza77acce2017-11-30 16:59:07 +01001120 best[found_index].cprobability = syn_nbs[a]->best[b].cprobability;
1121 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 +01001122 best[found_index++].wordi = syn_nbs[a]->best[b].wordi;
1123 // printf("found: %s\n", &vocab[syn_nbs[a]->index[b] * max_w]);
Marc Kupietz30ca4342017-11-22 21:21:20 +01001124 }
1125 }
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001126 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001127 sort_by =0; // ALWAYS AUTO-FOCUS
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001128 if(sort_by != 1 && sort_by != 2) { // sort by auto focus mean
Marc Kupietz30ca4342017-11-22 21:21:20 +01001129 printf("window: %d - syn_threads: %d, %d\n", window, syn_threads, (1 << syn_threads) -1);
Marc Kupietzbd41da32017-11-24 10:26:43 +01001130 int wpos;
Marc Kupietz4116b432017-12-06 14:15:32 +01001131 int bits_set = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +01001132 for(i=0; i < found_index; i++) {
Marc Kupietz4116b432017-12-06 14:15:32 +01001133 best[i].activation = best[i].probability = best[i].average = best[i].cprobability_sum = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +01001134 for(w=1; w < (1 << syn_threads); w++) { // loop through all possible windows
Marc Kupietz4116b432017-12-06 14:15:32 +01001135 float word_window_sum = 0, word_window_average=0, word_cprobability_sum=0, word_activation_sum = 0, total_window_sum = 0;
1136 bits_set = 0;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001137 for(a=0; a < syn_threads; a++) {
Marc Kupietz30ca4342017-11-22 21:21:20 +01001138 if((1 << a) & w) {
Marc Kupietzbd41da32017-11-24 10:26:43 +01001139 wpos = (a >= window? a+1 : a);
1140 total_window_sum += window_sums[wpos];
Marc Kupietz30ca4342017-11-22 21:21:20 +01001141 }
1142 }
Marc Kupietzbd41da32017-11-24 10:26:43 +01001143// printf("%d window-sum %f\n", w, total_window_sum);
1144 for(a=0; a < syn_threads; a++) {
1145 if((1 << a) & w) {
1146 wpos = (a >= window? a+1 : a);
1147 bits_set++;
1148 for(b=0; b < syn_nbs[a]->length; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001149 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
Marc Kupietza77acce2017-11-30 16:59:07 +01001150// float acti = syn_nbs[a]->best[b].activation / total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001151// 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 +01001152// word_window_sum += syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1153// 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 +01001154
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001155 word_window_sum += syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
Marc Kupietza77acce2017-11-30 16:59:07 +01001156// word_window_sum += acti - (word_window_sum * acti); syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1157
Marc Kupietz4116b432017-12-06 14:15:32 +01001158 word_window_average += syn_nbs[a]->best[b].activation; // - word_window_average * syn_nbs[a]->best[b].activation; // conormalied activation sum
1159 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 +01001160 word_activation_sum += syn_nbs[a]->best[b].activation;
1161 if(syn_nbs[a]->best[b].activation > best[i].max_activation)
1162 best[i].max_activation = syn_nbs[a]->best[b].activation;
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +01001163 if(syn_nbs[a]->best[b].activation > best[i].heat[wpos] )
Marc Kupietz728b8ed2017-12-02 11:13:49 +01001164 best[i].heat[wpos] = syn_nbs[a]->best[b].activation;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001165 }
1166 }
1167 }
Marc Kupietz4116b432017-12-06 14:15:32 +01001168 if(bits_set) {
1169 word_window_average /= bits_set;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001170// word_activation_sum /= bits_set;
1171// word_window_sum /= bits_set;
Marc Kupietz4116b432017-12-06 14:15:32 +01001172 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001173
1174 word_window_sum /= total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001175
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001176 if(word_window_sum > best[i].probability) {
Marc Kupietz4116b432017-12-06 14:15:32 +01001177// best[i].position = w;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001178 best[i].probability = word_window_sum;
Marc Kupietz30ca4342017-11-22 21:21:20 +01001179 }
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001180
Marc Kupietz4116b432017-12-06 14:15:32 +01001181 if(word_cprobability_sum > best[i].cprobability_sum) {
1182 best[i].position = w;
1183 best[i].cprobability_sum = word_cprobability_sum;
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001184 }
Marc Kupietz4116b432017-12-06 14:15:32 +01001185
1186 best[i].average = word_window_average;
1187// best[i].activation = word_activation_sum;
1188 }
Marc Kupietz30ca4342017-11-22 21:21:20 +01001189 }
Marc Kupietze0e42132017-11-24 16:44:34 +01001190 qsort(best, found_index, sizeof(collocator), cmp_probability);
Marc Kupietz30ca4342017-11-22 21:21:20 +01001191// for(i=0; i < found_index; i++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001192// 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 +01001193// }
1194
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001195 } else if(sort_by == 1) { // responsiveness any window position
1196 int wpos;
1197 for(i=0; i < found_index; i++) {
1198 float word_window_sum = 0, word_activation_sum = 0, total_window_sum = 0;
1199 for(a=0; a < syn_threads; a++) {
1200 wpos = (a >= window? a+1 : a);
1201 for(b=0; b < syn_nbs[a]->length; b++)
1202 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
1203 best[i].probability += syn_nbs[a]->best[b].probability;
1204 if(syn_nbs[a]->best[b].activation > 0.25)
1205 best[i].position |= 1 << wpos;
1206 if(syn_nbs[a]->best[b].activation > best[i].activation) {
1207 best[i].activation = syn_nbs[a]->best[b].activation;
1208 }
1209 }
1210 }
1211 }
1212 qsort(best, found_index, sizeof(collocator), cmp_activation);
1213 } else if(sort_by == 2) { // single window position
Marc Kupietz30ca4342017-11-22 21:21:20 +01001214 for(a=1; a < syn_threads; a++) {
1215 for(b=0; b < syn_nbs[a]->length; b++) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001216 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001217 if(syn_nbs[a]->best[b].activation > best[c].activation) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001218 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001219 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001220 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001221 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
1222 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 +02001223 break;
Marc Kupietz6d9a6782016-03-23 17:25:25 +01001224 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001225 }
1226 }
1227 }
1228 } else { // sort by mean p
1229 for(a=1; a < syn_threads; a++) {
1230 for(b=0; b < syn_nbs[a]->length; b++) {
1231 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001232 if(target_sums[syn_nbs[a]->best[b].wordi] > best[c].activation_sum) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001233 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001234 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001235 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001236 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
1237 best[c].position = (1 << 2*window) - 1; // syn_nbs[a]->pos[b];
1238 best[c].activation_sum = target_sums[syn_nbs[a]->best[b].wordi];
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001239 break;
1240 }
Marc Kupietz271e2a42016-03-22 11:37:43 +01001241 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +01001242 }
1243 }
1244 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001245 array = newAV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001246 for (a = 0, i=0; a < MAX_NEIGHBOURS && best[a].wordi >= 0; a++) {
1247 long long c = best[a].wordi;
Marc Kupietza77acce2017-11-30 16:59:07 +01001248/*
Marc Kupietzd91212f2017-11-13 10:05:09 +01001249 if (dedupe) {
1250 int filtered=0;
1251 for (j=0; j<i; j++)
1252 if (strcasestr(&vocab[c * max_w], chosen[j]) ||
1253 strcasestr(chosen[j], &vocab[c * max_w])) {
Marc Kupietza77acce2017-11-30 16:59:07 +01001254 printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]);
1255 filtered = 1;
1256 }
Marc Kupietzd91212f2017-11-13 10:05:09 +01001257 if(filtered)
1258 continue;
1259 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001260*/
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001261 chosen[i++]=c;
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001262 HV* hash = newHV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001263 SV* word = newSVpvf(&vocab[best[a].wordi * max_w], 0);
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001264 AV* heat = newAV();
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001265 if(latin_enc == 0) SvUTF8_on(word);
1266 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001267 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietz4116b432017-12-06 14:15:32 +01001268 hv_store(hash, "average", strlen("average"), newSVnv(best[a].average), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001269 hv_store(hash, "prob", strlen("prob"), newSVnv(best[a].probability), 0);
Marc Kupietz4116b432017-12-06 14:15:32 +01001270 hv_store(hash, "cprob", strlen("cprob"), newSVnv(best[a].cprobability_sum), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001271 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 +01001272 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 +01001273 hv_store(hash, "pos", strlen("pos"), newSVnv(best[a].position), 0);
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001274 best[a].heat[5]=0;
1275 for(i=10; i >= 0; i--) av_push(heat, newSVnv(best[a].heat[i]));
1276 hv_store(hash, "heat", strlen("heat"), newRV_noinc((SV*)heat), 0);
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001277 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietz271e2a42016-03-22 11:37:43 +01001278 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001279 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001280 }
Marc Kupietz000ad862016-02-26 14:59:12 +01001281end:
Marc Kupietz257a93d2019-01-03 17:55:22 +01001282 // words = old_words; // why was this here?
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001283 free(best);
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001284 return newRV_noinc((SV*)result);
Marc Kupietz000ad862016-02-26 14:59:12 +01001285}
Marc Kupietz7bc85fd2016-02-24 11:42:41 +01001286
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001287int dump_vecs(char *fname) {
1288 long i, j;
1289 FILE *f;
Marc Kupietz0a68a792018-12-20 11:41:45 +01001290 if(words>100000)
1291 words=100000;
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001292
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001293 if((f=fopen(fname, "w")) == NULL) {
1294 fprintf(stderr, "cannot open %s for writing\n", fname);
1295 return(-1);
1296 }
1297 fprintf(f, "%lld %lld\n", words, size);
1298 for (i=0; i < words; i++) {
1299 fprintf(f, "%s ", &vocab[i * max_w]);
1300 for(j=0; j < size - 1; j++)
1301 fprintf(f, "%f ", M[i*size + j]);
1302 fprintf(f, "%f\n", M[i*size + j]);
1303 }
1304 fclose(f);
1305 return(0);
1306}
Marc Kupietzdc22b982015-10-09 09:19:34 +02001307
Marc Kupietzfa194262018-06-05 09:39:32 +02001308int dump_for_numpy(char *fname) {
1309 long i, j;
1310 FILE *f;
1311 /* if(words>200000) */
1312 /* words=200000; */
1313
1314 if((f=fopen(fname, "w")) == NULL) {
1315 fprintf(stderr, "cannot open %s for writing\n", fname);
1316 return(-1);
1317 }
1318 for (i=0; i < words; i++) {
1319 for(j=0; j < size - 1; j++)
1320 fprintf(f, "%f\t", M[i*size + j]);
1321 fprintf(f, "%f\n", M[i*size + j]);
1322 }
1323 fclose(f);
Marc Kupietz7631e022019-01-25 12:04:42 +01001324 return(0);
Marc Kupietzfa194262018-06-05 09:39:32 +02001325}