blob: b288580550eb961d579aa0236f10ab0df204797a [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@.*/@@;
110 s@\..*@@;
111 return $_;
112}
113
Marc Kupietz19c68242018-03-12 09:42:21 +0100114sub getClassicCollocatorsCached {
115 my ($c, $word) = @_;
116 if(!$cccache{$word}) {
117 $cccache{$word} = getClassicCollocators($word);
118 } else {
119 $c->app->log->info("Getting classic collocators for $word from cache.");
120 }
121 return $cccache{$word};
122}
123
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100124sub getSimilarProfilesCached {
125 my ($c, $word) = @_;
126 if(!$spcache{$word}) {
127 $spcache{$word} = getSimilarProfiles($word);
128 } else {
129 $c->app->log->info("Getting similar profiles for $word from cache:");
130 print $spcache{$word};
131 }
132 return $spcache{$word};
133}
134
Marc Kupietz66bfd952017-12-11 09:59:45 +0100135post '/derekovecs/getVecsByRanks' => sub {
136 my $self = shift;
137 my $vec = getVecs($self->req->json);
138 $self->render(json => $vec);
139};
140
Marc Kupietze13a3552018-01-25 08:48:34 +0100141any '*/getClassicCollocators' => sub {
Marc Kupietze243efd2018-01-11 22:19:24 +0100142 my $self = shift;
Marc Kupietz19c68242018-03-12 09:42:21 +0100143 $self->render(data => getClassicCollocatorsCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
Marc Kupietze243efd2018-01-11 22:19:24 +0100144};
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 Kupietza51dcfa2018-03-19 16:22:05 +0100151any '*/getSimilarProfiles' => sub {
152 my $self = shift;
153 $self->render(data => getSimilarProfilesCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
154};
155
Marc Kupietzc987fa82018-03-21 12:14:25 +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 Kupietzdf3d4b52017-11-29 16:57:27 +0100161get '*/img/*' => sub {
162 my $c = shift;
163 my $url = $c->req->url;
164 $url =~ s@/derekovecs@@g;
165 $c->app->log->info("GET: " . $url);
166 $c->reply->static($url);
167};
168
Marc Kupietzdc22b982015-10-09 09:19:34 +0200169get '/' => sub {
170 my $c = shift;
Marc Kupietza5f60042017-05-04 10:38:12 +0200171 $c->app->log->info("get: ".$c->req->url->to_abs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200172 my $word=$c->param('word');
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100173 my $no_nbs=$c->param('n') || 100;
174 my $no_iterations=$c->param('N') || 2000;
Marc Kupietzd4227392016-03-01 16:45:12 +0100175 my $perplexity=$c->param('perplexity') || 20;
Marc Kupietzc4d62f82016-03-01 11:04:24 +0100176 my $epsilon=$c->param('epsilon') || 5;
Marc Kupietzd7aea722016-03-02 11:59:12 +0100177 my $som=$c->param('som') || 0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200178 my $searchBaseVocabFirst=$c->param('sbf') || 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100179 my $sort=$c->param('sort') || 0;
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100180 my $csv=$c->param('csv') || 0;
Marc Kupietzb613b052016-04-28 14:11:59 +0200181 my $json=$c->param('json') || 0;
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +0100182 my $cutoff=$c->param('cutoff') || 500000;
Marc Kupietzd91212f2017-11-13 10:05:09 +0100183 my $dedupe=$c->param('dedupe') || 0;
Marc Kupietzac707b32018-12-20 11:36:38 +0100184 my $nosp=$c->param('nosp') || 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100185 my $res;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100186 my @lists;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100187 my @collocations;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100188 if(defined($word) && $word !~ /^\s*$/) {
189 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100190 $word =~ s/\s+/ /g;
Marc Kupietz3082fd02019-01-09 14:54:06 +0100191 if($opt_m && $word !~ /\|/) {
192 $word .= "|$word";
193 }
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100194 for my $w (split(' *\| *', $word)) {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100195 if($opt_m) {
196 if($searchBaseVocabFirst) {
197 $searchBaseVocabFirst=0;
198 } else {
199 $searchBaseVocabFirst=1;
200 }
201 }
202 if ($cache{$w.$cutoff.$no_nbs.$sort.$dedupe,$searchBaseVocabFirst}) {
Marc Kupietz15987412017-11-07 15:56:58 +0100203 $c->app->log->info("Getting $w results from cache");
Marc Kupietz3082fd02019-01-09 14:54:06 +0100204 $res = $cache{$w.$cutoff.$no_nbs.$sort.$dedupe.$searchBaseVocabFirst}
Marc Kupietza5b90152016-03-15 17:39:19 +0100205 } else {
Marc Kupietz15987412017-11-07 15:56:58 +0100206 $c->app->log->info('Looking for neighbours of '.$w);
207 if($opt_i) {
Marc Kupietzac707b32018-12-20 11:36:38 +0100208 $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp);
Marc Kupietz15987412017-11-07 15:56:58 +0100209 } else {
Marc Kupietzac707b32018-12-20 11:36:38 +0100210 $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp);
Marc Kupietz15987412017-11-07 15:56:58 +0100211 }
Marc Kupietz2dd2dd72017-12-01 22:08:14 +0100212 $cache{$w.$cutoff.$no_nbs.$sort.$dedupe} = $res;
Marc Kupietza5b90152016-03-15 17:39:19 +0100213 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100214 push(@lists, $res->{paradigmatic});
Marc Kupietz15987412017-11-07 15:56:58 +0100215 }
216 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100217 $word =~ s/ *\| */ | /g;
Marc Kupietzb613b052016-04-28 14:11:59 +0200218 if($json) {
219 return $c->render(json => {word => $word, list => \@lists, collocators=>$res->{syntagmatic}});
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100220 } elsif($csv) {
221 my $csv_data="";
222 for (my $i=0; $i <= $no_nbs; $i++) {
223 $csv_data .= $res->{paradigmatic}->[$i]->{word} . ", ";
224 }
225 for (my $i=0; $i < $no_nbs; $i++) {
226 $csv_data .= $res->{syntagmatic}->[$i]->{word} . ", ";
227 }
228 chop $csv_data;
229 chop $csv_data;
230 $csv_data .= "\n";
231 return $c->render(text=>$csv_data);
Marc Kupietzb613b052016-04-28 14:11:59 +0200232 } else {
Marc Kupietzc053d972019-01-10 10:41:51 +0100233 $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 +0200234 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200235};
236
Marc Kupietz30ca4342017-11-22 21:21:20 +0100237helper(bitvec2window => sub {
238 my ($self, $n) = @_;
239 my $str = unpack("B32", pack("N", $n));
240 $str =~ s/^\d{22}//;
241 $str =~ s/^(\d{5})/$1x/;
242 $str =~ s/0/·/g;
243 $str =~ s/1/+/g;
244 return $str;
245 });
246
Marc Kupietza5b90152016-03-15 17:39:19 +0100247$daemon->run; # app->start;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200248
249exit;
250
251__END__
252
253__C__
254#include <stdio.h>
255#include <string.h>
256#include <math.h>
257#include <malloc.h>
258#include <stdlib.h> //strlen
Marc Kupietzf0809762016-02-26 10:13:47 +0100259#include <sys/mman.h>
Marc Kupietz000ad862016-02-26 14:59:12 +0100260#include <pthread.h>
Marc Kupietze243efd2018-01-11 22:19:24 +0100261#include <collocatordb.h>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200262
263#define max_size 2000
264#define max_w 50
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100265#define MAX_NEIGHBOURS 1000
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100266#define MAX_WORDS -1
Marc Kupietz000ad862016-02-26 14:59:12 +0100267#define MAX_THREADS 100
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100268#define MAX_CC 50
269#define EXP_TABLE_SIZE 1000
270#define MAX_EXP 6
Marc Kupietz271e2a42016-03-22 11:37:43 +0100271#define MIN_RESP 0.50
Marc Kupietzdc22b982015-10-09 09:19:34 +0200272
273//the thread function
274void *connection_handler(void *);
Marc Kupietz000ad862016-02-26 14:59:12 +0100275
276typedef struct {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100277 long long wordi;
278 long position;
279 float activation;
Marc Kupietz4116b432017-12-06 14:15:32 +0100280 float average;
Marc Kupietza77acce2017-11-30 16:59:07 +0100281 float cprobability; // column wise probability
Marc Kupietz4116b432017-12-06 14:15:32 +0100282 float cprobability_sum;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100283 float probability;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100284 float activation_sum;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100285 float max_activation;
Marc Kupietz4116b432017-12-06 14:15:32 +0100286 float heat[16];
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100287} collocator;
288
289typedef struct {
290 collocator *best;
Marc Kupietz80abb442016-03-23 21:04:08 +0100291 int length;
Marc Kupietz000ad862016-02-26 14:59:12 +0100292} knn;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100293
Marc Kupietz000ad862016-02-26 14:59:12 +0100294typedef struct {
Marc Kupietz48c29682016-03-19 11:30:43 +0100295 long long wordi[MAX_NEIGHBOURS];
296 char sep[MAX_NEIGHBOURS];
297 int length;
298} wordlist;
299
300typedef struct {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100301 long cutoff;
Marc Kupietz48c29682016-03-19 11:30:43 +0100302 wordlist *wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100303 char *token;
304 int N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100305 long from;
Marc Kupietz000ad862016-02-26 14:59:12 +0100306 unsigned long upto;
Marc Kupietzc55c8872017-12-01 23:27:10 +0100307 collocator *best;
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100308 float *target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100309 float *window_sums;
Marc Kupietz000ad862016-02-26 14:59:12 +0100310} knnpars;
311
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100312typedef struct {
313 uint32_t index;
314 float value;
315} sparse_t;
316
317typedef struct {
318 uint32_t len;
319 sparse_t nbr[100];
320} profile_t;
321
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200322float *M, *M2=0L, *syn1neg_window, *expTable;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100323float *window_sums;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200324char *vocab;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200325char *garbage = NULL;
Marc Kupietze243efd2018-01-11 22:19:24 +0100326COLLOCATORDB *cdb = NULL;
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100327profile_t *sprofiles = NULL;
328size_t sprofiles_qty = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100329
Marc Kupietza2e64502016-04-27 09:53:51 +0200330long long words, size, merged_end;
Marc Kupietza5f60042017-05-04 10:38:12 +0200331long long merge_words = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100332int num_threads=20;
Marc Kupietza5b90152016-03-15 17:39:19 +0100333int latin_enc=0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100334int window;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200335
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100336/* load collocation profiles if file exists */
337int load_sprofiles(char *vecsname) {
338 char *basename = strdup(vecsname);
339 char *pos = strstr(basename, ".vecs");
340 if(pos)
341 *pos=0;
342
343 char binsprofiles_fname[256];
344 strcpy(binsprofiles_fname, basename);
345 strcat(binsprofiles_fname, ".sprofiles.bin");
346 FILE *fp = fopen(binsprofiles_fname, "rb");
347 if (fp == NULL) {
348 printf("Collocation profiles %s not found. No problem.\n", binsprofiles_fname);
349 return 0;
350 }
351 fseek(fp, 0L, SEEK_END);
352 size_t sz = ftell(fp);
353 fclose(fp);
354
355 int fd = open(binsprofiles_fname, O_RDONLY);
356 sprofiles = mmap(0, sz, PROT_READ, MAP_SHARED, fd, 0);
357 if (sprofiles == MAP_FAILED) {
358 close(fd);
359 fprintf(stderr, "Cannot mmap %s\n", binsprofiles_fname);
360 sprofiles = NULL;
361 return 0;
362 } else {
363 sprofiles_qty = sz / sizeof(profile_t);
364 fprintf(stderr, "Successfully mmaped %s containing similar profiles for %ld word forms.\n", binsprofiles_fname, sprofiles_qty);
365 }
366 return 1;
367}
368
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100369int init_net(char *file_name, char *net_name, int latin) {
Marc Kupietz67c20282016-02-26 09:42:00 +0100370 FILE *f, *binvecs, *binwords;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100371 int binwords_fd, binvecs_fd, net_fd, i;
Marc Kupietz82b02672016-02-26 12:32:25 +0100372 long long a, b, c, d, cn;
373 float len;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200374 double val;
Marc Kupietz82b02672016-02-26 12:32:25 +0100375
Marc Kupietz67c20282016-02-26 09:42:00 +0100376 char binvecs_fname[256], binwords_fname[256];
377 strcpy(binwords_fname, file_name);
378 strcat(binwords_fname, ".words");
379 strcpy(binvecs_fname, file_name);
380 strcat(binvecs_fname, ".vecs");
Marc Kupietzdc22b982015-10-09 09:19:34 +0200381
Marc Kupietza5b90152016-03-15 17:39:19 +0100382 latin_enc = latin;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200383 f = fopen(file_name, "rb");
384 if (f == NULL) {
385 printf("Input file %s not found\n", file_name);
386 return -1;
387 }
388 fscanf(f, "%lld", &words);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100389 if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200390 fscanf(f, "%lld", &size);
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100391 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) {
392 printf("Converting %s to memory mappable structures\n", file_name);
Marc Kupietzf0809762016-02-26 10:13:47 +0100393 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
394 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
395 if (M == NULL) {
396 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
397 return -1;
398 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200399 if(strstr(file_name, ".txt")) {
400 for (b = 0; b < words; b++) {
401 a = 0;
402 while (1) {
403 vocab[b * max_w + a] = fgetc(f);
404 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
405 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
406 }
407 vocab[b * max_w + a] = 0;
408 len = 0;
409 for (a = 0; a < size; a++) {
410 fscanf(f, "%lf", &val);
411 M[a + b * size] = val;
412 len += val * val;
413 }
414 len = sqrt(len);
415 for (a = 0; a < size; a++) M[a + b * size] /= len;
416 }
417 } else {
418 for (b = 0; b < words; b++) {
419 a = 0;
420 while (1) {
421 vocab[b * max_w + a] = fgetc(f);
422 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
423 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
424 }
425 vocab[b * max_w + a] = 0;
426 fread(&M[b * size], sizeof(float), size, f);
427 len = 0;
428 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
429 len = sqrt(len);
430 for (a = 0; a < size; a++) M[a + b * size] /= len;
431 }
432 }
Marc Kupietz67c20282016-02-26 09:42:00 +0100433 if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) {
434 fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs);
435 fclose(binvecs);
436 fwrite(vocab, sizeof(char), (long long)words * max_w, binwords);
437 fclose(binwords);
438 }
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100439 }
440 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
441 M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0);
442 vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0);
443 if (M == MAP_FAILED || vocab == MAP_FAILED) {
444 close(binvecs_fd);
445 close(binwords_fd);
446 fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname);
447 exit(-1);
448 }
449 } else {
450 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
451 exit(-1);
Marc Kupietz67c20282016-02-26 09:42:00 +0100452 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200453 fclose(f);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100454
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200455 if(net_name && strlen(net_name) > 0) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100456 if( (net_fd = open(net_name, O_RDONLY)) >= 0) {
457 window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2;
458 // lseek(net_fd, sizeof(float) * words * size, SEEK_SET);
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100459 // munmap(M, sizeof(float) * words * size);
460 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 +0200461 if (M2 == MAP_FAILED) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100462 close(net_fd);
463 fprintf(stderr, "Cannot mmap %s\n", net_name);
464 exit(-1);
465 }
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100466 syn1neg_window = M2 + words * size;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100467 } else {
468 fprintf(stderr, "Cannot open %s\n", net_name);
469 exit(-1);
470 }
471 fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window);
Marc Kupietze243efd2018-01-11 22:19:24 +0100472
473 char collocatordb_name[2048];
474 strcpy(collocatordb_name, net_name);
475 char *ext = rindex(collocatordb_name, '.');
476 if(ext) {
477 strcpy(ext, ".rocksdb");
478 if(access(collocatordb_name, R_OK) == 0) {
479 *ext = 0;
480 fprintf(stderr, "Opening collocator DB %s\n", collocatordb_name);
481 cdb = open_collocatordb(collocatordb_name);
482 }
483 }
484 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100485
486 expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float));
487 for (i = 0; i < EXP_TABLE_SIZE; i++) {
488 expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table
489 expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1)
490 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100491 window_sums = malloc(sizeof(float) * (window+1) * 2);
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100492
493 return 0;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200494}
495
Marc Kupietza2e64502016-04-27 09:53:51 +0200496long mergeVectors(char *file_name){
497 FILE *f, *binvecs, *binwords;
498 int binwords_fd, binvecs_fd, net_fd, i;
499 long long a, b, c, d, cn;
500 float len;
501 float *merge_vecs;
502 char *merge_vocab;
Marc Kupietza5f60042017-05-04 10:38:12 +0200503 /* long long merge_words, merge_size; */
504 long long merge_size;
Marc Kupietza2e64502016-04-27 09:53:51 +0200505
506 char binvecs_fname[256], binwords_fname[256];
507 strcpy(binwords_fname, file_name);
508 strcat(binwords_fname, ".words");
509 strcpy(binvecs_fname, file_name);
510 strcat(binvecs_fname, ".vecs");
511
512 f = fopen(file_name, "rb");
513 if (f == NULL) {
514 printf("Input file %s not found\n", file_name);
515 exit -1;
516 }
517 fscanf(f, "%lld", &merge_words);
518 fscanf(f, "%lld", &merge_size);
519 if(merge_size != size){
520 fprintf(stderr, "vectors must have the same length\n");
521 exit(-1);
522 }
523 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
524 merge_vecs = malloc(sizeof(float) * (words + merge_words) * size);
525 merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w);
526 if (merge_vecs == NULL || merge_vocab == NULL) {
527 close(binvecs_fd);
528 close(binwords_fd);
529 fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname);
530 exit(-1);
531 }
532 read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float));
533 read(binwords_fd, merge_vocab, merge_words * max_w);
534 } else {
535 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
536 exit(-1);
537 }
538 printf("Successfully reallocated memory\nMerging...\n");
539 fflush(stdout);
540 memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float));
541 memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w);
542 munmap(M, words * size * sizeof(float));
543 munmap(vocab, words * max_w);
544 M = merge_vecs;
545 vocab = merge_vocab;
546 merged_end = merge_words;
547 words += merge_words;
548 fclose(f);
549 printf("merged_end: %lld, words: %lld\n", merged_end, words);
Marc Kupietzebc131e2019-01-03 16:24:27 +0100550 printBiggestMergedDifferences();
Marc Kupietza2e64502016-04-27 09:53:51 +0200551 return((long) merged_end);
552}
553
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200554void filter_garbage() {
555 long i;
Marc Kupietzab591a82016-04-28 14:08:49 +0200556 unsigned char *w, previous, c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200557 garbage = malloc(words);
558 memset(garbage, 0, words);
559 for (i = 0; i < words; i++) {
560 w = vocab + i * max_w;
561 previous = 0;
Marc Kupietz969adfa2018-03-12 09:43:53 +0100562 if(strncmp("quot", w, 4) == 0) {
563 garbage[i]=1;
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100564// printf("Gargabe: %s\n", vocab + i * max_w);
Marc Kupietz969adfa2018-03-12 09:43:53 +0100565 } else {
566 while((c = *w++) && !garbage[i]) {
567 if( ((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) ||
568 (previous == '-' && (c & 32)) ||
569 (previous == 0xc2 && (c == 0xa4 || c == 0xb6 )) ||
570 (previous == 'q' && c == 'u' && *(w) == 'o' && *(w+1) == 't') || /* quot */
571 c == '<'
572 ) {
573 garbage[i]=1;
574 continue;
575 }
576 previous = c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200577 }
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200578 }
579 }
580 return;
581}
582
Marc Kupietzac707b32018-12-20 11:36:38 +0100583
584knn *simpleGetCollocators(int word, int number, long cutoff, int *result) {
585 knnpars *pars = calloc(sizeof(knnpars), 1);
586 float *target_sums;
587 float *window_sums = malloc(sizeof(float) * (window+1) * 2);
588 pars->cutoff = (cutoff? cutoff : 300000);
589 long a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float));
590 for(a = 0; a < cutoff; a++)
591 target_sums[a] = 0;
592 pars->target_sums = target_sums;
593 pars->window_sums = window_sums;
594 pars->N = (number? number : 20);
595 pars->from = 0;
596 pars->upto = window * 2 -1;
597 knn *syn_nbs; // = (knn*) getCollocators(pars);
598 free(pars);
599 free(window_sums);
600 free(target_sums);
601 return syn_nbs;
602}
603
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100604void *getCollocators(void *args) {
605 knnpars *pars = args;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100606 int N = pars->N;
Marc Kupietz52702832019-01-15 17:55:52 +0100607
Marc Kupietz271e2a42016-03-22 11:37:43 +0100608 int cc = pars->wl->wordi[0];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100609 knn *nbs = NULL;
610 long window_layer_size = size * window * 2;
611 long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target;
612 float f, max_f, maxmax_f;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100613 float *target_sums, worstbest, wpos_sum;
614 collocator *best;
Marc Kupietzd5642582016-03-19 22:23:13 +0100615
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200616 if(M2 == NULL || cc == -1)
Marc Kupietzd5642582016-03-19 22:23:13 +0100617 return NULL;
618
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100619 a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100620 best = malloc(N * sizeof(collocator));
Marc Kupietz271e2a42016-03-22 11:37:43 +0100621 worstbest = MIN_RESP;
622
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100623 for (b = 0; b < pars->cutoff; b++)
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100624 target_sums[b]=0;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100625 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100626 best[b].wordi = -1;
627 best[b].probability = 1;
628 best[b].activation = worstbest;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100629 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100630
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100631 d = cc;
632 maxmax_f = -1;
633 maxmax_target = 0;
634
Marc Kupietz271e2a42016-03-22 11:37:43 +0100635 for (a = pars->from; a < pars->upto; a++) {
636 if(a >= window)
637 a++;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100638 wpos_sum = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100639 printf("window pos: %ld\n", a);
640 if (a != window) {
641 max_f = -1;
642 window_offset = a * size;
643 if (a > window)
644 window_offset -= size;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100645 for(target = 0; target < pars->cutoff; target ++) {
646 if(garbage && garbage[target]) continue;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100647 if(target == d)
648 continue;
649 f = 0;
650 for (c = 0; c < size; c++)
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100651 f += M2[d* size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100652 if (f < -MAX_EXP)
653 continue;
654 else if (f > MAX_EXP)
655 continue;
656 else
657 f = expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100658 wpos_sum += f;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100659
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100660 target_sums[target] += f;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100661 if(f > worstbest) {
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100662 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100663 if (f > best[b].activation) {
664 memmove(best + b + 1, best + b, (N - b -1) * sizeof(collocator));
665 best[b].activation = f;
666 best[b].wordi = target;
667 best[b].position = window-a;
Marc Kupietz33679a32016-03-22 08:49:39 +0100668 break;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100669 }
670 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100671 if(b == N - 1)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100672 worstbest = best[N-1].activation;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100673 }
674 }
675 printf("%d %.2f\n", max_target, max_f);
676 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
677 if(max_f > maxmax_f) {
678 maxmax_f = max_f;
679 maxmax_target = max_target;
680 }
Marc Kupietz33679a32016-03-22 08:49:39 +0100681 for (b = 0; b < N; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100682 if(best[b].position == window-a)
Marc Kupietza77acce2017-11-30 16:59:07 +0100683 best[b].cprobability = best[b].activation / wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100684 } else {
685 printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]);
686 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100687 pars->window_sums[a] = wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100688 }
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100689 for (b = 0; b < pars->cutoff; b++)
Marc Kupietza77acce2017-11-30 16:59:07 +0100690 pars->target_sums[b] += target_sums[b]; //(target_sums[b] / wpos_sum ) / (window * 2);
691 printf("Target-Summe von 0: %f\n", pars->target_sums[150298]);
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100692 free(target_sums);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100693 for(b=0; b<N && best[b].wordi >= 0; b++);; // THIS LOOP IS NEEDED (b...)
694// 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 +0100695// printf("\n");
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100696 nbs = malloc(sizeof(knn));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100697 nbs->best = best;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100698 nbs->length = b-1;
699 pthread_exit(nbs);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100700}
701
Marc Kupietz30ca4342017-11-22 21:21:20 +0100702
Marc Kupietz66bfd952017-12-11 09:59:45 +0100703AV *getVecs(AV *array) {
704 int i, b;
705 AV *result = newAV();
706 for (i=0; i<=av_len(array); i++) {
707 SV** elem = av_fetch(array, i, 0);
708 if (elem != NULL) {
709 long j = (long) SvNV(*elem);
710 AV *vector = newAV();
711 for (b = 0; b < size; b++) {
712 av_push(vector, newSVnv(M[b + j * size]));
713 }
714 av_push(result, newRV_noinc(vector));
715 }
716 }
717 return result;
718}
719
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100720char *getSimilarProfiles(long node) {
721 int i;
722 char buffer[120000];
723 char pair_buffer[2048];
724 buffer[0]='[';
725 buffer[1]=0;
726 if(node >= sprofiles_qty) {
727 printf("Not available in precomputed profile\n");
728 return(strdup("[{\"w\":\"not available\", \"v\":0}]\n"));
729 }
730
731 printf("******* %s ******\n", &vocab[max_w * node]);
732
733 for(i=0; i < 100 && i < sprofiles[node].len; i++) {
734 sprintf(pair_buffer, "{\"w\":\"%s\", \"v\":%f},", &vocab[max_w * (sprofiles[node].nbr[i].index)], sprofiles[node].nbr[i].value);
735 strcat(buffer, pair_buffer);
736 }
737 buffer[strlen(buffer)-1]=']';
738 strcat(buffer, "\n");
739 printf(buffer);
740 return(strdup(buffer));
741}
742
Marc Kupietze243efd2018-01-11 22:19:24 +0100743char *getClassicCollocators(long node) {
744 char *res = (cdb? strdup(get_collocators_as_json(cdb, node)) : "[]");
745 return res;
746}
747
Marc Kupietz0957d532019-01-03 17:54:00 +0100748wordlist *getTargetWords(char *st1, int search_backw) {
Marc Kupietz48c29682016-03-19 11:30:43 +0100749 wordlist *wl = malloc(sizeof(wordlist));
750 char st[100][max_size], sep[100];
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100751 long a, b=0, c=0, cn=0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200752 int unmerged;
753
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100754 while (1) {
755 st[cn][b] = st1[c];
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100756 b++;
757 c++;
758 st[cn][b] = 0;
759 if (st1[c] == 0) break;
760 if (st1[c] == ' ' || st1[c] == '-') {
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100761 sep[cn++] = st1[c];
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100762 b = 0;
763 c++;
764 }
765 }
766 cn++;
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100767 for (a = 0; a < cn; a++) {
768 if (search_backw) {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100769 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 +0100770 } else {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100771 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 +0100772 }
773 if (b == words) b = -1;
774 wl->wordi[a] = b;
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100775 if (b == -1) {
776 fprintf(stderr, "Out of dictionary word!\n");
777 cn--;
Marc Kupietz3082fd02019-01-09 14:54:06 +0100778 } else {
779 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 +0100780 }
781 }
Marc Kupietz48c29682016-03-19 11:30:43 +0100782 wl->length=cn;
783 return(wl);
784}
Marc Kupietz1f36dfa2019-01-03 16:18:12 +0100785
Marc Kupietzebc131e2019-01-03 16:24:27 +0100786void printBiggestMergedDifferences() {
787 float dist, len, vec[max_size];
788 long long a, b, c, d, cn, *bi;
789 char ch;
790 knn *nbs = NULL;
791 int N = 100;
792
793 printf("Looking for biggest distances between main and merged vectors ...\n");
794 collocator *best;
795 best = malloc(N * sizeof(collocator));
796 memset(best, 0, N * sizeof(collocator));
797
798 float worstbest=1000000;
799
800 for (a = 0; a < N; a++) best[a].activation = worstbest;
801
802 for (c = 0; c < 10000; c++) {
803 if(garbage && garbage[c]) continue;
804 a = 0;
805 dist = 0;
806 for (a = 0; a < size; a++) dist += M[a + c * size] * M[a + (c+merged_end) * size];
807 if(dist < worstbest) {
808 for (a = 0; a < N; a++) {
809 if (dist < best[a].activation) {
810 memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator));
811 best[a].activation = dist;
812 best[a].wordi = c;
813 break;
814 }
815 }
816 worstbest = best[N-1].activation;
817 }
818 }
819
820 printf("Most distant vectors for:\n ");
821 for (a = 0; a < N; a++) {
822 printf("%s ", &vocab[best[a].wordi * max_w]);
823 }
824 printf("\n");
825}
826
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100827void *_get_neighbours(void *arg) {
828 knnpars *pars = arg;
Marc Kupietz48c29682016-03-19 11:30:43 +0100829 char *st1 = pars->token;
830 int N = pars->N;
831 long from = pars -> from;
832 unsigned long upto = pars -> upto;
833 char file_name[max_size], st[100][max_size], *sep;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100834 float dist, len, vec[max_size];
835 long long a, b, c, d, cn, *bi;
Marc Kupietz48c29682016-03-19 11:30:43 +0100836 char ch;
837 knn *nbs = NULL;
838 wordlist *wl = pars->wl;
839
Marc Kupietzc55c8872017-12-01 23:27:10 +0100840 collocator *best = pars->best;
Marc Kupietz48c29682016-03-19 11:30:43 +0100841
842 float worstbest=-1;
843
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100844 for (a = 0; a < N; a++) best[a].activation = 0;
Marc Kupietz48c29682016-03-19 11:30:43 +0100845 a = 0;
846 bi = wl->wordi;
847 cn = wl->length;
848 sep = wl->sep;
849 b = bi[0];
850 c = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100851 if (b == -1) {
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100852 N = 0;
853 goto end;
854 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200855 for (a = 0; a < size; a++) vec[a] = 0;
856 for (b = 0; b < cn; b++) {
857 if (bi[b] == -1) continue;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100858 if(b>0 && sep[b-1] == '-')
859 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
860 else
861 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200862 }
863 len = 0;
864 for (a = 0; a < size; a++) len += vec[a] * vec[a];
865 len = sqrt(len);
866 for (a = 0; a < size; a++) vec[a] /= len;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100867 for (a = 0; a < N; a++) best[a].activation = -1;
Marc Kupietz000ad862016-02-26 14:59:12 +0100868 for (c = from; c < upto; c++) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200869 if(garbage && garbage[c]) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200870 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +0100871// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +0100872// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
873// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200874 dist = 0;
875 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100876 if(dist > worstbest) {
877 for (a = 0; a < N; a++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100878 if (dist > best[a].activation) {
879 memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator));
880 best[a].activation = dist;
881 best[a].wordi = c;
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100882 break;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200883 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200884 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100885 worstbest = best[N-1].activation;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200886 }
887 }
Marc Kupietz34020dc2016-02-25 08:44:19 +0100888
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100889end:
Marc Kupietz000ad862016-02-26 14:59:12 +0100890 pthread_exit(nbs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200891}
892
Marc Kupietze0e42132017-11-24 16:44:34 +0100893int cmp_activation (const void * a, const void * b) {
894 float fb = ((collocator *)a)->activation;
895 float fa = ((collocator *)b)->activation;
896 return (fa > fb) - (fa < fb);
897}
898
899int cmp_probability (const void * a, const void * b) {
900 float fb = ((collocator *)a)->probability;
901 float fa = ((collocator *)b)->probability;
902 return (fa > fb) - (fa < fb);
903}
904
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100905
Marc Kupietzac707b32018-12-20 11:36:38 +0100906SV *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 +0100907 HV *result = newHV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100908 float *target_sums, vec[max_size];
Marc Kupietza5f60042017-05-04 10:38:12 +0200909 long long old_words;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100910 long a, b, c, d, slice;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100911 knn *para_nbs[MAX_THREADS];
912 knn *syn_nbs[MAX_THREADS];
Marc Kupietz000ad862016-02-26 14:59:12 +0100913 knnpars pars[MAX_THREADS];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100914 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
Marc Kupietz48c29682016-03-19 11:30:43 +0100915 wordlist *wl;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200916 int syn_threads = (M2? window * 2 : 0);
Marc Kupietzac707b32018-12-20 11:36:38 +0100917 int para_threads = (no_similar_profiles? 0 : num_threads - syn_threads);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100918
Marc Kupietzc55c8872017-12-01 23:27:10 +0100919 collocator *best;
Marc Kupietz52702832019-01-15 17:55:52 +0100920 posix_memalign((void **) &best, 128, 10 * (N>=100? N : 100) * sizeof(collocator));
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +0100921 memset(best, 0, 10 * N * sizeof(collocator));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100922
Marc Kupietz000ad862016-02-26 14:59:12 +0100923 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
924
Marc Kupietzd5d05732018-01-30 11:57:35 +0100925 if(cutoff < 1 || cutoff > words)
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100926 cutoff=words;
927
Marc Kupietza2e64502016-04-27 09:53:51 +0200928 wl = getTargetWords(st1, search_backw);
Marc Kupietzf9ac54e2017-11-21 09:22:29 +0100929 if(wl == NULL || wl->length < 1)
Marc Kupietz271e2a42016-03-22 11:37:43 +0100930 goto end;
Marc Kupietz48c29682016-03-19 11:30:43 +0100931
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100932 old_words = cutoff;
Marc Kupietz3082fd02019-01-09 14:54:06 +0100933 slice = cutoff / para_threads;
Marc Kupietza5f60042017-05-04 10:38:12 +0200934
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100935 a = posix_memalign((void **) &target_sums, 128, cutoff * sizeof(float));
936 for(a = 0; a < cutoff; a++)
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100937 target_sums[a] = 0;
938
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200939 printf("Starting %d threads\n", para_threads);
940 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100941 for(a=0; a < para_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100942 pars[a].cutoff = cutoff;
Marc Kupietz000ad862016-02-26 14:59:12 +0100943 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100944 pars[a].wl = wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100945 pars[a].N = N;
Marc Kupietzc55c8872017-12-01 23:27:10 +0100946 pars[a].best = &best[N*a];
Marc Kupietz3082fd02019-01-09 14:54:06 +0100947 if(merge_words == 0 || search_backw == 0) {
Marc Kupietz1f0f7802019-01-03 16:23:29 +0100948 pars[a].from = a*slice;
949 pars[a].upto = ((a+1)*slice > cutoff? cutoff : (a+1) * slice);
950 } else {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100951 pars[a].from = merge_words + a * slice;
952 pars[a].upto = merge_words + ((a+1)*slice > cutoff? cutoff : (a+1) * slice);
Marc Kupietz1f0f7802019-01-03 16:23:29 +0100953 }
954 printf("From: %ld, Upto: %ld\n", pars[a].from, pars[a].upto);
Marc Kupietz000ad862016-02-26 14:59:12 +0100955 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
956 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200957 if(M2) {
958 for(a=0; a < syn_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100959 pars[a + para_threads].cutoff = cutoff;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200960 pars[a + para_threads].target_sums = target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100961 pars[a + para_threads].window_sums = window_sums;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200962 pars[a + para_threads].wl = wl;
963 pars[a + para_threads].N = N;
964 pars[a + para_threads].from = a;
965 pars[a + para_threads].upto = a+1;
966 pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *) &pars[a + para_threads]);
967 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100968 }
969 printf("Waiting for para threads to join\n");
970 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100971 for (a = 0; a < para_threads; a++) pthread_join(pt[a], (void *) &para_nbs[a]);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100972 printf("Para threads joint\n");
973 fflush(stdout);
Marc Kupietz000ad862016-02-26 14:59:12 +0100974
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200975 /* if(!syn_nbs[0]) */
976 /* goto end; */
Marc Kupietz000ad862016-02-26 14:59:12 +0100977
Marc Kupietzc55c8872017-12-01 23:27:10 +0100978 qsort(best, N*para_threads, sizeof(collocator), cmp_activation);
Marc Kupietz000ad862016-02-26 14:59:12 +0100979
Marc Kupietz000ad862016-02-26 14:59:12 +0100980
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100981 long long chosen[MAX_NEIGHBOURS];
982 printf("N: %ld\n", N);
983
Marc Kupietz271e2a42016-03-22 11:37:43 +0100984 AV* array = newAV();
Marc Kupietzd91212f2017-11-13 10:05:09 +0100985 int i, j;
Marc Kupietza5f60042017-05-04 10:38:12 +0200986 int l1_words=0, l2_words=0;
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100987
988 for (a = 0, i = 0; i < N && a < N*para_threads; a++) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100989 int filtered=0;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100990 long long c = best[a].wordi;
Marc Kupietze8b9dd22019-01-03 17:55:59 +0100991 if ((merge_words && dedupe && i > 1) || (!merge_words && dedupe && i > 0)) {
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100992 for (j=0; j<i && !filtered; j++)
993 if (strcasestr(&vocab[c * max_w], &vocab[chosen[j] * max_w]) ||
994 strcasestr(&vocab[chosen[j] * max_w], &vocab[c * max_w])) {
995 printf("filtering %s %s\n", &vocab[chosen[j] * max_w], &vocab[c * max_w]);
Marc Kupietzd91212f2017-11-13 10:05:09 +0100996 filtered = 1;
997 }
998 if(filtered)
999 continue;
1000 }
Marc Kupietz3082fd02019-01-09 14:54:06 +01001001
1002
1003 if(0 && merge_words > 0) {
Marc Kupietza5f60042017-05-04 10:38:12 +02001004 if(c >= merge_words) {
1005 if(l1_words > N / 2)
1006 continue;
1007 else
1008 l1_words++;
1009 } else {
1010 if(l2_words > N / 2)
1011 continue;
1012 else
1013 l2_words++;
1014 }
1015 }
Marc Kupietz3082fd02019-01-09 14:54:06 +01001016
1017// printf("%s l1:%d l2:%d i:%d a:%ld\n", &vocab[c * max_w], l1_words, l2_words, i, a);
1018// fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001019 HV* hash = newHV();
Marc Kupietza5f60042017-05-04 10:38:12 +02001020 SV* word = newSVpvf(&vocab[c * max_w], 0);
Marc Kupietzd0d3e912017-12-01 22:09:43 +01001021 chosen[i] = c;
Marc Kupietz271e2a42016-03-22 11:37:43 +01001022 if(latin_enc == 0) SvUTF8_on(word);
Marc Kupietza5f60042017-05-04 10:38:12 +02001023 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001024 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001025 hv_store(hash, "dist", strlen("dist"), newSVnv(best[a].activation), 0);
1026 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001027 AV *vector = newAV();
1028 for (b = 0; b < size; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001029 av_push(vector, newSVnv(M[b + best[a].wordi * size]));
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001030 }
Marc Kupietz271e2a42016-03-22 11:37:43 +01001031 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
1032 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietza5f60042017-05-04 10:38:12 +02001033 i++;
Marc Kupietz271e2a42016-03-22 11:37:43 +01001034 }
1035 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0);
1036
Marc Kupietz50485ba2016-03-23 09:13:14 +01001037 for(b=0; b < MAX_NEIGHBOURS; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001038 best[b].wordi = -1L;
1039 best[b].activation = 0;
1040 best[b].probability = 0;
1041 best[b].position = 0;
1042 best[b].activation_sum = 0;
Marc Kupietz50485ba2016-03-23 09:13:14 +01001043 }
1044
Marc Kupietza77acce2017-11-30 16:59:07 +01001045 float total_activation = 0;
1046
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001047 if (M2) {
1048 printf("Waiting for syn threads to join\n");
1049 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001050 for (a = 0; a < syn_threads; a++) pthread_join(pt[a+para_threads], (void *) &syn_nbs[a]);
Marc Kupietza77acce2017-11-30 16:59:07 +01001051 for (a = 0; a <= syn_threads; a++) {
Marc Kupietz63872182018-03-12 09:44:49 +01001052 if(a == window) continue;
Marc Kupietza77acce2017-11-30 16:59:07 +01001053 total_activation += window_sums[a];
1054 printf("window pos: %d, sum: %f\n", a, window_sums[a]);
1055 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001056 printf("syn threads joint\n");
1057 fflush(stdout);
Marc Kupietz50485ba2016-03-23 09:13:14 +01001058
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001059 for(b=0; b < syn_nbs[0]->length; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001060 memcpy(best + b, &syn_nbs[0]->best[b], sizeof(collocator));
1061 best[b].position = -1; // syn_nbs[0]->pos[b];
1062 best[b].activation_sum = target_sums[syn_nbs[0]->best[b].wordi];
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001063 best[b].max_activation = 0.0;
Marc Kupietz4116b432017-12-06 14:15:32 +01001064 best[b].average = 0.0;
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001065 best[b].probability = 0.0;
Marc Kupietza77acce2017-11-30 16:59:07 +01001066 best[b].cprobability = syn_nbs[0]->best[b].cprobability;
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001067 }
Marc Kupietz30ca4342017-11-22 21:21:20 +01001068
1069 float best_window_sum[MAX_NEIGHBOURS];
1070 int found_index=0, i=0, j, w;
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001071 for(a=0; a < syn_threads; a++) {
1072 for(b=0; b < syn_nbs[a]->length; b++) {
1073 for(i=0; i < found_index; i++)
1074 if(best[i].wordi == syn_nbs[a]->best[b].wordi)
1075 break;
1076 if(i >= found_index) {
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001077 best[found_index].max_activation = 0.0;
Marc Kupietz4116b432017-12-06 14:15:32 +01001078 best[found_index].average = 0.0;
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001079 best[found_index].probability = 0.0;
Marc Kupietza77acce2017-11-30 16:59:07 +01001080 best[found_index].cprobability = syn_nbs[a]->best[b].cprobability;
1081 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 +01001082 best[found_index++].wordi = syn_nbs[a]->best[b].wordi;
1083 // printf("found: %s\n", &vocab[syn_nbs[a]->index[b] * max_w]);
Marc Kupietz30ca4342017-11-22 21:21:20 +01001084 }
1085 }
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001086 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001087 sort_by =0; // ALWAYS AUTO-FOCUS
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001088 if(sort_by != 1 && sort_by != 2) { // sort by auto focus mean
Marc Kupietz30ca4342017-11-22 21:21:20 +01001089 printf("window: %d - syn_threads: %d, %d\n", window, syn_threads, (1 << syn_threads) -1);
Marc Kupietzbd41da32017-11-24 10:26:43 +01001090 int wpos;
Marc Kupietz4116b432017-12-06 14:15:32 +01001091 int bits_set = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +01001092 for(i=0; i < found_index; i++) {
Marc Kupietz4116b432017-12-06 14:15:32 +01001093 best[i].activation = best[i].probability = best[i].average = best[i].cprobability_sum = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +01001094 for(w=1; w < (1 << syn_threads); w++) { // loop through all possible windows
Marc Kupietz4116b432017-12-06 14:15:32 +01001095 float word_window_sum = 0, word_window_average=0, word_cprobability_sum=0, word_activation_sum = 0, total_window_sum = 0;
1096 bits_set = 0;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001097 for(a=0; a < syn_threads; a++) {
Marc Kupietz30ca4342017-11-22 21:21:20 +01001098 if((1 << a) & w) {
Marc Kupietzbd41da32017-11-24 10:26:43 +01001099 wpos = (a >= window? a+1 : a);
1100 total_window_sum += window_sums[wpos];
Marc Kupietz30ca4342017-11-22 21:21:20 +01001101 }
1102 }
Marc Kupietzbd41da32017-11-24 10:26:43 +01001103// printf("%d window-sum %f\n", w, total_window_sum);
1104 for(a=0; a < syn_threads; a++) {
1105 if((1 << a) & w) {
1106 wpos = (a >= window? a+1 : a);
1107 bits_set++;
1108 for(b=0; b < syn_nbs[a]->length; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001109 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
Marc Kupietza77acce2017-11-30 16:59:07 +01001110// float acti = syn_nbs[a]->best[b].activation / total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001111// 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 +01001112// word_window_sum += syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1113// 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 +01001114
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001115 word_window_sum += syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
Marc Kupietza77acce2017-11-30 16:59:07 +01001116// word_window_sum += acti - (word_window_sum * acti); syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1117
Marc Kupietz4116b432017-12-06 14:15:32 +01001118 word_window_average += syn_nbs[a]->best[b].activation; // - word_window_average * syn_nbs[a]->best[b].activation; // conormalied activation sum
1119 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 +01001120 word_activation_sum += syn_nbs[a]->best[b].activation;
1121 if(syn_nbs[a]->best[b].activation > best[i].max_activation)
1122 best[i].max_activation = syn_nbs[a]->best[b].activation;
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +01001123 if(syn_nbs[a]->best[b].activation > best[i].heat[wpos] )
Marc Kupietz728b8ed2017-12-02 11:13:49 +01001124 best[i].heat[wpos] = syn_nbs[a]->best[b].activation;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001125 }
1126 }
1127 }
Marc Kupietz4116b432017-12-06 14:15:32 +01001128 if(bits_set) {
1129 word_window_average /= bits_set;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001130// word_activation_sum /= bits_set;
1131// word_window_sum /= bits_set;
Marc Kupietz4116b432017-12-06 14:15:32 +01001132 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001133
1134 word_window_sum /= total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001135
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001136 if(word_window_sum > best[i].probability) {
Marc Kupietz4116b432017-12-06 14:15:32 +01001137// best[i].position = w;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001138 best[i].probability = word_window_sum;
Marc Kupietz30ca4342017-11-22 21:21:20 +01001139 }
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001140
Marc Kupietz4116b432017-12-06 14:15:32 +01001141 if(word_cprobability_sum > best[i].cprobability_sum) {
1142 best[i].position = w;
1143 best[i].cprobability_sum = word_cprobability_sum;
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001144 }
Marc Kupietz4116b432017-12-06 14:15:32 +01001145
1146 best[i].average = word_window_average;
1147// best[i].activation = word_activation_sum;
1148 }
Marc Kupietz30ca4342017-11-22 21:21:20 +01001149 }
Marc Kupietze0e42132017-11-24 16:44:34 +01001150 qsort(best, found_index, sizeof(collocator), cmp_probability);
Marc Kupietz30ca4342017-11-22 21:21:20 +01001151// for(i=0; i < found_index; i++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001152// 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 +01001153// }
1154
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001155 } else if(sort_by == 1) { // responsiveness any window position
1156 int wpos;
1157 for(i=0; i < found_index; i++) {
1158 float word_window_sum = 0, word_activation_sum = 0, total_window_sum = 0;
1159 for(a=0; a < syn_threads; a++) {
1160 wpos = (a >= window? a+1 : a);
1161 for(b=0; b < syn_nbs[a]->length; b++)
1162 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
1163 best[i].probability += syn_nbs[a]->best[b].probability;
1164 if(syn_nbs[a]->best[b].activation > 0.25)
1165 best[i].position |= 1 << wpos;
1166 if(syn_nbs[a]->best[b].activation > best[i].activation) {
1167 best[i].activation = syn_nbs[a]->best[b].activation;
1168 }
1169 }
1170 }
1171 }
1172 qsort(best, found_index, sizeof(collocator), cmp_activation);
1173 } else if(sort_by == 2) { // single window position
Marc Kupietz30ca4342017-11-22 21:21:20 +01001174 for(a=1; a < syn_threads; a++) {
1175 for(b=0; b < syn_nbs[a]->length; b++) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001176 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001177 if(syn_nbs[a]->best[b].activation > best[c].activation) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001178 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001179 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001180 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001181 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
1182 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 +02001183 break;
Marc Kupietz6d9a6782016-03-23 17:25:25 +01001184 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001185 }
1186 }
1187 }
1188 } else { // sort by mean p
1189 for(a=1; a < syn_threads; a++) {
1190 for(b=0; b < syn_nbs[a]->length; b++) {
1191 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001192 if(target_sums[syn_nbs[a]->best[b].wordi] > best[c].activation_sum) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001193 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001194 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001195 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001196 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
1197 best[c].position = (1 << 2*window) - 1; // syn_nbs[a]->pos[b];
1198 best[c].activation_sum = target_sums[syn_nbs[a]->best[b].wordi];
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001199 break;
1200 }
Marc Kupietz271e2a42016-03-22 11:37:43 +01001201 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +01001202 }
1203 }
1204 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001205 array = newAV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001206 for (a = 0, i=0; a < MAX_NEIGHBOURS && best[a].wordi >= 0; a++) {
1207 long long c = best[a].wordi;
Marc Kupietza77acce2017-11-30 16:59:07 +01001208/*
Marc Kupietzd91212f2017-11-13 10:05:09 +01001209 if (dedupe) {
1210 int filtered=0;
1211 for (j=0; j<i; j++)
1212 if (strcasestr(&vocab[c * max_w], chosen[j]) ||
1213 strcasestr(chosen[j], &vocab[c * max_w])) {
Marc Kupietza77acce2017-11-30 16:59:07 +01001214 printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]);
1215 filtered = 1;
1216 }
Marc Kupietzd91212f2017-11-13 10:05:09 +01001217 if(filtered)
1218 continue;
1219 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001220*/
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001221 chosen[i++]=c;
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001222 HV* hash = newHV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001223 SV* word = newSVpvf(&vocab[best[a].wordi * max_w], 0);
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001224 AV* heat = newAV();
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001225 if(latin_enc == 0) SvUTF8_on(word);
1226 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001227 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietz4116b432017-12-06 14:15:32 +01001228 hv_store(hash, "average", strlen("average"), newSVnv(best[a].average), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001229 hv_store(hash, "prob", strlen("prob"), newSVnv(best[a].probability), 0);
Marc Kupietz4116b432017-12-06 14:15:32 +01001230 hv_store(hash, "cprob", strlen("cprob"), newSVnv(best[a].cprobability_sum), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001231 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 +01001232 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 +01001233 hv_store(hash, "pos", strlen("pos"), newSVnv(best[a].position), 0);
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001234 best[a].heat[5]=0;
1235 for(i=10; i >= 0; i--) av_push(heat, newSVnv(best[a].heat[i]));
1236 hv_store(hash, "heat", strlen("heat"), newRV_noinc((SV*)heat), 0);
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001237 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietz271e2a42016-03-22 11:37:43 +01001238 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001239 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001240 }
Marc Kupietz000ad862016-02-26 14:59:12 +01001241end:
Marc Kupietz257a93d2019-01-03 17:55:22 +01001242 // words = old_words; // why was this here?
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001243 free(best);
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001244 return newRV_noinc((SV*)result);
Marc Kupietz000ad862016-02-26 14:59:12 +01001245}
Marc Kupietz7bc85fd2016-02-24 11:42:41 +01001246
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001247int dump_vecs(char *fname) {
1248 long i, j;
1249 FILE *f;
Marc Kupietz0a68a792018-12-20 11:41:45 +01001250 if(words>100000)
1251 words=100000;
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001252
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001253 if((f=fopen(fname, "w")) == NULL) {
1254 fprintf(stderr, "cannot open %s for writing\n", fname);
1255 return(-1);
1256 }
1257 fprintf(f, "%lld %lld\n", words, size);
1258 for (i=0; i < words; i++) {
1259 fprintf(f, "%s ", &vocab[i * max_w]);
1260 for(j=0; j < size - 1; j++)
1261 fprintf(f, "%f ", M[i*size + j]);
1262 fprintf(f, "%f\n", M[i*size + j]);
1263 }
1264 fclose(f);
1265 return(0);
1266}
Marc Kupietzdc22b982015-10-09 09:19:34 +02001267
Marc Kupietzfa194262018-06-05 09:39:32 +02001268int dump_for_numpy(char *fname) {
1269 long i, j;
1270 FILE *f;
1271 /* if(words>200000) */
1272 /* words=200000; */
1273
1274 if((f=fopen(fname, "w")) == NULL) {
1275 fprintf(stderr, "cannot open %s for writing\n", fname);
1276 return(-1);
1277 }
1278 for (i=0; i < words; i++) {
1279 for(j=0; j < size - 1; j++)
1280 fprintf(f, "%f\t", M[i*size + j]);
1281 fprintf(f, "%f\n", M[i*size + j]);
1282 }
1283 fclose(f);
1284 return(0);
1285}