blob: 0ee5543d42d1d474effeb008373eddca67e8db42 [file] [log] [blame]
Marc Kupietzdc22b982015-10-09 09:19:34 +02001#!/usr/local/bin/perl
2use Inline C;
Marc Kupietz3c487bb2018-12-20 11:31:45 +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";
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 Kupietz793413b2016-04-02 21:48:57 +020031my $training_args="";
Marc Kupietza2e64502016-04-27 09:53:51 +020032my $mergedEnd=0;
Marc Kupietz15987412017-11-07 15:56:58 +010033my %cache;
Marc Kupietz19c68242018-03-12 09:42:21 +010034my %cccache; # classic collocator cache
Marc Kupietza51dcfa2018-03-19 16:22:05 +010035my %spcache; # similar profile cache
Marc Kupietz793413b2016-04-02 21:48:57 +020036
Marc Kupietzfa194262018-06-05 09:39:32 +020037getopts('d:D:Gil:p:m:n:M:');
Marc Kupietz6ed81872016-04-27 14:04:04 +020038
39if($opt_M) {
Marc Kupietzed930212016-04-27 15:42:38 +020040 open my $handle, '<:encoding(UTF-8)', $opt_M
41 or die "Can't open '$opt_M' for reading: $!";
42 while(<$handle>) {
Marc Kupietz6ed81872016-04-27 14:04:04 +020043 foreach my $mw (split /\s+/) {
44 $marked{$mw}=1
45 }
46 }
Marc Kupietzed930212016-04-27 15:42:38 +020047 close($handle);
Marc Kupietz6ed81872016-04-27 14:04:04 +020048}
Marc Kupietza5b90152016-03-15 17:39:19 +010049
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010050# -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 +010051if(!$ARGV[0]) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010052 init_net("vectors15.bin", $opt_n, ($opt_i? 1 : 0));
Marc Kupietz2cb667e2016-03-10 09:44:12 +010053} else {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010054 init_net($ARGV[0], $opt_n, ($opt_i? 1 : 0));
Marc Kupietz793413b2016-04-02 21:48:57 +020055 if(open(FILE, "$ARGV[0].args")) {
56 $training_args = <FILE>;
57 }
58 close(FILE);
Marc Kupietz2cb667e2016-03-10 09:44:12 +010059}
Marc Kupietzdc22b982015-10-09 09:19:34 +020060
Marc Kupietza51dcfa2018-03-19 16:22:05 +010061my $have_sprofiles = load_sprofiles($ARGV[0]);
62
Marc Kupietza2e64502016-04-27 09:53:51 +020063if($opt_m) {
64 $mergedEnd = mergeVectors($opt_m);
65}
66
Marc Kupietz43ee87e2016-04-25 10:50:08 +020067if($opt_d) { # -d: dump vecs and exit
68 dump_vecs($opt_d);
69 exit;
70}
71
Marc Kupietzfa194262018-06-05 09:39:32 +020072if($opt_D) { # -D: dump vecs for numpy and exit
73 dump_for_numpy($opt_D);
74 exit;
75}
76
Marc Kupietza5b90152016-03-15 17:39:19 +010077my $daemon = Mojo::Server::Daemon->new(
78 app => app,
79 listen => ['http://'.($opt_l ? $opt_l : '*').":$opt_p"]
80);
81
Marc Kupietz5c3887d2016-04-28 08:53:35 +020082if($opt_G) {
83 print "Filtering garbage\n";
84 filter_garbage();
85}
86
Marc Kupietz554aff52017-11-09 14:42:09 +010087get '*/js/*' => sub {
Marc Kupietzffef9302017-11-07 15:58:01 +010088 my $c = shift;
89 my $url = $c->req->url;
90 $url =~ s@/derekovecs@@g;
91 $c->app->log->info("GET: " . $url);
92 $c->reply->static($url);
93};
94
Marc Kupietza9270572018-03-17 15:17:07 +010095get '*/css/*' => sub {
96 my $c = shift;
97 my $url = $c->req->url;
98 $url =~ s@/derekovecs/@/@g;
99 $c->app->log->info("GET: " . $url);
100 $c->reply->static($url);
101};
102
Marc Kupietz19c68242018-03-12 09:42:21 +0100103sub getClassicCollocatorsCached {
104 my ($c, $word) = @_;
105 if(!$cccache{$word}) {
106 $cccache{$word} = getClassicCollocators($word);
107 } else {
108 $c->app->log->info("Getting classic collocators for $word from cache.");
109 }
110 return $cccache{$word};
111}
112
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100113sub getSimilarProfilesCached {
114 my ($c, $word) = @_;
115 if(!$spcache{$word}) {
116 $spcache{$word} = getSimilarProfiles($word);
117 } else {
118 $c->app->log->info("Getting similar profiles for $word from cache:");
119 print $spcache{$word};
120 }
121 return $spcache{$word};
122}
123
Marc Kupietz66bfd952017-12-11 09:59:45 +0100124post '/derekovecs/getVecsByRanks' => sub {
125 my $self = shift;
126 my $vec = getVecs($self->req->json);
127 $self->render(json => $vec);
128};
129
Marc Kupietze13a3552018-01-25 08:48:34 +0100130any '*/getClassicCollocators' => sub {
Marc Kupietze243efd2018-01-11 22:19:24 +0100131 my $self = shift;
Marc Kupietz19c68242018-03-12 09:42:21 +0100132 $self->render(data => getClassicCollocatorsCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
Marc Kupietze243efd2018-01-11 22:19:24 +0100133};
134
Marc Kupietze13a3552018-01-25 08:48:34 +0100135any '/getClassicCollocators' => sub {
Marc Kupietze243efd2018-01-11 22:19:24 +0100136 my $self = shift;
Marc Kupietz19c68242018-03-12 09:42:21 +0100137 $self->render(data => getClassicCollocatorsCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
Marc Kupietze243efd2018-01-11 22:19:24 +0100138};
139
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100140any '*/getSimilarProfiles' => sub {
141 my $self = shift;
142 $self->render(data => getSimilarProfilesCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
143};
144
Marc Kupietzc987fa82018-03-21 12:14:25 +0100145any '/getSimilarProfiles' => sub {
146 my $self = shift;
147 $self->render(data => getSimilarProfilesCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
148};
149
Marc Kupietzdf3d4b52017-11-29 16:57:27 +0100150get '*/img/*' => sub {
151 my $c = shift;
152 my $url = $c->req->url;
153 $url =~ s@/derekovecs@@g;
154 $c->app->log->info("GET: " . $url);
155 $c->reply->static($url);
156};
157
Marc Kupietzdc22b982015-10-09 09:19:34 +0200158get '/' => sub {
159 my $c = shift;
Marc Kupietza5f60042017-05-04 10:38:12 +0200160 $c->app->log->info("get: ".$c->req->url->to_abs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200161 my $word=$c->param('word');
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100162 my $no_nbs=$c->param('n') || 100;
163 my $no_iterations=$c->param('N') || 2000;
Marc Kupietzd4227392016-03-01 16:45:12 +0100164 my $perplexity=$c->param('perplexity') || 20;
Marc Kupietzc4d62f82016-03-01 11:04:24 +0100165 my $epsilon=$c->param('epsilon') || 5;
Marc Kupietzd7aea722016-03-02 11:59:12 +0100166 my $som=$c->param('som') || 0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200167 my $searchBaseVocabFirst=$c->param('sbf') || 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100168 my $sort=$c->param('sort') || 0;
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100169 my $csv=$c->param('csv') || 0;
Marc Kupietzb613b052016-04-28 14:11:59 +0200170 my $json=$c->param('json') || 0;
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +0100171 my $cutoff=$c->param('cutoff') || 500000;
Marc Kupietzd91212f2017-11-13 10:05:09 +0100172 my $dedupe=$c->param('dedupe') || 0;
Marc Kupietzac707b32018-12-20 11:36:38 +0100173 my $nosp=$c->param('nosp') || 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100174 my $res;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100175 my @lists;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100176 my @collocations;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100177 if(defined($word) && $word !~ /^\s*$/) {
178 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100179 $word =~ s/\s+/ /g;
180 for my $w (split(' *\| *', $word)) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100181 if ($cache{$w.$cutoff.$no_nbs.$sort.$dedupe}) {
Marc Kupietz15987412017-11-07 15:56:58 +0100182 $c->app->log->info("Getting $w results from cache");
Marc Kupietzd91212f2017-11-13 10:05:09 +0100183 $res = $cache{$w.$cutoff.$no_nbs.$sort.$dedupe}
Marc Kupietza5b90152016-03-15 17:39:19 +0100184 } else {
Marc Kupietz15987412017-11-07 15:56:58 +0100185 $c->app->log->info('Looking for neighbours of '.$w);
186 if($opt_i) {
Marc Kupietzac707b32018-12-20 11:36:38 +0100187 $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp);
Marc Kupietz15987412017-11-07 15:56:58 +0100188 } else {
Marc Kupietzac707b32018-12-20 11:36:38 +0100189 $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp);
Marc Kupietz15987412017-11-07 15:56:58 +0100190 }
Marc Kupietz2dd2dd72017-12-01 22:08:14 +0100191 $cache{$w.$cutoff.$no_nbs.$sort.$dedupe} = $res;
Marc Kupietza5b90152016-03-15 17:39:19 +0100192 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100193 push(@lists, $res->{paradigmatic});
Marc Kupietz15987412017-11-07 15:56:58 +0100194 }
195 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100196 $word =~ s/ *\| */ | /g;
Marc Kupietzb613b052016-04-28 14:11:59 +0200197 if($json) {
198 return $c->render(json => {word => $word, list => \@lists, collocators=>$res->{syntagmatic}});
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100199 } elsif($csv) {
200 my $csv_data="";
201 for (my $i=0; $i <= $no_nbs; $i++) {
202 $csv_data .= $res->{paradigmatic}->[$i]->{word} . ", ";
203 }
204 for (my $i=0; $i < $no_nbs; $i++) {
205 $csv_data .= $res->{syntagmatic}->[$i]->{word} . ", ";
206 }
207 chop $csv_data;
208 chop $csv_data;
209 $csv_data .= "\n";
210 return $c->render(text=>$csv_data);
Marc Kupietzb613b052016-04-28 14:11:59 +0200211 } else {
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100212 $c->render(template=>"index", 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 +0200213 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200214};
215
Marc Kupietz30ca4342017-11-22 21:21:20 +0100216helper(bitvec2window => sub {
217 my ($self, $n) = @_;
218 my $str = unpack("B32", pack("N", $n));
219 $str =~ s/^\d{22}//;
220 $str =~ s/^(\d{5})/$1x/;
221 $str =~ s/0/·/g;
222 $str =~ s/1/+/g;
223 return $str;
224 });
225
Marc Kupietza5b90152016-03-15 17:39:19 +0100226$daemon->run; # app->start;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200227
228exit;
229
230__END__
231
232__C__
233#include <stdio.h>
234#include <string.h>
235#include <math.h>
236#include <malloc.h>
237#include <stdlib.h> //strlen
Marc Kupietzf0809762016-02-26 10:13:47 +0100238#include <sys/mman.h>
Marc Kupietz000ad862016-02-26 14:59:12 +0100239#include <pthread.h>
Marc Kupietze243efd2018-01-11 22:19:24 +0100240#include <collocatordb.h>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200241
242#define max_size 2000
243#define max_w 50
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100244#define MAX_NEIGHBOURS 1000
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100245#define MAX_WORDS -1
Marc Kupietz000ad862016-02-26 14:59:12 +0100246#define MAX_THREADS 100
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100247#define MAX_CC 50
248#define EXP_TABLE_SIZE 1000
249#define MAX_EXP 6
Marc Kupietz271e2a42016-03-22 11:37:43 +0100250#define MIN_RESP 0.50
Marc Kupietzdc22b982015-10-09 09:19:34 +0200251
252//the thread function
253void *connection_handler(void *);
Marc Kupietz000ad862016-02-26 14:59:12 +0100254
255typedef struct {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100256 long long wordi;
257 long position;
258 float activation;
Marc Kupietz4116b432017-12-06 14:15:32 +0100259 float average;
Marc Kupietza77acce2017-11-30 16:59:07 +0100260 float cprobability; // column wise probability
Marc Kupietz4116b432017-12-06 14:15:32 +0100261 float cprobability_sum;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100262 float probability;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100263 float activation_sum;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100264 float max_activation;
Marc Kupietz4116b432017-12-06 14:15:32 +0100265 float heat[16];
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100266} collocator;
267
268typedef struct {
269 collocator *best;
Marc Kupietz80abb442016-03-23 21:04:08 +0100270 int length;
Marc Kupietz000ad862016-02-26 14:59:12 +0100271} knn;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100272
Marc Kupietz000ad862016-02-26 14:59:12 +0100273typedef struct {
Marc Kupietz48c29682016-03-19 11:30:43 +0100274 long long wordi[MAX_NEIGHBOURS];
275 char sep[MAX_NEIGHBOURS];
276 int length;
277} wordlist;
278
279typedef struct {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100280 long cutoff;
Marc Kupietz48c29682016-03-19 11:30:43 +0100281 wordlist *wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100282 char *token;
283 int N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100284 long from;
Marc Kupietz000ad862016-02-26 14:59:12 +0100285 unsigned long upto;
Marc Kupietzc55c8872017-12-01 23:27:10 +0100286 collocator *best;
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100287 float *target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100288 float *window_sums;
Marc Kupietz000ad862016-02-26 14:59:12 +0100289} knnpars;
290
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100291typedef struct {
292 uint32_t index;
293 float value;
294} sparse_t;
295
296typedef struct {
297 uint32_t len;
298 sparse_t nbr[100];
299} profile_t;
300
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200301float *M, *M2=0L, *syn1neg_window, *expTable;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100302float *window_sums;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200303char *vocab;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200304char *garbage = NULL;
Marc Kupietze243efd2018-01-11 22:19:24 +0100305COLLOCATORDB *cdb = NULL;
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100306profile_t *sprofiles = NULL;
307size_t sprofiles_qty = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100308
Marc Kupietza2e64502016-04-27 09:53:51 +0200309long long words, size, merged_end;
Marc Kupietza5f60042017-05-04 10:38:12 +0200310long long merge_words = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100311int num_threads=20;
Marc Kupietza5b90152016-03-15 17:39:19 +0100312int latin_enc=0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100313int window;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200314
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100315/* load collocation profiles if file exists */
316int load_sprofiles(char *vecsname) {
317 char *basename = strdup(vecsname);
318 char *pos = strstr(basename, ".vecs");
319 if(pos)
320 *pos=0;
321
322 char binsprofiles_fname[256];
323 strcpy(binsprofiles_fname, basename);
324 strcat(binsprofiles_fname, ".sprofiles.bin");
325 FILE *fp = fopen(binsprofiles_fname, "rb");
326 if (fp == NULL) {
327 printf("Collocation profiles %s not found. No problem.\n", binsprofiles_fname);
328 return 0;
329 }
330 fseek(fp, 0L, SEEK_END);
331 size_t sz = ftell(fp);
332 fclose(fp);
333
334 int fd = open(binsprofiles_fname, O_RDONLY);
335 sprofiles = mmap(0, sz, PROT_READ, MAP_SHARED, fd, 0);
336 if (sprofiles == MAP_FAILED) {
337 close(fd);
338 fprintf(stderr, "Cannot mmap %s\n", binsprofiles_fname);
339 sprofiles = NULL;
340 return 0;
341 } else {
342 sprofiles_qty = sz / sizeof(profile_t);
343 fprintf(stderr, "Successfully mmaped %s containing similar profiles for %ld word forms.\n", binsprofiles_fname, sprofiles_qty);
344 }
345 return 1;
346}
347
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100348int init_net(char *file_name, char *net_name, int latin) {
Marc Kupietz67c20282016-02-26 09:42:00 +0100349 FILE *f, *binvecs, *binwords;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100350 int binwords_fd, binvecs_fd, net_fd, i;
Marc Kupietz82b02672016-02-26 12:32:25 +0100351 long long a, b, c, d, cn;
352 float len;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200353 double val;
Marc Kupietz82b02672016-02-26 12:32:25 +0100354
Marc Kupietz67c20282016-02-26 09:42:00 +0100355 char binvecs_fname[256], binwords_fname[256];
356 strcpy(binwords_fname, file_name);
357 strcat(binwords_fname, ".words");
358 strcpy(binvecs_fname, file_name);
359 strcat(binvecs_fname, ".vecs");
Marc Kupietzdc22b982015-10-09 09:19:34 +0200360
Marc Kupietza5b90152016-03-15 17:39:19 +0100361 latin_enc = latin;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200362 f = fopen(file_name, "rb");
363 if (f == NULL) {
364 printf("Input file %s not found\n", file_name);
365 return -1;
366 }
367 fscanf(f, "%lld", &words);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100368 if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200369 fscanf(f, "%lld", &size);
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100370 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) {
371 printf("Converting %s to memory mappable structures\n", file_name);
Marc Kupietzf0809762016-02-26 10:13:47 +0100372 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
373 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
374 if (M == NULL) {
375 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
376 return -1;
377 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200378 if(strstr(file_name, ".txt")) {
379 for (b = 0; b < words; b++) {
380 a = 0;
381 while (1) {
382 vocab[b * max_w + a] = fgetc(f);
383 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
384 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
385 }
386 vocab[b * max_w + a] = 0;
387 len = 0;
388 for (a = 0; a < size; a++) {
389 fscanf(f, "%lf", &val);
390 M[a + b * size] = val;
391 len += val * val;
392 }
393 len = sqrt(len);
394 for (a = 0; a < size; a++) M[a + b * size] /= len;
395 }
396 } else {
397 for (b = 0; b < words; b++) {
398 a = 0;
399 while (1) {
400 vocab[b * max_w + a] = fgetc(f);
401 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
402 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
403 }
404 vocab[b * max_w + a] = 0;
405 fread(&M[b * size], sizeof(float), size, f);
406 len = 0;
407 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
408 len = sqrt(len);
409 for (a = 0; a < size; a++) M[a + b * size] /= len;
410 }
411 }
Marc Kupietz67c20282016-02-26 09:42:00 +0100412 if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) {
413 fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs);
414 fclose(binvecs);
415 fwrite(vocab, sizeof(char), (long long)words * max_w, binwords);
416 fclose(binwords);
417 }
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100418 }
419 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
420 M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0);
421 vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0);
422 if (M == MAP_FAILED || vocab == MAP_FAILED) {
423 close(binvecs_fd);
424 close(binwords_fd);
425 fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname);
426 exit(-1);
427 }
428 } else {
429 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
430 exit(-1);
Marc Kupietz67c20282016-02-26 09:42:00 +0100431 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200432 fclose(f);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100433
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200434 if(net_name && strlen(net_name) > 0) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100435 if( (net_fd = open(net_name, O_RDONLY)) >= 0) {
436 window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2;
437 // lseek(net_fd, sizeof(float) * words * size, SEEK_SET);
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100438 // munmap(M, sizeof(float) * words * size);
439 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 +0200440 if (M2 == MAP_FAILED) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100441 close(net_fd);
442 fprintf(stderr, "Cannot mmap %s\n", net_name);
443 exit(-1);
444 }
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100445 syn1neg_window = M2 + words * size;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100446 } else {
447 fprintf(stderr, "Cannot open %s\n", net_name);
448 exit(-1);
449 }
450 fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window);
Marc Kupietze243efd2018-01-11 22:19:24 +0100451
452 char collocatordb_name[2048];
453 strcpy(collocatordb_name, net_name);
454 char *ext = rindex(collocatordb_name, '.');
455 if(ext) {
456 strcpy(ext, ".rocksdb");
457 if(access(collocatordb_name, R_OK) == 0) {
458 *ext = 0;
459 fprintf(stderr, "Opening collocator DB %s\n", collocatordb_name);
460 cdb = open_collocatordb(collocatordb_name);
461 }
462 }
463 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100464
465 expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float));
466 for (i = 0; i < EXP_TABLE_SIZE; i++) {
467 expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table
468 expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1)
469 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100470 window_sums = malloc(sizeof(float) * (window+1) * 2);
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100471
472 return 0;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200473}
474
Marc Kupietza2e64502016-04-27 09:53:51 +0200475long mergeVectors(char *file_name){
476 FILE *f, *binvecs, *binwords;
477 int binwords_fd, binvecs_fd, net_fd, i;
478 long long a, b, c, d, cn;
479 float len;
480 float *merge_vecs;
481 char *merge_vocab;
Marc Kupietza5f60042017-05-04 10:38:12 +0200482 /* long long merge_words, merge_size; */
483 long long merge_size;
Marc Kupietza2e64502016-04-27 09:53:51 +0200484
485 char binvecs_fname[256], binwords_fname[256];
486 strcpy(binwords_fname, file_name);
487 strcat(binwords_fname, ".words");
488 strcpy(binvecs_fname, file_name);
489 strcat(binvecs_fname, ".vecs");
490
491 f = fopen(file_name, "rb");
492 if (f == NULL) {
493 printf("Input file %s not found\n", file_name);
494 exit -1;
495 }
496 fscanf(f, "%lld", &merge_words);
497 fscanf(f, "%lld", &merge_size);
498 if(merge_size != size){
499 fprintf(stderr, "vectors must have the same length\n");
500 exit(-1);
501 }
502 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
503 merge_vecs = malloc(sizeof(float) * (words + merge_words) * size);
504 merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w);
505 if (merge_vecs == NULL || merge_vocab == NULL) {
506 close(binvecs_fd);
507 close(binwords_fd);
508 fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname);
509 exit(-1);
510 }
511 read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float));
512 read(binwords_fd, merge_vocab, merge_words * max_w);
513 } else {
514 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
515 exit(-1);
516 }
517 printf("Successfully reallocated memory\nMerging...\n");
518 fflush(stdout);
519 memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float));
520 memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w);
521 munmap(M, words * size * sizeof(float));
522 munmap(vocab, words * max_w);
523 M = merge_vecs;
524 vocab = merge_vocab;
525 merged_end = merge_words;
526 words += merge_words;
527 fclose(f);
528 printf("merged_end: %lld, words: %lld\n", merged_end, words);
529 return((long) merged_end);
530}
531
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200532void filter_garbage() {
533 long i;
Marc Kupietzab591a82016-04-28 14:08:49 +0200534 unsigned char *w, previous, c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200535 garbage = malloc(words);
536 memset(garbage, 0, words);
537 for (i = 0; i < words; i++) {
538 w = vocab + i * max_w;
539 previous = 0;
Marc Kupietz969adfa2018-03-12 09:43:53 +0100540 if(strncmp("quot", w, 4) == 0) {
541 garbage[i]=1;
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100542// printf("Gargabe: %s\n", vocab + i * max_w);
Marc Kupietz969adfa2018-03-12 09:43:53 +0100543 } else {
544 while((c = *w++) && !garbage[i]) {
545 if( ((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) ||
546 (previous == '-' && (c & 32)) ||
547 (previous == 0xc2 && (c == 0xa4 || c == 0xb6 )) ||
548 (previous == 'q' && c == 'u' && *(w) == 'o' && *(w+1) == 't') || /* quot */
549 c == '<'
550 ) {
551 garbage[i]=1;
552 continue;
553 }
554 previous = c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200555 }
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200556 }
557 }
558 return;
559}
560
Marc Kupietzac707b32018-12-20 11:36:38 +0100561
562knn *simpleGetCollocators(int word, int number, long cutoff, int *result) {
563 knnpars *pars = calloc(sizeof(knnpars), 1);
564 float *target_sums;
565 float *window_sums = malloc(sizeof(float) * (window+1) * 2);
566 pars->cutoff = (cutoff? cutoff : 300000);
567 long a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float));
568 for(a = 0; a < cutoff; a++)
569 target_sums[a] = 0;
570 pars->target_sums = target_sums;
571 pars->window_sums = window_sums;
572 pars->N = (number? number : 20);
573 pars->from = 0;
574 pars->upto = window * 2 -1;
575 knn *syn_nbs; // = (knn*) getCollocators(pars);
576 free(pars);
577 free(window_sums);
578 free(target_sums);
579 return syn_nbs;
580}
581
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100582void *getCollocators(void *args) {
583 knnpars *pars = args;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100584 int N = pars->N;
585 int cc = pars->wl->wordi[0];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100586 knn *nbs = NULL;
587 long window_layer_size = size * window * 2;
588 long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target;
589 float f, max_f, maxmax_f;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100590 float *target_sums, worstbest, wpos_sum;
591 collocator *best;
Marc Kupietzd5642582016-03-19 22:23:13 +0100592
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200593 if(M2 == NULL || cc == -1)
Marc Kupietzd5642582016-03-19 22:23:13 +0100594 return NULL;
595
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100596 a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100597 best = malloc(N * sizeof(collocator));
Marc Kupietz271e2a42016-03-22 11:37:43 +0100598 worstbest = MIN_RESP;
599
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100600 for (b = 0; b < pars->cutoff; b++)
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100601 target_sums[b]=0;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100602 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100603 best[b].wordi = -1;
604 best[b].probability = 1;
605 best[b].activation = worstbest;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100606 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100607
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100608 d = cc;
609 maxmax_f = -1;
610 maxmax_target = 0;
611
Marc Kupietz271e2a42016-03-22 11:37:43 +0100612 for (a = pars->from; a < pars->upto; a++) {
613 if(a >= window)
614 a++;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100615 wpos_sum = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100616 printf("window pos: %ld\n", a);
617 if (a != window) {
618 max_f = -1;
619 window_offset = a * size;
620 if (a > window)
621 window_offset -= size;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100622 for(target = 0; target < pars->cutoff; target ++) {
623 if(garbage && garbage[target]) continue;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100624 if(target == d)
625 continue;
626 f = 0;
627 for (c = 0; c < size; c++)
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100628 f += M2[d* size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100629 if (f < -MAX_EXP)
630 continue;
631 else if (f > MAX_EXP)
632 continue;
633 else
634 f = expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100635 wpos_sum += f;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100636
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100637 target_sums[target] += f;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100638 if(f > worstbest) {
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100639 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100640 if (f > best[b].activation) {
641 memmove(best + b + 1, best + b, (N - b -1) * sizeof(collocator));
642 best[b].activation = f;
643 best[b].wordi = target;
644 best[b].position = window-a;
Marc Kupietz33679a32016-03-22 08:49:39 +0100645 break;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100646 }
647 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100648 if(b == N - 1)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100649 worstbest = best[N-1].activation;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100650 }
651 }
652 printf("%d %.2f\n", max_target, max_f);
653 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
654 if(max_f > maxmax_f) {
655 maxmax_f = max_f;
656 maxmax_target = max_target;
657 }
Marc Kupietz33679a32016-03-22 08:49:39 +0100658 for (b = 0; b < N; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100659 if(best[b].position == window-a)
Marc Kupietza77acce2017-11-30 16:59:07 +0100660 best[b].cprobability = best[b].activation / wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100661 } else {
662 printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]);
663 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100664 pars->window_sums[a] = wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100665 }
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100666 for (b = 0; b < pars->cutoff; b++)
Marc Kupietza77acce2017-11-30 16:59:07 +0100667 pars->target_sums[b] += target_sums[b]; //(target_sums[b] / wpos_sum ) / (window * 2);
668 printf("Target-Summe von 0: %f\n", pars->target_sums[150298]);
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100669 free(target_sums);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100670 for(b=0; b<N && best[b].wordi >= 0; b++);; // THIS LOOP IS NEEDED (b...)
671// 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 +0100672// printf("\n");
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100673 nbs = malloc(sizeof(knn));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100674 nbs->best = best;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100675 nbs->length = b-1;
676 pthread_exit(nbs);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100677}
678
Marc Kupietz30ca4342017-11-22 21:21:20 +0100679
Marc Kupietz66bfd952017-12-11 09:59:45 +0100680AV *getVecs(AV *array) {
681 int i, b;
682 AV *result = newAV();
683 for (i=0; i<=av_len(array); i++) {
684 SV** elem = av_fetch(array, i, 0);
685 if (elem != NULL) {
686 long j = (long) SvNV(*elem);
687 AV *vector = newAV();
688 for (b = 0; b < size; b++) {
689 av_push(vector, newSVnv(M[b + j * size]));
690 }
691 av_push(result, newRV_noinc(vector));
692 }
693 }
694 return result;
695}
696
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100697char *getSimilarProfiles(long node) {
698 int i;
699 char buffer[120000];
700 char pair_buffer[2048];
701 buffer[0]='[';
702 buffer[1]=0;
703 if(node >= sprofiles_qty) {
704 printf("Not available in precomputed profile\n");
705 return(strdup("[{\"w\":\"not available\", \"v\":0}]\n"));
706 }
707
708 printf("******* %s ******\n", &vocab[max_w * node]);
709
710 for(i=0; i < 100 && i < sprofiles[node].len; i++) {
711 sprintf(pair_buffer, "{\"w\":\"%s\", \"v\":%f},", &vocab[max_w * (sprofiles[node].nbr[i].index)], sprofiles[node].nbr[i].value);
712 strcat(buffer, pair_buffer);
713 }
714 buffer[strlen(buffer)-1]=']';
715 strcat(buffer, "\n");
716 printf(buffer);
717 return(strdup(buffer));
718}
719
Marc Kupietze243efd2018-01-11 22:19:24 +0100720char *getClassicCollocators(long node) {
721 char *res = (cdb? strdup(get_collocators_as_json(cdb, node)) : "[]");
722 return res;
723}
724
Marc Kupietza2e64502016-04-27 09:53:51 +0200725wordlist *getTargetWords(char *st1, int search_backw) {
Marc Kupietz48c29682016-03-19 11:30:43 +0100726 wordlist *wl = malloc(sizeof(wordlist));
727 char st[100][max_size], sep[100];
728 long a, b=0, c=0, cn=0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200729 int unmerged;
Marc Kupietz3020f482018-12-20 11:39:15 +0100730 int index = 0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200731
Marc Kupietzdc22b982015-10-09 09:19:34 +0200732 while (1) {
733 st[cn][b] = st1[c];
734 b++;
735 c++;
736 st[cn][b] = 0;
737 if (st1[c] == 0) break;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100738 if (st1[c] == ' ' || st1[c] == '-') {
739 sep[cn++] = st1[c];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200740 b = 0;
741 c++;
742 }
743 }
744 cn++;
745 for (a = 0; a < cn; a++) {
Marc Kupietz3020f482018-12-20 11:39:15 +0100746 b = 0;
747 int i;
748 for(i=0; i < strlen(st[a]) && st[a][i] >= '0' && st[a][i] <= '9'; i++)
749 b = b*10+st[a][i]-'0';
750 if(i < strlen(st[a]) || i==0) {
751 if(search_backw) {
752 for (b = words - 1; b >= 0; b--) if (!strcmp(&vocab[b * max_w], st[a])) break;
753 } else {
754 for (b = 0; b < words; b++) if (!strcmp(&vocab[b * max_w], st[a])) break;
755 }
756 }
Marc Kupietz34a3ee92016-02-27 22:43:16 +0100757 if (b == words) b = -1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100758 wl->wordi[a] = b;
759 fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", st[a], wl->wordi[a]);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200760 if (b == -1) {
Marc Kupietze8da3062016-02-25 08:37:53 +0100761 fprintf(stderr, "Out of dictionary word!\n");
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100762 cn--;
Marc Kupietzf9ac54e2017-11-21 09:22:29 +0100763 free(wl);
764 return NULL;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200765 }
766 }
Marc Kupietz48c29682016-03-19 11:30:43 +0100767 wl->length=cn;
768 return(wl);
769}
770
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100771void *_get_neighbours(void *arg) {
772 knnpars *pars = arg;
Marc Kupietz48c29682016-03-19 11:30:43 +0100773 char *st1 = pars->token;
774 int N = pars->N;
775 long from = pars -> from;
776 unsigned long upto = pars -> upto;
777 char file_name[max_size], st[100][max_size], *sep;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100778 float dist, len, vec[max_size];
779 long long a, b, c, d, cn, *bi;
Marc Kupietz48c29682016-03-19 11:30:43 +0100780 char ch;
781 knn *nbs = NULL;
782 wordlist *wl = pars->wl;
783
Marc Kupietzc55c8872017-12-01 23:27:10 +0100784 collocator *best = pars->best;
Marc Kupietz48c29682016-03-19 11:30:43 +0100785
786 float worstbest=-1;
787
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100788 for (a = 0; a < N; a++) best[a].activation = 0;
Marc Kupietz48c29682016-03-19 11:30:43 +0100789 a = 0;
790 bi = wl->wordi;
791 cn = wl->length;
792 sep = wl->sep;
793 b = bi[0];
794 c = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100795 if (b == -1) {
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100796 N = 0;
797 goto end;
798 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200799 for (a = 0; a < size; a++) vec[a] = 0;
800 for (b = 0; b < cn; b++) {
801 if (bi[b] == -1) continue;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100802 if(b>0 && sep[b-1] == '-')
803 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
804 else
805 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200806 }
807 len = 0;
808 for (a = 0; a < size; a++) len += vec[a] * vec[a];
809 len = sqrt(len);
810 for (a = 0; a < size; a++) vec[a] /= len;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100811 for (a = 0; a < N; a++) best[a].activation = -1;
Marc Kupietz000ad862016-02-26 14:59:12 +0100812 for (c = from; c < upto; c++) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200813 if(garbage && garbage[c]) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200814 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +0100815// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +0100816// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
817// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200818 dist = 0;
819 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100820 if(dist > worstbest) {
821 for (a = 0; a < N; a++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100822 if (dist > best[a].activation) {
823 memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator));
824 best[a].activation = dist;
825 best[a].wordi = c;
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100826 break;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200827 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200828 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100829 worstbest = best[N-1].activation;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200830 }
831 }
Marc Kupietz34020dc2016-02-25 08:44:19 +0100832
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100833end:
Marc Kupietz000ad862016-02-26 14:59:12 +0100834 pthread_exit(nbs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200835}
836
Marc Kupietze0e42132017-11-24 16:44:34 +0100837int cmp_activation (const void * a, const void * b) {
838 float fb = ((collocator *)a)->activation;
839 float fa = ((collocator *)b)->activation;
840 return (fa > fb) - (fa < fb);
841}
842
843int cmp_probability (const void * a, const void * b) {
844 float fb = ((collocator *)a)->probability;
845 float fa = ((collocator *)b)->probability;
846 return (fa > fb) - (fa < fb);
847}
848
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100849
Marc Kupietzac707b32018-12-20 11:36:38 +0100850SV *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 +0100851 HV *result = newHV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100852 float *target_sums, vec[max_size];
Marc Kupietza5f60042017-05-04 10:38:12 +0200853 long long old_words;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100854 long a, b, c, d, slice;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100855 knn *para_nbs[MAX_THREADS];
856 knn *syn_nbs[MAX_THREADS];
Marc Kupietz000ad862016-02-26 14:59:12 +0100857 knnpars pars[MAX_THREADS];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100858 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
Marc Kupietz48c29682016-03-19 11:30:43 +0100859 wordlist *wl;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200860 int syn_threads = (M2? window * 2 : 0);
Marc Kupietzac707b32018-12-20 11:36:38 +0100861 int para_threads = (no_similar_profiles? 0 : num_threads - syn_threads);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100862
Marc Kupietzc55c8872017-12-01 23:27:10 +0100863 collocator *best;
864 posix_memalign((void **) &best, 128, 10 * N * sizeof(collocator));
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +0100865 memset(best, 0, 10 * N * sizeof(collocator));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100866
Marc Kupietz000ad862016-02-26 14:59:12 +0100867 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
868
Marc Kupietzd5d05732018-01-30 11:57:35 +0100869 if(cutoff < 1 || cutoff > words)
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100870 cutoff=words;
871
Marc Kupietza2e64502016-04-27 09:53:51 +0200872 wl = getTargetWords(st1, search_backw);
Marc Kupietzf9ac54e2017-11-21 09:22:29 +0100873 if(wl == NULL || wl->length < 1)
Marc Kupietz271e2a42016-03-22 11:37:43 +0100874 goto end;
Marc Kupietz48c29682016-03-19 11:30:43 +0100875
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100876 old_words = cutoff;
Marc Kupietza5f60042017-05-04 10:38:12 +0200877 if(merge_words > 0)
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100878 cutoff = merge_words * 1.25; /* HACK */
Marc Kupietzac707b32018-12-20 11:36:38 +0100879 slice = (para_threads? cutoff / para_threads : 0);
Marc Kupietza5f60042017-05-04 10:38:12 +0200880
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100881 a = posix_memalign((void **) &target_sums, 128, cutoff * sizeof(float));
882 for(a = 0; a < cutoff; a++)
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100883 target_sums[a] = 0;
884
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200885 printf("Starting %d threads\n", para_threads);
886 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100887 for(a=0; a < para_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100888 pars[a].cutoff = cutoff;
Marc Kupietz000ad862016-02-26 14:59:12 +0100889 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100890 pars[a].wl = wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100891 pars[a].N = N;
Marc Kupietzc55c8872017-12-01 23:27:10 +0100892 pars[a].best = &best[N*a];
Marc Kupietz000ad862016-02-26 14:59:12 +0100893 pars[a].from = a*slice;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100894 pars[a].upto = ((a+1)*slice > cutoff? cutoff:(a+1)*slice);
Marc Kupietz000ad862016-02-26 14:59:12 +0100895 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
896 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200897 if(M2) {
898 for(a=0; a < syn_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100899 pars[a + para_threads].cutoff = cutoff;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200900 pars[a + para_threads].target_sums = target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100901 pars[a + para_threads].window_sums = window_sums;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200902 pars[a + para_threads].wl = wl;
903 pars[a + para_threads].N = N;
904 pars[a + para_threads].from = a;
905 pars[a + para_threads].upto = a+1;
906 pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *) &pars[a + para_threads]);
907 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100908 }
909 printf("Waiting for para threads to join\n");
910 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100911 for (a = 0; a < para_threads; a++) pthread_join(pt[a], (void *) &para_nbs[a]);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100912 printf("Para threads joint\n");
913 fflush(stdout);
Marc Kupietz000ad862016-02-26 14:59:12 +0100914
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200915 /* if(!syn_nbs[0]) */
916 /* goto end; */
Marc Kupietz000ad862016-02-26 14:59:12 +0100917
Marc Kupietzc55c8872017-12-01 23:27:10 +0100918 qsort(best, N*para_threads, sizeof(collocator), cmp_activation);
Marc Kupietz000ad862016-02-26 14:59:12 +0100919
Marc Kupietz000ad862016-02-26 14:59:12 +0100920
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100921 long long chosen[MAX_NEIGHBOURS];
922 printf("N: %ld\n", N);
923
Marc Kupietz271e2a42016-03-22 11:37:43 +0100924 AV* array = newAV();
Marc Kupietzd91212f2017-11-13 10:05:09 +0100925 int i, j;
Marc Kupietza5f60042017-05-04 10:38:12 +0200926 int l1_words=0, l2_words=0;
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100927
928 for (a = 0, i = 0; i < N && a < N*para_threads; a++) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100929 int filtered=0;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100930 long long c = best[a].wordi;
Marc Kupietzd91212f2017-11-13 10:05:09 +0100931 if (dedupe && i > 0) {
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100932 for (j=0; j<i && !filtered; j++)
933 if (strcasestr(&vocab[c * max_w], &vocab[chosen[j] * max_w]) ||
934 strcasestr(&vocab[chosen[j] * max_w], &vocab[c * max_w])) {
935 printf("filtering %s %s\n", &vocab[chosen[j] * max_w], &vocab[c * max_w]);
Marc Kupietzd91212f2017-11-13 10:05:09 +0100936 filtered = 1;
937 }
938 if(filtered)
939 continue;
940 }
Marc Kupietza5f60042017-05-04 10:38:12 +0200941 if(merge_words > 0) {
942 if(c >= merge_words) {
943 if(l1_words > N / 2)
944 continue;
945 else
946 l1_words++;
947 } else {
948 if(l2_words > N / 2)
949 continue;
950 else
951 l2_words++;
952 }
953 }
Marc Kupietza5f60042017-05-04 10:38:12 +0200954 printf("%s l1:%d l2:%d i:%d a:%ld\n", &vocab[c * max_w], l1_words, l2_words, i, a);
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100955 fflush(stdout);
Marc Kupietza5f60042017-05-04 10:38:12 +0200956
Marc Kupietz271e2a42016-03-22 11:37:43 +0100957 HV* hash = newHV();
Marc Kupietza5f60042017-05-04 10:38:12 +0200958 SV* word = newSVpvf(&vocab[c * max_w], 0);
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100959 chosen[i] = c;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100960 if(latin_enc == 0) SvUTF8_on(word);
Marc Kupietza5f60042017-05-04 10:38:12 +0200961 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100962 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100963 hv_store(hash, "dist", strlen("dist"), newSVnv(best[a].activation), 0);
964 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100965 AV *vector = newAV();
966 for (b = 0; b < size; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100967 av_push(vector, newSVnv(M[b + best[a].wordi * size]));
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100968 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100969 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
970 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietza5f60042017-05-04 10:38:12 +0200971 i++;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100972 }
973 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0);
974
Marc Kupietz50485ba2016-03-23 09:13:14 +0100975 for(b=0; b < MAX_NEIGHBOURS; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100976 best[b].wordi = -1L;
977 best[b].activation = 0;
978 best[b].probability = 0;
979 best[b].position = 0;
980 best[b].activation_sum = 0;
Marc Kupietz50485ba2016-03-23 09:13:14 +0100981 }
982
Marc Kupietza77acce2017-11-30 16:59:07 +0100983 float total_activation = 0;
984
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200985 if (M2) {
986 printf("Waiting for syn threads to join\n");
987 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100988 for (a = 0; a < syn_threads; a++) pthread_join(pt[a+para_threads], (void *) &syn_nbs[a]);
Marc Kupietza77acce2017-11-30 16:59:07 +0100989 for (a = 0; a <= syn_threads; a++) {
Marc Kupietz63872182018-03-12 09:44:49 +0100990 if(a == window) continue;
Marc Kupietza77acce2017-11-30 16:59:07 +0100991 total_activation += window_sums[a];
992 printf("window pos: %d, sum: %f\n", a, window_sums[a]);
993 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200994 printf("syn threads joint\n");
995 fflush(stdout);
Marc Kupietz50485ba2016-03-23 09:13:14 +0100996
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200997 for(b=0; b < syn_nbs[0]->length; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100998 memcpy(best + b, &syn_nbs[0]->best[b], sizeof(collocator));
999 best[b].position = -1; // syn_nbs[0]->pos[b];
1000 best[b].activation_sum = target_sums[syn_nbs[0]->best[b].wordi];
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001001 best[b].max_activation = 0.0;
Marc Kupietz4116b432017-12-06 14:15:32 +01001002 best[b].average = 0.0;
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001003 best[b].probability = 0.0;
Marc Kupietza77acce2017-11-30 16:59:07 +01001004 best[b].cprobability = syn_nbs[0]->best[b].cprobability;
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001005 }
Marc Kupietz30ca4342017-11-22 21:21:20 +01001006
1007 float best_window_sum[MAX_NEIGHBOURS];
1008 int found_index=0, i=0, j, w;
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001009 for(a=0; a < syn_threads; a++) {
1010 for(b=0; b < syn_nbs[a]->length; b++) {
1011 for(i=0; i < found_index; i++)
1012 if(best[i].wordi == syn_nbs[a]->best[b].wordi)
1013 break;
1014 if(i >= found_index) {
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001015 best[found_index].max_activation = 0.0;
Marc Kupietz4116b432017-12-06 14:15:32 +01001016 best[found_index].average = 0.0;
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001017 best[found_index].probability = 0.0;
Marc Kupietza77acce2017-11-30 16:59:07 +01001018 best[found_index].cprobability = syn_nbs[a]->best[b].cprobability;
1019 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 +01001020 best[found_index++].wordi = syn_nbs[a]->best[b].wordi;
1021 // printf("found: %s\n", &vocab[syn_nbs[a]->index[b] * max_w]);
Marc Kupietz30ca4342017-11-22 21:21:20 +01001022 }
1023 }
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001024 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001025 sort_by =0; // ALWAYS AUTO-FOCUS
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001026 if(sort_by != 1 && sort_by != 2) { // sort by auto focus mean
Marc Kupietz30ca4342017-11-22 21:21:20 +01001027 printf("window: %d - syn_threads: %d, %d\n", window, syn_threads, (1 << syn_threads) -1);
Marc Kupietzbd41da32017-11-24 10:26:43 +01001028 int wpos;
Marc Kupietz4116b432017-12-06 14:15:32 +01001029 int bits_set = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +01001030 for(i=0; i < found_index; i++) {
Marc Kupietz4116b432017-12-06 14:15:32 +01001031 best[i].activation = best[i].probability = best[i].average = best[i].cprobability_sum = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +01001032 for(w=1; w < (1 << syn_threads); w++) { // loop through all possible windows
Marc Kupietz4116b432017-12-06 14:15:32 +01001033 float word_window_sum = 0, word_window_average=0, word_cprobability_sum=0, word_activation_sum = 0, total_window_sum = 0;
1034 bits_set = 0;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001035 for(a=0; a < syn_threads; a++) {
Marc Kupietz30ca4342017-11-22 21:21:20 +01001036 if((1 << a) & w) {
Marc Kupietzbd41da32017-11-24 10:26:43 +01001037 wpos = (a >= window? a+1 : a);
1038 total_window_sum += window_sums[wpos];
Marc Kupietz30ca4342017-11-22 21:21:20 +01001039 }
1040 }
Marc Kupietzbd41da32017-11-24 10:26:43 +01001041// printf("%d window-sum %f\n", w, total_window_sum);
1042 for(a=0; a < syn_threads; a++) {
1043 if((1 << a) & w) {
1044 wpos = (a >= window? a+1 : a);
1045 bits_set++;
1046 for(b=0; b < syn_nbs[a]->length; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001047 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
Marc Kupietza77acce2017-11-30 16:59:07 +01001048// float acti = syn_nbs[a]->best[b].activation / total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001049// 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 +01001050// word_window_sum += syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1051// 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 +01001052
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001053 word_window_sum += syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
Marc Kupietza77acce2017-11-30 16:59:07 +01001054// word_window_sum += acti - (word_window_sum * acti); syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1055
Marc Kupietz4116b432017-12-06 14:15:32 +01001056 word_window_average += syn_nbs[a]->best[b].activation; // - word_window_average * syn_nbs[a]->best[b].activation; // conormalied activation sum
1057 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 +01001058 word_activation_sum += syn_nbs[a]->best[b].activation;
1059 if(syn_nbs[a]->best[b].activation > best[i].max_activation)
1060 best[i].max_activation = syn_nbs[a]->best[b].activation;
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +01001061 if(syn_nbs[a]->best[b].activation > best[i].heat[wpos] )
Marc Kupietz728b8ed2017-12-02 11:13:49 +01001062 best[i].heat[wpos] = syn_nbs[a]->best[b].activation;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001063 }
1064 }
1065 }
Marc Kupietz4116b432017-12-06 14:15:32 +01001066 if(bits_set) {
1067 word_window_average /= bits_set;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001068// word_activation_sum /= bits_set;
1069// word_window_sum /= bits_set;
Marc Kupietz4116b432017-12-06 14:15:32 +01001070 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001071
1072 word_window_sum /= total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +01001073
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001074 if(word_window_sum > best[i].probability) {
Marc Kupietz4116b432017-12-06 14:15:32 +01001075// best[i].position = w;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001076 best[i].probability = word_window_sum;
Marc Kupietz30ca4342017-11-22 21:21:20 +01001077 }
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001078
Marc Kupietz4116b432017-12-06 14:15:32 +01001079 if(word_cprobability_sum > best[i].cprobability_sum) {
1080 best[i].position = w;
1081 best[i].cprobability_sum = word_cprobability_sum;
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001082 }
Marc Kupietz4116b432017-12-06 14:15:32 +01001083
1084 best[i].average = word_window_average;
1085// best[i].activation = word_activation_sum;
1086 }
Marc Kupietz30ca4342017-11-22 21:21:20 +01001087 }
Marc Kupietze0e42132017-11-24 16:44:34 +01001088 qsort(best, found_index, sizeof(collocator), cmp_probability);
Marc Kupietz30ca4342017-11-22 21:21:20 +01001089// for(i=0; i < found_index; i++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001090// 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 +01001091// }
1092
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001093 } else if(sort_by == 1) { // responsiveness any window position
1094 int wpos;
1095 for(i=0; i < found_index; i++) {
1096 float word_window_sum = 0, word_activation_sum = 0, total_window_sum = 0;
1097 for(a=0; a < syn_threads; a++) {
1098 wpos = (a >= window? a+1 : a);
1099 for(b=0; b < syn_nbs[a]->length; b++)
1100 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
1101 best[i].probability += syn_nbs[a]->best[b].probability;
1102 if(syn_nbs[a]->best[b].activation > 0.25)
1103 best[i].position |= 1 << wpos;
1104 if(syn_nbs[a]->best[b].activation > best[i].activation) {
1105 best[i].activation = syn_nbs[a]->best[b].activation;
1106 }
1107 }
1108 }
1109 }
1110 qsort(best, found_index, sizeof(collocator), cmp_activation);
1111 } else if(sort_by == 2) { // single window position
Marc Kupietz30ca4342017-11-22 21:21:20 +01001112 for(a=1; a < syn_threads; a++) {
1113 for(b=0; b < syn_nbs[a]->length; b++) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001114 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001115 if(syn_nbs[a]->best[b].activation > best[c].activation) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001116 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001117 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001118 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001119 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
1120 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 +02001121 break;
Marc Kupietz6d9a6782016-03-23 17:25:25 +01001122 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001123 }
1124 }
1125 }
1126 } else { // sort by mean p
1127 for(a=1; a < syn_threads; a++) {
1128 for(b=0; b < syn_nbs[a]->length; b++) {
1129 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001130 if(target_sums[syn_nbs[a]->best[b].wordi] > best[c].activation_sum) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001131 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001132 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001133 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001134 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
1135 best[c].position = (1 << 2*window) - 1; // syn_nbs[a]->pos[b];
1136 best[c].activation_sum = target_sums[syn_nbs[a]->best[b].wordi];
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001137 break;
1138 }
Marc Kupietz271e2a42016-03-22 11:37:43 +01001139 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +01001140 }
1141 }
1142 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001143 array = newAV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001144 for (a = 0, i=0; a < MAX_NEIGHBOURS && best[a].wordi >= 0; a++) {
1145 long long c = best[a].wordi;
Marc Kupietza77acce2017-11-30 16:59:07 +01001146/*
Marc Kupietzd91212f2017-11-13 10:05:09 +01001147 if (dedupe) {
1148 int filtered=0;
1149 for (j=0; j<i; j++)
1150 if (strcasestr(&vocab[c * max_w], chosen[j]) ||
1151 strcasestr(chosen[j], &vocab[c * max_w])) {
Marc Kupietza77acce2017-11-30 16:59:07 +01001152 printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]);
1153 filtered = 1;
1154 }
Marc Kupietzd91212f2017-11-13 10:05:09 +01001155 if(filtered)
1156 continue;
1157 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001158*/
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001159 chosen[i++]=c;
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001160 HV* hash = newHV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001161 SV* word = newSVpvf(&vocab[best[a].wordi * max_w], 0);
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001162 AV* heat = newAV();
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001163 if(latin_enc == 0) SvUTF8_on(word);
1164 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001165 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietz4116b432017-12-06 14:15:32 +01001166 hv_store(hash, "average", strlen("average"), newSVnv(best[a].average), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001167 hv_store(hash, "prob", strlen("prob"), newSVnv(best[a].probability), 0);
Marc Kupietz4116b432017-12-06 14:15:32 +01001168 hv_store(hash, "cprob", strlen("cprob"), newSVnv(best[a].cprobability_sum), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001169 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 +01001170 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 +01001171 hv_store(hash, "pos", strlen("pos"), newSVnv(best[a].position), 0);
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001172 best[a].heat[5]=0;
1173 for(i=10; i >= 0; i--) av_push(heat, newSVnv(best[a].heat[i]));
1174 hv_store(hash, "heat", strlen("heat"), newRV_noinc((SV*)heat), 0);
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001175 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietz271e2a42016-03-22 11:37:43 +01001176 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001177 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001178 }
Marc Kupietz000ad862016-02-26 14:59:12 +01001179end:
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001180 words = old_words;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001181 free(best);
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001182 return newRV_noinc((SV*)result);
Marc Kupietz000ad862016-02-26 14:59:12 +01001183}
Marc Kupietz7bc85fd2016-02-24 11:42:41 +01001184
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001185int dump_vecs(char *fname) {
1186 long i, j;
1187 FILE *f;
Marc Kupietz0a68a792018-12-20 11:41:45 +01001188 if(words>100000)
1189 words=100000;
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001190
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001191 if((f=fopen(fname, "w")) == NULL) {
1192 fprintf(stderr, "cannot open %s for writing\n", fname);
1193 return(-1);
1194 }
1195 fprintf(f, "%lld %lld\n", words, size);
1196 for (i=0; i < words; i++) {
1197 fprintf(f, "%s ", &vocab[i * max_w]);
1198 for(j=0; j < size - 1; j++)
1199 fprintf(f, "%f ", M[i*size + j]);
1200 fprintf(f, "%f\n", M[i*size + j]);
1201 }
1202 fclose(f);
1203 return(0);
1204}
Marc Kupietzdc22b982015-10-09 09:19:34 +02001205
Marc Kupietzfa194262018-06-05 09:39:32 +02001206int dump_for_numpy(char *fname) {
1207 long i, j;
1208 FILE *f;
1209 /* if(words>200000) */
1210 /* words=200000; */
1211
1212 if((f=fopen(fname, "w")) == NULL) {
1213 fprintf(stderr, "cannot open %s for writing\n", fname);
1214 return(-1);
1215 }
1216 for (i=0; i < words; i++) {
1217 for(j=0; j < size - 1; j++)
1218 fprintf(f, "%f\t", M[i*size + j]);
1219 fprintf(f, "%f\n", M[i*size + j]);
1220 }
1221 fclose(f);
1222 return(0);
1223}