blob: 22d94dcbcd57477a6972dc7268779c2d887b9e3d [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 Kupietz9ff3c992019-02-04 12:32:54 +0100117 if($word > $mergedEnd) {
118 $word-=$mergedEnd;
119 }
Marc Kupietz19c68242018-03-12 09:42:21 +0100120 if(!$cccache{$word}) {
Marc Kupietz06d61292019-02-04 12:33:22 +0100121 $c->app->log->info("Getting classic collocates of $word.");
Marc Kupietz19c68242018-03-12 09:42:21 +0100122 $cccache{$word} = getClassicCollocators($word);
123 } else {
Marc Kupietz06d61292019-02-04 12:33:22 +0100124 $c->app->log->info("Getting classic collocates for $word from cache.");
Marc Kupietz19c68242018-03-12 09:42:21 +0100125 }
126 return $cccache{$word};
127}
128
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100129sub getSimilarProfilesCached {
130 my ($c, $word) = @_;
131 if(!$spcache{$word}) {
132 $spcache{$word} = getSimilarProfiles($word);
133 } else {
134 $c->app->log->info("Getting similar profiles for $word from cache:");
135 print $spcache{$word};
136 }
137 return $spcache{$word};
138}
139
Marc Kupietz66bfd952017-12-11 09:59:45 +0100140post '/derekovecs/getVecsByRanks' => sub {
141 my $self = shift;
142 my $vec = getVecs($self->req->json);
143 $self->render(json => $vec);
144};
145
Marc Kupietze13a3552018-01-25 08:48:34 +0100146any '*/getClassicCollocators' => sub {
Marc Kupietze243efd2018-01-11 22:19:24 +0100147 my $self = shift;
Marc Kupietz19c68242018-03-12 09:42:21 +0100148 $self->render(data => getClassicCollocatorsCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
Marc Kupietze243efd2018-01-11 22:19:24 +0100149};
150
Marc Kupietze13a3552018-01-25 08:48:34 +0100151any '/getClassicCollocators' => sub {
Marc Kupietze243efd2018-01-11 22:19:24 +0100152 my $self = shift;
Marc Kupietz19c68242018-03-12 09:42:21 +0100153 $self->render(data => getClassicCollocatorsCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
Marc Kupietze243efd2018-01-11 22:19:24 +0100154};
155
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100156any '*/getSimilarProfiles' => sub {
157 my $self = shift;
158 $self->render(data => getSimilarProfilesCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
159};
160
Marc Kupietzc987fa82018-03-21 12:14:25 +0100161any '/getSimilarProfiles' => sub {
162 my $self = shift;
163 $self->render(data => getSimilarProfilesCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
164};
165
Marc Kupietzdf3d4b52017-11-29 16:57:27 +0100166get '*/img/*' => sub {
167 my $c = shift;
168 my $url = $c->req->url;
169 $url =~ s@/derekovecs@@g;
170 $c->app->log->info("GET: " . $url);
171 $c->reply->static($url);
172};
173
Marc Kupietzdc22b982015-10-09 09:19:34 +0200174get '/' => sub {
175 my $c = shift;
Marc Kupietza5f60042017-05-04 10:38:12 +0200176 $c->app->log->info("get: ".$c->req->url->to_abs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200177 my $word=$c->param('word');
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100178 my $no_nbs=$c->param('n') || 100;
179 my $no_iterations=$c->param('N') || 2000;
Marc Kupietzd4227392016-03-01 16:45:12 +0100180 my $perplexity=$c->param('perplexity') || 20;
Marc Kupietzc4d62f82016-03-01 11:04:24 +0100181 my $epsilon=$c->param('epsilon') || 5;
Marc Kupietzd7aea722016-03-02 11:59:12 +0100182 my $som=$c->param('som') || 0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200183 my $searchBaseVocabFirst=$c->param('sbf') || 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100184 my $sort=$c->param('sort') || 0;
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100185 my $csv=$c->param('csv') || 0;
Marc Kupietzb613b052016-04-28 14:11:59 +0200186 my $json=$c->param('json') || 0;
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +0100187 my $cutoff=$c->param('cutoff') || 500000;
Marc Kupietzd91212f2017-11-13 10:05:09 +0100188 my $dedupe=$c->param('dedupe') || 0;
Marc Kupietzac707b32018-12-20 11:36:38 +0100189 my $nosp=$c->param('nosp') || 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100190 my $res;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100191 my @lists;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100192 my @collocations;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100193 if(defined($word) && $word !~ /^\s*$/) {
194 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100195 $word =~ s/\s+/ /g;
Marc Kupietz3082fd02019-01-09 14:54:06 +0100196 if($opt_m && $word !~ /\|/) {
197 $word .= "|$word";
198 }
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100199 for my $w (split(' *\| *', $word)) {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100200 if($opt_m) {
201 if($searchBaseVocabFirst) {
202 $searchBaseVocabFirst=0;
203 } else {
204 $searchBaseVocabFirst=1;
205 }
206 }
207 if ($cache{$w.$cutoff.$no_nbs.$sort.$dedupe,$searchBaseVocabFirst}) {
Marc Kupietz15987412017-11-07 15:56:58 +0100208 $c->app->log->info("Getting $w results from cache");
Marc Kupietz3082fd02019-01-09 14:54:06 +0100209 $res = $cache{$w.$cutoff.$no_nbs.$sort.$dedupe.$searchBaseVocabFirst}
Marc Kupietza5b90152016-03-15 17:39:19 +0100210 } else {
Marc Kupietz15987412017-11-07 15:56:58 +0100211 $c->app->log->info('Looking for neighbours of '.$w);
212 if($opt_i) {
Marc Kupietzac707b32018-12-20 11:36:38 +0100213 $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp);
Marc Kupietz15987412017-11-07 15:56:58 +0100214 } else {
Marc Kupietzac707b32018-12-20 11:36:38 +0100215 $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp);
Marc Kupietz15987412017-11-07 15:56:58 +0100216 }
Marc Kupietz2dd2dd72017-12-01 22:08:14 +0100217 $cache{$w.$cutoff.$no_nbs.$sort.$dedupe} = $res;
Marc Kupietza5b90152016-03-15 17:39:19 +0100218 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100219 push(@lists, $res->{paradigmatic});
Marc Kupietz15987412017-11-07 15:56:58 +0100220 }
221 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100222 $word =~ s/ *\| */ | /g;
Marc Kupietzb613b052016-04-28 14:11:59 +0200223 if($json) {
224 return $c->render(json => {word => $word, list => \@lists, collocators=>$res->{syntagmatic}});
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100225 } elsif($csv) {
226 my $csv_data="";
227 for (my $i=0; $i <= $no_nbs; $i++) {
228 $csv_data .= $res->{paradigmatic}->[$i]->{word} . ", ";
229 }
230 for (my $i=0; $i < $no_nbs; $i++) {
231 $csv_data .= $res->{syntagmatic}->[$i]->{word} . ", ";
232 }
233 chop $csv_data;
234 chop $csv_data;
235 $csv_data .= "\n";
236 return $c->render(text=>$csv_data);
Marc Kupietzb613b052016-04-28 14:11:59 +0200237 } else {
Marc Kupietzc053d972019-01-10 10:41:51 +0100238 $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 +0200239 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200240};
241
Marc Kupietz30ca4342017-11-22 21:21:20 +0100242helper(bitvec2window => sub {
243 my ($self, $n) = @_;
244 my $str = unpack("B32", pack("N", $n));
245 $str =~ s/^\d{22}//;
246 $str =~ s/^(\d{5})/$1x/;
247 $str =~ s/0/·/g;
248 $str =~ s/1/+/g;
249 return $str;
250 });
251
Marc Kupietza5b90152016-03-15 17:39:19 +0100252$daemon->run; # app->start;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200253
254exit;
255
256__END__
257
258__C__
259#include <stdio.h>
260#include <string.h>
261#include <math.h>
262#include <malloc.h>
263#include <stdlib.h> //strlen
Marc Kupietzf0809762016-02-26 10:13:47 +0100264#include <sys/mman.h>
Marc Kupietz000ad862016-02-26 14:59:12 +0100265#include <pthread.h>
Marc Kupietze243efd2018-01-11 22:19:24 +0100266#include <collocatordb.h>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200267
268#define max_size 2000
269#define max_w 50
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100270#define MAX_NEIGHBOURS 1000
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100271#define MAX_WORDS -1
Marc Kupietz000ad862016-02-26 14:59:12 +0100272#define MAX_THREADS 100
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100273#define MAX_CC 50
274#define EXP_TABLE_SIZE 1000
275#define MAX_EXP 6
Marc Kupietz271e2a42016-03-22 11:37:43 +0100276#define MIN_RESP 0.50
Marc Kupietzdc22b982015-10-09 09:19:34 +0200277
278//the thread function
279void *connection_handler(void *);
Marc Kupietz000ad862016-02-26 14:59:12 +0100280
281typedef struct {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100282 long long wordi;
283 long position;
284 float activation;
Marc Kupietz4116b432017-12-06 14:15:32 +0100285 float average;
Marc Kupietza77acce2017-11-30 16:59:07 +0100286 float cprobability; // column wise probability
Marc Kupietz4116b432017-12-06 14:15:32 +0100287 float cprobability_sum;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100288 float probability;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100289 float activation_sum;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100290 float max_activation;
Marc Kupietz4116b432017-12-06 14:15:32 +0100291 float heat[16];
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100292} collocator;
293
294typedef struct {
295 collocator *best;
Marc Kupietz80abb442016-03-23 21:04:08 +0100296 int length;
Marc Kupietz000ad862016-02-26 14:59:12 +0100297} knn;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100298
Marc Kupietz000ad862016-02-26 14:59:12 +0100299typedef struct {
Marc Kupietz48c29682016-03-19 11:30:43 +0100300 long long wordi[MAX_NEIGHBOURS];
301 char sep[MAX_NEIGHBOURS];
302 int length;
303} wordlist;
304
305typedef struct {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100306 long cutoff;
Marc Kupietz48c29682016-03-19 11:30:43 +0100307 wordlist *wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100308 char *token;
309 int N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100310 long from;
Marc Kupietz000ad862016-02-26 14:59:12 +0100311 unsigned long upto;
Marc Kupietzc55c8872017-12-01 23:27:10 +0100312 collocator *best;
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100313 float *target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100314 float *window_sums;
Marc Kupietz000ad862016-02-26 14:59:12 +0100315} knnpars;
316
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100317typedef struct {
318 uint32_t index;
319 float value;
320} sparse_t;
321
322typedef struct {
323 uint32_t len;
324 sparse_t nbr[100];
325} profile_t;
326
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200327float *M, *M2=0L, *syn1neg_window, *expTable;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100328float *window_sums;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200329char *vocab;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200330char *garbage = NULL;
Marc Kupietze243efd2018-01-11 22:19:24 +0100331COLLOCATORDB *cdb = NULL;
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100332profile_t *sprofiles = NULL;
333size_t sprofiles_qty = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100334
Marc Kupietza2e64502016-04-27 09:53:51 +0200335long long words, size, merged_end;
Marc Kupietza5f60042017-05-04 10:38:12 +0200336long long merge_words = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100337int num_threads=20;
Marc Kupietza5b90152016-03-15 17:39:19 +0100338int latin_enc=0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100339int window;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200340
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100341/* load collocation profiles if file exists */
342int load_sprofiles(char *vecsname) {
343 char *basename = strdup(vecsname);
344 char *pos = strstr(basename, ".vecs");
345 if(pos)
346 *pos=0;
347
348 char binsprofiles_fname[256];
349 strcpy(binsprofiles_fname, basename);
350 strcat(binsprofiles_fname, ".sprofiles.bin");
351 FILE *fp = fopen(binsprofiles_fname, "rb");
352 if (fp == NULL) {
353 printf("Collocation profiles %s not found. No problem.\n", binsprofiles_fname);
354 return 0;
355 }
356 fseek(fp, 0L, SEEK_END);
357 size_t sz = ftell(fp);
358 fclose(fp);
359
360 int fd = open(binsprofiles_fname, O_RDONLY);
361 sprofiles = mmap(0, sz, PROT_READ, MAP_SHARED, fd, 0);
362 if (sprofiles == MAP_FAILED) {
363 close(fd);
364 fprintf(stderr, "Cannot mmap %s\n", binsprofiles_fname);
365 sprofiles = NULL;
366 return 0;
367 } else {
368 sprofiles_qty = sz / sizeof(profile_t);
369 fprintf(stderr, "Successfully mmaped %s containing similar profiles for %ld word forms.\n", binsprofiles_fname, sprofiles_qty);
370 }
371 return 1;
372}
373
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100374int init_net(char *file_name, char *net_name, int latin) {
Marc Kupietz67c20282016-02-26 09:42:00 +0100375 FILE *f, *binvecs, *binwords;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100376 int binwords_fd, binvecs_fd, net_fd, i;
Marc Kupietz82b02672016-02-26 12:32:25 +0100377 long long a, b, c, d, cn;
378 float len;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200379 double val;
Marc Kupietz82b02672016-02-26 12:32:25 +0100380
Marc Kupietz67c20282016-02-26 09:42:00 +0100381 char binvecs_fname[256], binwords_fname[256];
382 strcpy(binwords_fname, file_name);
383 strcat(binwords_fname, ".words");
384 strcpy(binvecs_fname, file_name);
385 strcat(binvecs_fname, ".vecs");
Marc Kupietzdc22b982015-10-09 09:19:34 +0200386
Marc Kupietza5b90152016-03-15 17:39:19 +0100387 latin_enc = latin;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200388 f = fopen(file_name, "rb");
389 if (f == NULL) {
390 printf("Input file %s not found\n", file_name);
391 return -1;
392 }
393 fscanf(f, "%lld", &words);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100394 if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200395 fscanf(f, "%lld", &size);
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100396 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) {
397 printf("Converting %s to memory mappable structures\n", file_name);
Marc Kupietzf0809762016-02-26 10:13:47 +0100398 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
399 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
400 if (M == NULL) {
401 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
402 return -1;
403 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200404 if(strstr(file_name, ".txt")) {
405 for (b = 0; b < words; b++) {
406 a = 0;
407 while (1) {
408 vocab[b * max_w + a] = fgetc(f);
409 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
410 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
411 }
412 vocab[b * max_w + a] = 0;
413 len = 0;
414 for (a = 0; a < size; a++) {
415 fscanf(f, "%lf", &val);
416 M[a + b * size] = val;
417 len += val * val;
418 }
419 len = sqrt(len);
420 for (a = 0; a < size; a++) M[a + b * size] /= len;
421 }
422 } else {
423 for (b = 0; b < words; b++) {
424 a = 0;
425 while (1) {
426 vocab[b * max_w + a] = fgetc(f);
427 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
428 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
429 }
430 vocab[b * max_w + a] = 0;
431 fread(&M[b * size], sizeof(float), size, f);
432 len = 0;
433 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
434 len = sqrt(len);
435 for (a = 0; a < size; a++) M[a + b * size] /= len;
436 }
437 }
Marc Kupietz67c20282016-02-26 09:42:00 +0100438 if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) {
439 fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs);
440 fclose(binvecs);
441 fwrite(vocab, sizeof(char), (long long)words * max_w, binwords);
442 fclose(binwords);
443 }
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100444 }
445 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
446 M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0);
447 vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0);
448 if (M == MAP_FAILED || vocab == MAP_FAILED) {
449 close(binvecs_fd);
450 close(binwords_fd);
451 fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname);
452 exit(-1);
453 }
454 } else {
455 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
456 exit(-1);
Marc Kupietz67c20282016-02-26 09:42:00 +0100457 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200458 fclose(f);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100459
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200460 if(net_name && strlen(net_name) > 0) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100461 if( (net_fd = open(net_name, O_RDONLY)) >= 0) {
462 window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2;
463 // lseek(net_fd, sizeof(float) * words * size, SEEK_SET);
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100464 // munmap(M, sizeof(float) * words * size);
465 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 +0200466 if (M2 == MAP_FAILED) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100467 close(net_fd);
468 fprintf(stderr, "Cannot mmap %s\n", net_name);
469 exit(-1);
470 }
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100471 syn1neg_window = M2 + words * size;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100472 } else {
473 fprintf(stderr, "Cannot open %s\n", net_name);
474 exit(-1);
475 }
476 fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window);
Marc Kupietze243efd2018-01-11 22:19:24 +0100477
478 char collocatordb_name[2048];
479 strcpy(collocatordb_name, net_name);
480 char *ext = rindex(collocatordb_name, '.');
481 if(ext) {
482 strcpy(ext, ".rocksdb");
483 if(access(collocatordb_name, R_OK) == 0) {
484 *ext = 0;
485 fprintf(stderr, "Opening collocator DB %s\n", collocatordb_name);
486 cdb = open_collocatordb(collocatordb_name);
487 }
488 }
489 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100490
491 expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float));
492 for (i = 0; i < EXP_TABLE_SIZE; i++) {
493 expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table
494 expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1)
495 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100496 window_sums = malloc(sizeof(float) * (window+1) * 2);
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100497
498 return 0;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200499}
500
Marc Kupietza2e64502016-04-27 09:53:51 +0200501long mergeVectors(char *file_name){
502 FILE *f, *binvecs, *binwords;
503 int binwords_fd, binvecs_fd, net_fd, i;
504 long long a, b, c, d, cn;
505 float len;
506 float *merge_vecs;
507 char *merge_vocab;
Marc Kupietza5f60042017-05-04 10:38:12 +0200508 /* long long merge_words, merge_size; */
509 long long merge_size;
Marc Kupietza2e64502016-04-27 09:53:51 +0200510
511 char binvecs_fname[256], binwords_fname[256];
512 strcpy(binwords_fname, file_name);
513 strcat(binwords_fname, ".words");
514 strcpy(binvecs_fname, file_name);
515 strcat(binvecs_fname, ".vecs");
516
517 f = fopen(file_name, "rb");
518 if (f == NULL) {
519 printf("Input file %s not found\n", file_name);
520 exit -1;
521 }
522 fscanf(f, "%lld", &merge_words);
523 fscanf(f, "%lld", &merge_size);
524 if(merge_size != size){
525 fprintf(stderr, "vectors must have the same length\n");
526 exit(-1);
527 }
528 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
529 merge_vecs = malloc(sizeof(float) * (words + merge_words) * size);
530 merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w);
531 if (merge_vecs == NULL || merge_vocab == NULL) {
532 close(binvecs_fd);
533 close(binwords_fd);
534 fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname);
535 exit(-1);
536 }
537 read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float));
538 read(binwords_fd, merge_vocab, merge_words * max_w);
539 } else {
540 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
541 exit(-1);
542 }
543 printf("Successfully reallocated memory\nMerging...\n");
544 fflush(stdout);
545 memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float));
546 memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w);
547 munmap(M, words * size * sizeof(float));
548 munmap(vocab, words * max_w);
549 M = merge_vecs;
550 vocab = merge_vocab;
551 merged_end = merge_words;
552 words += merge_words;
553 fclose(f);
554 printf("merged_end: %lld, words: %lld\n", merged_end, words);
Marc Kupietzebc131e2019-01-03 16:24:27 +0100555 printBiggestMergedDifferences();
Marc Kupietza2e64502016-04-27 09:53:51 +0200556 return((long) merged_end);
557}
558
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200559void filter_garbage() {
560 long i;
Marc Kupietzab591a82016-04-28 14:08:49 +0200561 unsigned char *w, previous, c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200562 garbage = malloc(words);
563 memset(garbage, 0, words);
564 for (i = 0; i < words; i++) {
565 w = vocab + i * max_w;
566 previous = 0;
Marc Kupietz969adfa2018-03-12 09:43:53 +0100567 if(strncmp("quot", w, 4) == 0) {
568 garbage[i]=1;
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100569// printf("Gargabe: %s\n", vocab + i * max_w);
Marc Kupietz969adfa2018-03-12 09:43:53 +0100570 } else {
571 while((c = *w++) && !garbage[i]) {
572 if( ((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) ||
573 (previous == '-' && (c & 32)) ||
574 (previous == 0xc2 && (c == 0xa4 || c == 0xb6 )) ||
575 (previous == 'q' && c == 'u' && *(w) == 'o' && *(w+1) == 't') || /* quot */
576 c == '<'
577 ) {
578 garbage[i]=1;
579 continue;
580 }
581 previous = c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200582 }
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200583 }
584 }
585 return;
586}
587
Marc Kupietzac707b32018-12-20 11:36:38 +0100588
589knn *simpleGetCollocators(int word, int number, long cutoff, int *result) {
590 knnpars *pars = calloc(sizeof(knnpars), 1);
591 float *target_sums;
592 float *window_sums = malloc(sizeof(float) * (window+1) * 2);
593 pars->cutoff = (cutoff? cutoff : 300000);
594 long a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float));
595 for(a = 0; a < cutoff; a++)
596 target_sums[a] = 0;
597 pars->target_sums = target_sums;
598 pars->window_sums = window_sums;
599 pars->N = (number? number : 20);
600 pars->from = 0;
601 pars->upto = window * 2 -1;
Marc Kupietz7631e022019-01-25 12:04:42 +0100602 knn *syn_nbs = NULL; // = (knn*) getCollocators(pars);
Marc Kupietzac707b32018-12-20 11:36:38 +0100603 free(pars);
604 free(window_sums);
605 free(target_sums);
606 return syn_nbs;
607}
608
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100609void *getCollocators(void *args) {
610 knnpars *pars = args;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100611 int N = pars->N;
Marc Kupietz52702832019-01-15 17:55:52 +0100612
Marc Kupietz271e2a42016-03-22 11:37:43 +0100613 int cc = pars->wl->wordi[0];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100614 knn *nbs = NULL;
615 long window_layer_size = size * window * 2;
616 long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target;
617 float f, max_f, maxmax_f;
Marc Kupietz7631e022019-01-25 12:04:42 +0100618 float *target_sums=NULL, worstbest, wpos_sum;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100619 collocator *best;
Marc Kupietzd5642582016-03-19 22:23:13 +0100620
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200621 if(M2 == NULL || cc == -1)
Marc Kupietzd5642582016-03-19 22:23:13 +0100622 return NULL;
623
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100624 a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float));
Marc Kupietz7631e022019-01-25 12:04:42 +0100625 memset(target_sums, 0, pars->cutoff * sizeof(float));
626 best = malloc((N>200?N:200) * sizeof(collocator));
627 memset(best, 0, (N>200?N:200) * sizeof(collocator));
Marc Kupietz271e2a42016-03-22 11:37:43 +0100628 worstbest = MIN_RESP;
629
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100630 for (b = 0; b < pars->cutoff; b++)
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100631 target_sums[b]=0;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100632 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100633 best[b].wordi = -1;
634 best[b].probability = 1;
635 best[b].activation = worstbest;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100636 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100637
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100638 d = cc;
639 maxmax_f = -1;
640 maxmax_target = 0;
641
Marc Kupietz271e2a42016-03-22 11:37:43 +0100642 for (a = pars->from; a < pars->upto; a++) {
643 if(a >= window)
644 a++;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100645 wpos_sum = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100646 printf("window pos: %ld\n", a);
647 if (a != window) {
648 max_f = -1;
649 window_offset = a * size;
650 if (a > window)
651 window_offset -= size;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100652 for(target = 0; target < pars->cutoff; target ++) {
653 if(garbage && garbage[target]) continue;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100654 if(target == d)
655 continue;
656 f = 0;
657 for (c = 0; c < size; c++)
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100658 f += M2[d* size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100659 if (f < -MAX_EXP)
660 continue;
661 else if (f > MAX_EXP)
662 continue;
663 else
664 f = expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100665 wpos_sum += f;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100666
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100667 target_sums[target] += f;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100668 if(f > worstbest) {
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100669 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100670 if (f > best[b].activation) {
671 memmove(best + b + 1, best + b, (N - b -1) * sizeof(collocator));
672 best[b].activation = f;
673 best[b].wordi = target;
674 best[b].position = window-a;
Marc Kupietz33679a32016-03-22 08:49:39 +0100675 break;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100676 }
677 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100678 if(b == N - 1)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100679 worstbest = best[N-1].activation;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100680 }
681 }
682 printf("%d %.2f\n", max_target, max_f);
683 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
684 if(max_f > maxmax_f) {
685 maxmax_f = max_f;
686 maxmax_target = max_target;
687 }
Marc Kupietz33679a32016-03-22 08:49:39 +0100688 for (b = 0; b < N; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100689 if(best[b].position == window-a)
Marc Kupietza77acce2017-11-30 16:59:07 +0100690 best[b].cprobability = best[b].activation / wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100691 } else {
692 printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]);
693 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100694 pars->window_sums[a] = wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100695 }
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100696 for (b = 0; b < pars->cutoff; b++)
Marc Kupietza77acce2017-11-30 16:59:07 +0100697 pars->target_sums[b] += target_sums[b]; //(target_sums[b] / wpos_sum ) / (window * 2);
698 printf("Target-Summe von 0: %f\n", pars->target_sums[150298]);
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100699 free(target_sums);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100700 for(b=0; b<N && best[b].wordi >= 0; b++);; // THIS LOOP IS NEEDED (b...)
701// 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 +0100702// printf("\n");
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100703 nbs = malloc(sizeof(knn));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100704 nbs->best = best;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100705 nbs->length = b-1;
706 pthread_exit(nbs);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100707}
708
Marc Kupietz30ca4342017-11-22 21:21:20 +0100709
Marc Kupietz66bfd952017-12-11 09:59:45 +0100710AV *getVecs(AV *array) {
711 int i, b;
712 AV *result = newAV();
713 for (i=0; i<=av_len(array); i++) {
714 SV** elem = av_fetch(array, i, 0);
715 if (elem != NULL) {
716 long j = (long) SvNV(*elem);
717 AV *vector = newAV();
718 for (b = 0; b < size; b++) {
719 av_push(vector, newSVnv(M[b + j * size]));
720 }
721 av_push(result, newRV_noinc(vector));
722 }
723 }
724 return result;
725}
726
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100727char *getSimilarProfiles(long node) {
728 int i;
729 char buffer[120000];
730 char pair_buffer[2048];
731 buffer[0]='[';
732 buffer[1]=0;
733 if(node >= sprofiles_qty) {
734 printf("Not available in precomputed profile\n");
735 return(strdup("[{\"w\":\"not available\", \"v\":0}]\n"));
736 }
737
738 printf("******* %s ******\n", &vocab[max_w * node]);
739
740 for(i=0; i < 100 && i < sprofiles[node].len; i++) {
741 sprintf(pair_buffer, "{\"w\":\"%s\", \"v\":%f},", &vocab[max_w * (sprofiles[node].nbr[i].index)], sprofiles[node].nbr[i].value);
742 strcat(buffer, pair_buffer);
743 }
744 buffer[strlen(buffer)-1]=']';
745 strcat(buffer, "\n");
746 printf(buffer);
747 return(strdup(buffer));
748}
749
Marc Kupietze243efd2018-01-11 22:19:24 +0100750char *getClassicCollocators(long node) {
751 char *res = (cdb? strdup(get_collocators_as_json(cdb, node)) : "[]");
752 return res;
753}
754
Marc Kupietz0957d532019-01-03 17:54:00 +0100755wordlist *getTargetWords(char *st1, int search_backw) {
Marc Kupietz48c29682016-03-19 11:30:43 +0100756 wordlist *wl = malloc(sizeof(wordlist));
757 char st[100][max_size], sep[100];
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100758 long a, b=0, c=0, cn=0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200759 int unmerged;
760
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100761 while (1) {
762 st[cn][b] = st1[c];
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100763 b++;
764 c++;
765 st[cn][b] = 0;
766 if (st1[c] == 0) break;
767 if (st1[c] == ' ' || st1[c] == '-') {
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100768 sep[cn++] = st1[c];
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100769 b = 0;
770 c++;
771 }
772 }
773 cn++;
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100774 for (a = 0; a < cn; a++) {
775 if (search_backw) {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100776 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 +0100777 } else {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100778 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 +0100779 }
780 if (b == words) b = -1;
781 wl->wordi[a] = b;
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100782 if (b == -1) {
783 fprintf(stderr, "Out of dictionary word!\n");
784 cn--;
Marc Kupietz3082fd02019-01-09 14:54:06 +0100785 } else {
786 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 +0100787 }
788 }
Marc Kupietz48c29682016-03-19 11:30:43 +0100789 wl->length=cn;
790 return(wl);
791}
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100792
Marc Kupietzebc131e2019-01-03 16:24:27 +0100793void printBiggestMergedDifferences() {
794 float dist, len, vec[max_size];
795 long long a, b, c, d, cn, *bi;
796 char ch;
797 knn *nbs = NULL;
798 int N = 100;
799
800 printf("Looking for biggest distances between main and merged vectors ...\n");
801 collocator *best;
802 best = malloc(N * sizeof(collocator));
803 memset(best, 0, N * sizeof(collocator));
804
805 float worstbest=1000000;
806
807 for (a = 0; a < N; a++) best[a].activation = worstbest;
808
809 for (c = 0; c < 10000; c++) {
810 if(garbage && garbage[c]) continue;
811 a = 0;
812 dist = 0;
813 for (a = 0; a < size; a++) dist += M[a + c * size] * M[a + (c+merged_end) * size];
814 if(dist < worstbest) {
815 for (a = 0; a < N; a++) {
816 if (dist < best[a].activation) {
817 memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator));
818 best[a].activation = dist;
819 best[a].wordi = c;
820 break;
821 }
822 }
823 worstbest = best[N-1].activation;
824 }
825 }
826
827 printf("Most distant vectors for:\n ");
828 for (a = 0; a < N; a++) {
829 printf("%s ", &vocab[best[a].wordi * max_w]);
830 }
831 printf("\n");
832}
833
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100834void *_get_neighbours(void *arg) {
835 knnpars *pars = arg;
Marc Kupietz48c29682016-03-19 11:30:43 +0100836 char *st1 = pars->token;
837 int N = pars->N;
838 long from = pars -> from;
839 unsigned long upto = pars -> upto;
840 char file_name[max_size], st[100][max_size], *sep;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100841 float dist, len, vec[max_size];
842 long long a, b, c, d, cn, *bi;
Marc Kupietz48c29682016-03-19 11:30:43 +0100843 char ch;
844 knn *nbs = NULL;
845 wordlist *wl = pars->wl;
846
Marc Kupietzc55c8872017-12-01 23:27:10 +0100847 collocator *best = pars->best;
Marc Kupietz48c29682016-03-19 11:30:43 +0100848
849 float worstbest=-1;
850
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100851 for (a = 0; a < N; a++) best[a].activation = 0;
Marc Kupietz48c29682016-03-19 11:30:43 +0100852 a = 0;
853 bi = wl->wordi;
854 cn = wl->length;
855 sep = wl->sep;
856 b = bi[0];
857 c = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100858 if (b == -1) {
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100859 N = 0;
860 goto end;
861 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200862 for (a = 0; a < size; a++) vec[a] = 0;
863 for (b = 0; b < cn; b++) {
864 if (bi[b] == -1) continue;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100865 if(b>0 && sep[b-1] == '-')
866 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
867 else
868 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200869 }
870 len = 0;
871 for (a = 0; a < size; a++) len += vec[a] * vec[a];
872 len = sqrt(len);
873 for (a = 0; a < size; a++) vec[a] /= len;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100874 for (a = 0; a < N; a++) best[a].activation = -1;
Marc Kupietz000ad862016-02-26 14:59:12 +0100875 for (c = from; c < upto; c++) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200876 if(garbage && garbage[c]) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200877 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +0100878// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +0100879// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
880// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200881 dist = 0;
882 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100883 if(dist > worstbest) {
884 for (a = 0; a < N; a++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100885 if (dist > best[a].activation) {
886 memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator));
887 best[a].activation = dist;
888 best[a].wordi = c;
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100889 break;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200890 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200891 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100892 worstbest = best[N-1].activation;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200893 }
894 }
Marc Kupietz34020dc2016-02-25 08:44:19 +0100895
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100896end:
Marc Kupietz000ad862016-02-26 14:59:12 +0100897 pthread_exit(nbs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200898}
899
Marc Kupietze0e42132017-11-24 16:44:34 +0100900int cmp_activation (const void * a, const void * b) {
901 float fb = ((collocator *)a)->activation;
902 float fa = ((collocator *)b)->activation;
903 return (fa > fb) - (fa < fb);
904}
905
906int cmp_probability (const void * a, const void * b) {
907 float fb = ((collocator *)a)->probability;
908 float fa = ((collocator *)b)->probability;
909 return (fa > fb) - (fa < fb);
910}
911
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100912
Marc Kupietzac707b32018-12-20 11:36:38 +0100913SV *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 +0100914 HV *result = newHV();
Marc Kupietz7631e022019-01-25 12:04:42 +0100915 float *target_sums=NULL, vec[max_size];
Marc Kupietza5f60042017-05-04 10:38:12 +0200916 long long old_words;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100917 long a, b, c, d, slice;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100918 knn *para_nbs[MAX_THREADS];
919 knn *syn_nbs[MAX_THREADS];
Marc Kupietz000ad862016-02-26 14:59:12 +0100920 knnpars pars[MAX_THREADS];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100921 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
Marc Kupietz48c29682016-03-19 11:30:43 +0100922 wordlist *wl;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200923 int syn_threads = (M2? window * 2 : 0);
Marc Kupietzac707b32018-12-20 11:36:38 +0100924 int para_threads = (no_similar_profiles? 0 : num_threads - syn_threads);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100925
Marc Kupietz7631e022019-01-25 12:04:42 +0100926 collocator *best = NULL;
927 posix_memalign((void **) &best, 128, 10 * (N>=200? N : 200) * sizeof(collocator));
928 memset(best, 0, (N>=200? N : 200) * sizeof(collocator));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100929
Marc Kupietz000ad862016-02-26 14:59:12 +0100930 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
931
Marc Kupietzd5d05732018-01-30 11:57:35 +0100932 if(cutoff < 1 || cutoff > words)
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100933 cutoff=words;
934
Marc Kupietza2e64502016-04-27 09:53:51 +0200935 wl = getTargetWords(st1, search_backw);
Marc Kupietzf9ac54e2017-11-21 09:22:29 +0100936 if(wl == NULL || wl->length < 1)
Marc Kupietz271e2a42016-03-22 11:37:43 +0100937 goto end;
Marc Kupietz48c29682016-03-19 11:30:43 +0100938
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100939 old_words = cutoff;
Marc Kupietz3082fd02019-01-09 14:54:06 +0100940 slice = cutoff / para_threads;
Marc Kupietza5f60042017-05-04 10:38:12 +0200941
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100942 a = posix_memalign((void **) &target_sums, 128, cutoff * sizeof(float));
Marc Kupietz7631e022019-01-25 12:04:42 +0100943 memset(target_sums, 0, cutoff * sizeof(float));
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100944
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200945 printf("Starting %d threads\n", para_threads);
946 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100947 for(a=0; a < para_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100948 pars[a].cutoff = cutoff;
Marc Kupietz000ad862016-02-26 14:59:12 +0100949 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100950 pars[a].wl = wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100951 pars[a].N = N;
Marc Kupietzc55c8872017-12-01 23:27:10 +0100952 pars[a].best = &best[N*a];
Marc Kupietz3082fd02019-01-09 14:54:06 +0100953 if(merge_words == 0 || search_backw == 0) {
Marc Kupietz1f0f7802019-01-03 16:23:29 +0100954 pars[a].from = a*slice;
955 pars[a].upto = ((a+1)*slice > cutoff? cutoff : (a+1) * slice);
956 } else {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100957 pars[a].from = merge_words + a * slice;
958 pars[a].upto = merge_words + ((a+1)*slice > cutoff? cutoff : (a+1) * slice);
Marc Kupietz1f0f7802019-01-03 16:23:29 +0100959 }
960 printf("From: %ld, Upto: %ld\n", pars[a].from, pars[a].upto);
Marc Kupietz000ad862016-02-26 14:59:12 +0100961 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
962 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200963 if(M2) {
964 for(a=0; a < syn_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100965 pars[a + para_threads].cutoff = cutoff;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200966 pars[a + para_threads].target_sums = target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100967 pars[a + para_threads].window_sums = window_sums;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200968 pars[a + para_threads].wl = wl;
969 pars[a + para_threads].N = N;
970 pars[a + para_threads].from = a;
971 pars[a + para_threads].upto = a+1;
972 pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *) &pars[a + para_threads]);
973 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100974 }
975 printf("Waiting for para threads to join\n");
976 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100977 for (a = 0; a < para_threads; a++) pthread_join(pt[a], (void *) &para_nbs[a]);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100978 printf("Para threads joint\n");
979 fflush(stdout);
Marc Kupietz000ad862016-02-26 14:59:12 +0100980
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200981 /* if(!syn_nbs[0]) */
982 /* goto end; */
Marc Kupietz000ad862016-02-26 14:59:12 +0100983
Marc Kupietzc55c8872017-12-01 23:27:10 +0100984 qsort(best, N*para_threads, sizeof(collocator), cmp_activation);
Marc Kupietz000ad862016-02-26 14:59:12 +0100985
Marc Kupietz000ad862016-02-26 14:59:12 +0100986
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100987 long long chosen[MAX_NEIGHBOURS];
988 printf("N: %ld\n", N);
989
Marc Kupietz271e2a42016-03-22 11:37:43 +0100990 AV* array = newAV();
Marc Kupietzd91212f2017-11-13 10:05:09 +0100991 int i, j;
Marc Kupietza5f60042017-05-04 10:38:12 +0200992 int l1_words=0, l2_words=0;
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100993
994 for (a = 0, i = 0; i < N && a < N*para_threads; a++) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100995 int filtered=0;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100996 long long c = best[a].wordi;
Marc Kupietze8b9dd22019-01-03 17:55:59 +0100997 if ((merge_words && dedupe && i > 1) || (!merge_words && dedupe && i > 0)) {
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100998 for (j=0; j<i && !filtered; j++)
999 if (strcasestr(&vocab[c * max_w], &vocab[chosen[j] * max_w]) ||
1000 strcasestr(&vocab[chosen[j] * max_w], &vocab[c * max_w])) {
1001 printf("filtering %s %s\n", &vocab[chosen[j] * max_w], &vocab[c * max_w]);
Marc Kupietzd91212f2017-11-13 10:05:09 +01001002 filtered = 1;
1003 }
1004 if(filtered)
1005 continue;
1006 }
Marc Kupietz3082fd02019-01-09 14:54:06 +01001007
1008
1009 if(0 && merge_words > 0) {
Marc Kupietza5f60042017-05-04 10:38:12 +02001010 if(c >= merge_words) {
1011 if(l1_words > N / 2)
1012 continue;
1013 else
1014 l1_words++;
1015 } else {
1016 if(l2_words > N / 2)
1017 continue;
1018 else
1019 l2_words++;
1020 }
1021 }
Marc Kupietz3082fd02019-01-09 14:54:06 +01001022
1023// printf("%s l1:%d l2:%d i:%d a:%ld\n", &vocab[c * max_w], l1_words, l2_words, i, a);
1024// fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001025 HV* hash = newHV();
Marc Kupietza5f60042017-05-04 10:38:12 +02001026 SV* word = newSVpvf(&vocab[c * max_w], 0);
Marc Kupietzd0d3e912017-12-01 22:09:43 +01001027 chosen[i] = c;
Marc Kupietz271e2a42016-03-22 11:37:43 +01001028 if(latin_enc == 0) SvUTF8_on(word);
Marc Kupietza5f60042017-05-04 10:38:12 +02001029 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001030 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001031 hv_store(hash, "dist", strlen("dist"), newSVnv(best[a].activation), 0);
1032 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001033 AV *vector = newAV();
1034 for (b = 0; b < size; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001035 av_push(vector, newSVnv(M[b + best[a].wordi * size]));
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001036 }
Marc Kupietz271e2a42016-03-22 11:37:43 +01001037 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
1038 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietza5f60042017-05-04 10:38:12 +02001039 i++;
Marc Kupietz271e2a42016-03-22 11:37:43 +01001040 }
1041 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz7631e022019-01-25 12:04:42 +01001042
Marc Kupietz50485ba2016-03-23 09:13:14 +01001043 for(b=0; b < MAX_NEIGHBOURS; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001044 best[b].wordi = -1L;
1045 best[b].activation = 0;
1046 best[b].probability = 0;
1047 best[b].position = 0;
1048 best[b].activation_sum = 0;
Marc Kupietz7631e022019-01-25 12:04:42 +01001049 memset(best[b].heat, 0, sizeof(float)*16);
Marc Kupietz50485ba2016-03-23 09:13:14 +01001050 }
1051
Marc Kupietza77acce2017-11-30 16:59:07 +01001052 float total_activation = 0;
1053
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001054 if (M2) {
1055 printf("Waiting for syn threads to join\n");
1056 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001057 for (a = 0; a < syn_threads; a++) pthread_join(pt[a+para_threads], (void *) &syn_nbs[a]);
Marc Kupietza77acce2017-11-30 16:59:07 +01001058 for (a = 0; a <= syn_threads; a++) {
Marc Kupietz63872182018-03-12 09:44:49 +01001059 if(a == window) continue;
Marc Kupietza77acce2017-11-30 16:59:07 +01001060 total_activation += window_sums[a];
1061 printf("window pos: %d, sum: %f\n", a, window_sums[a]);
1062 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001063 printf("syn threads joint\n");
1064 fflush(stdout);
Marc Kupietz50485ba2016-03-23 09:13:14 +01001065
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001066 for(b=0; b < syn_nbs[0]->length; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001067 memcpy(best + b, &syn_nbs[0]->best[b], sizeof(collocator));
1068 best[b].position = -1; // syn_nbs[0]->pos[b];
1069 best[b].activation_sum = target_sums[syn_nbs[0]->best[b].wordi];
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001070 best[b].max_activation = 0.0;
Marc Kupietz4116b432017-12-06 14:15:32 +01001071 best[b].average = 0.0;
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001072 best[b].probability = 0.0;
Marc Kupietza77acce2017-11-30 16:59:07 +01001073 best[b].cprobability = syn_nbs[0]->best[b].cprobability;
Marc Kupietz7631e022019-01-25 12:04:42 +01001074 memset(best[b].heat, 0, sizeof(float)*16);
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001075 }
Marc Kupietz30ca4342017-11-22 21:21:20 +01001076
1077 float best_window_sum[MAX_NEIGHBOURS];
1078 int found_index=0, i=0, j, w;
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001079 for(a=0; a < syn_threads; a++) {
1080 for(b=0; b < syn_nbs[a]->length; b++) {
1081 for(i=0; i < found_index; i++)
1082 if(best[i].wordi == syn_nbs[a]->best[b].wordi)
1083 break;
1084 if(i >= found_index) {
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001085 best[found_index].max_activation = 0.0;
Marc Kupietz4116b432017-12-06 14:15:32 +01001086 best[found_index].average = 0.0;
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001087 best[found_index].probability = 0.0;
Marc Kupietz7631e022019-01-25 12:04:42 +01001088 memset(best[found_index].heat, 0, sizeof(float)*16);
Marc Kupietza77acce2017-11-30 16:59:07 +01001089 best[found_index].cprobability = syn_nbs[a]->best[b].cprobability;
1090 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 +01001091 best[found_index++].wordi = syn_nbs[a]->best[b].wordi;
1092 // printf("found: %s\n", &vocab[syn_nbs[a]->index[b] * max_w]);
Marc Kupietz30ca4342017-11-22 21:21:20 +01001093 }
1094 }
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001095 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001096 sort_by =0; // ALWAYS AUTO-FOCUS
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001097 if(sort_by != 1 && sort_by != 2) { // sort by auto focus mean
Marc Kupietz30ca4342017-11-22 21:21:20 +01001098 printf("window: %d - syn_threads: %d, %d\n", window, syn_threads, (1 << syn_threads) -1);
Marc Kupietzbd41da32017-11-24 10:26:43 +01001099 int wpos;
Marc Kupietz4116b432017-12-06 14:15:32 +01001100 int bits_set = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +01001101 for(i=0; i < found_index; i++) {
Marc Kupietz4116b432017-12-06 14:15:32 +01001102 best[i].activation = best[i].probability = best[i].average = best[i].cprobability_sum = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +01001103 for(w=1; w < (1 << syn_threads); w++) { // loop through all possible windows
Marc Kupietz4116b432017-12-06 14:15:32 +01001104 float word_window_sum = 0, word_window_average=0, word_cprobability_sum=0, word_activation_sum = 0, total_window_sum = 0;
1105 bits_set = 0;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001106 for(a=0; a < syn_threads; a++) {
Marc Kupietz30ca4342017-11-22 21:21:20 +01001107 if((1 << a) & w) {
Marc Kupietzbd41da32017-11-24 10:26:43 +01001108 wpos = (a >= window? a+1 : a);
1109 total_window_sum += window_sums[wpos];
Marc Kupietz30ca4342017-11-22 21:21:20 +01001110 }
1111 }
Marc Kupietzbd41da32017-11-24 10:26:43 +01001112// printf("%d window-sum %f\n", w, total_window_sum);
1113 for(a=0; a < syn_threads; a++) {
1114 if((1 << a) & w) {
1115 wpos = (a >= window? a+1 : a);
1116 bits_set++;
1117 for(b=0; b < syn_nbs[a]->length; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001118 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
Marc Kupietza77acce2017-11-30 16:59:07 +01001119// float acti = syn_nbs[a]->best[b].activation / total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001120// 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 +01001121// word_window_sum += syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1122// 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 +01001123
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001124 word_window_sum += syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
Marc Kupietza77acce2017-11-30 16:59:07 +01001125// word_window_sum += acti - (word_window_sum * acti); syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1126
Marc Kupietz4116b432017-12-06 14:15:32 +01001127 word_window_average += syn_nbs[a]->best[b].activation; // - word_window_average * syn_nbs[a]->best[b].activation; // conormalied activation sum
1128 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 +01001129 word_activation_sum += syn_nbs[a]->best[b].activation;
1130 if(syn_nbs[a]->best[b].activation > best[i].max_activation)
1131 best[i].max_activation = syn_nbs[a]->best[b].activation;
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +01001132 if(syn_nbs[a]->best[b].activation > best[i].heat[wpos] )
Marc Kupietz728b8ed2017-12-02 11:13:49 +01001133 best[i].heat[wpos] = syn_nbs[a]->best[b].activation;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001134 }
1135 }
1136 }
Marc Kupietz4116b432017-12-06 14:15:32 +01001137 if(bits_set) {
1138 word_window_average /= bits_set;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001139// word_activation_sum /= bits_set;
1140// word_window_sum /= bits_set;
Marc Kupietz4116b432017-12-06 14:15:32 +01001141 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001142
1143 word_window_sum /= total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001144
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001145 if(word_window_sum > best[i].probability) {
Marc Kupietz4116b432017-12-06 14:15:32 +01001146// best[i].position = w;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001147 best[i].probability = word_window_sum;
Marc Kupietz30ca4342017-11-22 21:21:20 +01001148 }
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001149
Marc Kupietz4116b432017-12-06 14:15:32 +01001150 if(word_cprobability_sum > best[i].cprobability_sum) {
1151 best[i].position = w;
1152 best[i].cprobability_sum = word_cprobability_sum;
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001153 }
Marc Kupietz4116b432017-12-06 14:15:32 +01001154
1155 best[i].average = word_window_average;
1156// best[i].activation = word_activation_sum;
1157 }
Marc Kupietz30ca4342017-11-22 21:21:20 +01001158 }
Marc Kupietze0e42132017-11-24 16:44:34 +01001159 qsort(best, found_index, sizeof(collocator), cmp_probability);
Marc Kupietz30ca4342017-11-22 21:21:20 +01001160// for(i=0; i < found_index; i++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001161// 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 +01001162// }
1163
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001164 } else if(sort_by == 1) { // responsiveness any window position
1165 int wpos;
1166 for(i=0; i < found_index; i++) {
1167 float word_window_sum = 0, word_activation_sum = 0, total_window_sum = 0;
1168 for(a=0; a < syn_threads; a++) {
1169 wpos = (a >= window? a+1 : a);
1170 for(b=0; b < syn_nbs[a]->length; b++)
1171 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
1172 best[i].probability += syn_nbs[a]->best[b].probability;
1173 if(syn_nbs[a]->best[b].activation > 0.25)
1174 best[i].position |= 1 << wpos;
1175 if(syn_nbs[a]->best[b].activation > best[i].activation) {
1176 best[i].activation = syn_nbs[a]->best[b].activation;
1177 }
1178 }
1179 }
1180 }
1181 qsort(best, found_index, sizeof(collocator), cmp_activation);
1182 } else if(sort_by == 2) { // single window position
Marc Kupietz30ca4342017-11-22 21:21:20 +01001183 for(a=1; a < syn_threads; a++) {
1184 for(b=0; b < syn_nbs[a]->length; b++) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001185 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001186 if(syn_nbs[a]->best[b].activation > best[c].activation) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001187 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001188 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001189 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001190 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
1191 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 +02001192 break;
Marc Kupietz6d9a6782016-03-23 17:25:25 +01001193 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001194 }
1195 }
1196 }
1197 } else { // sort by mean p
1198 for(a=1; a < syn_threads; a++) {
1199 for(b=0; b < syn_nbs[a]->length; b++) {
1200 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001201 if(target_sums[syn_nbs[a]->best[b].wordi] > best[c].activation_sum) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001202 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001203 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001204 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001205 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
1206 best[c].position = (1 << 2*window) - 1; // syn_nbs[a]->pos[b];
1207 best[c].activation_sum = target_sums[syn_nbs[a]->best[b].wordi];
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001208 break;
1209 }
Marc Kupietz271e2a42016-03-22 11:37:43 +01001210 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +01001211 }
1212 }
1213 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001214 array = newAV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001215 for (a = 0, i=0; a < MAX_NEIGHBOURS && best[a].wordi >= 0; a++) {
1216 long long c = best[a].wordi;
Marc Kupietza77acce2017-11-30 16:59:07 +01001217/*
Marc Kupietzd91212f2017-11-13 10:05:09 +01001218 if (dedupe) {
1219 int filtered=0;
1220 for (j=0; j<i; j++)
1221 if (strcasestr(&vocab[c * max_w], chosen[j]) ||
1222 strcasestr(chosen[j], &vocab[c * max_w])) {
Marc Kupietza77acce2017-11-30 16:59:07 +01001223 printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]);
1224 filtered = 1;
1225 }
Marc Kupietzd91212f2017-11-13 10:05:09 +01001226 if(filtered)
1227 continue;
1228 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001229*/
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001230 chosen[i++]=c;
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001231 HV* hash = newHV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001232 SV* word = newSVpvf(&vocab[best[a].wordi * max_w], 0);
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001233 AV* heat = newAV();
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001234 if(latin_enc == 0) SvUTF8_on(word);
1235 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001236 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietz4116b432017-12-06 14:15:32 +01001237 hv_store(hash, "average", strlen("average"), newSVnv(best[a].average), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001238 hv_store(hash, "prob", strlen("prob"), newSVnv(best[a].probability), 0);
Marc Kupietz4116b432017-12-06 14:15:32 +01001239 hv_store(hash, "cprob", strlen("cprob"), newSVnv(best[a].cprobability_sum), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001240 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 +01001241 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 +01001242 hv_store(hash, "pos", strlen("pos"), newSVnv(best[a].position), 0);
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001243 best[a].heat[5]=0;
1244 for(i=10; i >= 0; i--) av_push(heat, newSVnv(best[a].heat[i]));
1245 hv_store(hash, "heat", strlen("heat"), newRV_noinc((SV*)heat), 0);
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001246 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietz271e2a42016-03-22 11:37:43 +01001247 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001248 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001249 }
Marc Kupietz000ad862016-02-26 14:59:12 +01001250end:
Marc Kupietz257a93d2019-01-03 17:55:22 +01001251 // words = old_words; // why was this here?
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001252 free(best);
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001253 return newRV_noinc((SV*)result);
Marc Kupietz000ad862016-02-26 14:59:12 +01001254}
Marc Kupietz7bc85fd2016-02-24 11:42:41 +01001255
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001256int dump_vecs(char *fname) {
1257 long i, j;
1258 FILE *f;
Marc Kupietz0a68a792018-12-20 11:41:45 +01001259 if(words>100000)
1260 words=100000;
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001261
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001262 if((f=fopen(fname, "w")) == NULL) {
1263 fprintf(stderr, "cannot open %s for writing\n", fname);
1264 return(-1);
1265 }
1266 fprintf(f, "%lld %lld\n", words, size);
1267 for (i=0; i < words; i++) {
1268 fprintf(f, "%s ", &vocab[i * max_w]);
1269 for(j=0; j < size - 1; j++)
1270 fprintf(f, "%f ", M[i*size + j]);
1271 fprintf(f, "%f\n", M[i*size + j]);
1272 }
1273 fclose(f);
1274 return(0);
1275}
Marc Kupietzdc22b982015-10-09 09:19:34 +02001276
Marc Kupietzfa194262018-06-05 09:39:32 +02001277int dump_for_numpy(char *fname) {
1278 long i, j;
1279 FILE *f;
1280 /* if(words>200000) */
1281 /* words=200000; */
1282
1283 if((f=fopen(fname, "w")) == NULL) {
1284 fprintf(stderr, "cannot open %s for writing\n", fname);
1285 return(-1);
1286 }
1287 for (i=0; i < words; i++) {
1288 for(j=0; j < size - 1; j++)
1289 fprintf(f, "%f\t", M[i*size + j]);
1290 fprintf(f, "%f\n", M[i*size + j]);
1291 }
1292 fclose(f);
Marc Kupietz7631e022019-01-25 12:04:42 +01001293 return(0);
Marc Kupietzfa194262018-06-05 09:39:32 +02001294}