blob: 605db6c1ebb7c5e0f796fafca42deb0746e1f11a [file] [log] [blame]
Marc Kupietzdc22b982015-10-09 09:19:34 +02001#!/usr/local/bin/perl
2use Inline C;
Marc Kupietza2e64502016-04-27 09:53:51 +02003use Inline C => Config => CLEAN_AFTER_BUILD => 0, ccflags => $Config{ccflags}." -O4";
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;
14app->static->paths->[0] = getcwd;
15
Marc Kupietzd4227392016-03-01 16:45:12 +010016plugin 'Log::Access';
Marc Kupietzb3422c12017-07-04 14:12:11 +020017plugin "RequestBase";
Marc Kupietzdc22b982015-10-09 09:19:34 +020018
Marc Kupietza5b90152016-03-15 17:39:19 +010019our $opt_i = 0; # latin1-input?
20our $opt_l = undef;
21our $opt_p = 5676;
Marc Kupietza2e64502016-04-27 09:53:51 +020022our $opt_m;
Marc Kupietz6ed81872016-04-27 14:04:04 +020023our $opt_M;
Marc Kupietz43ee87e2016-04-25 10:50:08 +020024our $opt_n = '';
25our $opt_d;
Marc Kupietz5c3887d2016-04-28 08:53:35 +020026our $opt_G;
Marc Kupietza5b90152016-03-15 17:39:19 +010027
Marc Kupietz6ed81872016-04-27 14:04:04 +020028my %marked;
Marc Kupietz793413b2016-04-02 21:48:57 +020029my $training_args="";
Marc Kupietza2e64502016-04-27 09:53:51 +020030my $mergedEnd=0;
Marc Kupietz15987412017-11-07 15:56:58 +010031my %cache;
Marc Kupietz793413b2016-04-02 21:48:57 +020032
Marc Kupietza5f60042017-05-04 10:38:12 +020033getopts('d:Gil:p:m:n:M:');
Marc Kupietz6ed81872016-04-27 14:04:04 +020034
35if($opt_M) {
Marc Kupietzed930212016-04-27 15:42:38 +020036 open my $handle, '<:encoding(UTF-8)', $opt_M
37 or die "Can't open '$opt_M' for reading: $!";
38 while(<$handle>) {
Marc Kupietz6ed81872016-04-27 14:04:04 +020039 foreach my $mw (split /\s+/) {
40 $marked{$mw}=1
41 }
42 }
Marc Kupietzed930212016-04-27 15:42:38 +020043 close($handle);
Marc Kupietz6ed81872016-04-27 14:04:04 +020044}
Marc Kupietza5b90152016-03-15 17:39:19 +010045
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010046# -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 +010047if(!$ARGV[0]) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010048 init_net("vectors15.bin", $opt_n, ($opt_i? 1 : 0));
Marc Kupietz2cb667e2016-03-10 09:44:12 +010049} else {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010050 init_net($ARGV[0], $opt_n, ($opt_i? 1 : 0));
Marc Kupietz793413b2016-04-02 21:48:57 +020051 if(open(FILE, "$ARGV[0].args")) {
52 $training_args = <FILE>;
53 }
54 close(FILE);
Marc Kupietz2cb667e2016-03-10 09:44:12 +010055}
Marc Kupietzdc22b982015-10-09 09:19:34 +020056
Marc Kupietza2e64502016-04-27 09:53:51 +020057if($opt_m) {
58 $mergedEnd = mergeVectors($opt_m);
59}
60
Marc Kupietz6ed81872016-04-27 14:04:04 +020061
Marc Kupietz43ee87e2016-04-25 10:50:08 +020062if($opt_d) { # -d: dump vecs and exit
63 dump_vecs($opt_d);
64 exit;
65}
66
Marc Kupietza5b90152016-03-15 17:39:19 +010067my $daemon = Mojo::Server::Daemon->new(
68 app => app,
69 listen => ['http://'.($opt_l ? $opt_l : '*').":$opt_p"]
70);
71
Marc Kupietz5c3887d2016-04-28 08:53:35 +020072if($opt_G) {
73 print "Filtering garbage\n";
74 filter_garbage();
75}
76
Marc Kupietz554aff52017-11-09 14:42:09 +010077get '*/js/*' => sub {
Marc Kupietzffef9302017-11-07 15:58:01 +010078 my $c = shift;
79 my $url = $c->req->url;
80 $url =~ s@/derekovecs@@g;
81 $c->app->log->info("GET: " . $url);
82 $c->reply->static($url);
83};
84
Marc Kupietzdf3d4b52017-11-29 16:57:27 +010085get '*/img/*' => sub {
86 my $c = shift;
87 my $url = $c->req->url;
88 $url =~ s@/derekovecs@@g;
89 $c->app->log->info("GET: " . $url);
90 $c->reply->static($url);
91};
92
Marc Kupietzdc22b982015-10-09 09:19:34 +020093get '/' => sub {
94 my $c = shift;
Marc Kupietza5f60042017-05-04 10:38:12 +020095 $c->app->log->info("get: ".$c->req->url->to_abs);
Marc Kupietzdc22b982015-10-09 09:19:34 +020096 my $word=$c->param('word');
Marc Kupietz44bee3c2016-02-25 16:26:29 +010097 my $no_nbs=$c->param('n') || 100;
98 my $no_iterations=$c->param('N') || 2000;
Marc Kupietzd4227392016-03-01 16:45:12 +010099 my $perplexity=$c->param('perplexity') || 20;
Marc Kupietzc4d62f82016-03-01 11:04:24 +0100100 my $epsilon=$c->param('epsilon') || 5;
Marc Kupietzd7aea722016-03-02 11:59:12 +0100101 my $som=$c->param('som') || 0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200102 my $searchBaseVocabFirst=$c->param('sbf') || 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100103 my $sort=$c->param('sort') || 0;
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100104 my $csv=$c->param('csv') || 0;
Marc Kupietzb613b052016-04-28 14:11:59 +0200105 my $json=$c->param('json') || 0;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100106 my $cutoff=$c->param('cutoff') || 1000000;
Marc Kupietzd91212f2017-11-13 10:05:09 +0100107 my $dedupe=$c->param('dedupe') || 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100108 my $res;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100109 my @lists;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100110 my @collocations;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100111 if(defined($word) && $word !~ /^\s*$/) {
112 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100113 $word =~ s/\s+/ /g;
114 for my $w (split(' *\| *', $word)) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100115 if ($cache{$w.$cutoff.$no_nbs.$sort.$dedupe}) {
Marc Kupietz15987412017-11-07 15:56:58 +0100116 $c->app->log->info("Getting $w results from cache");
Marc Kupietzd91212f2017-11-13 10:05:09 +0100117 $res = $cache{$w.$cutoff.$no_nbs.$sort.$dedupe}
Marc Kupietza5b90152016-03-15 17:39:19 +0100118 } else {
Marc Kupietz15987412017-11-07 15:56:58 +0100119 $c->app->log->info('Looking for neighbours of '.$w);
120 if($opt_i) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100121 $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe);
Marc Kupietz15987412017-11-07 15:56:58 +0100122 } else {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100123 $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe);
Marc Kupietz15987412017-11-07 15:56:58 +0100124 }
Marc Kupietz2dd2dd72017-12-01 22:08:14 +0100125 $cache{$w.$cutoff.$no_nbs.$sort.$dedupe} = $res;
Marc Kupietza5b90152016-03-15 17:39:19 +0100126 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100127 push(@lists, $res->{paradigmatic});
Marc Kupietz15987412017-11-07 15:56:58 +0100128 }
129 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100130 $word =~ s/ *\| */ | /g;
Marc Kupietzb613b052016-04-28 14:11:59 +0200131 if($json) {
132 return $c->render(json => {word => $word, list => \@lists, collocators=>$res->{syntagmatic}});
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100133 } elsif($csv) {
134 my $csv_data="";
135 for (my $i=0; $i <= $no_nbs; $i++) {
136 $csv_data .= $res->{paradigmatic}->[$i]->{word} . ", ";
137 }
138 for (my $i=0; $i < $no_nbs; $i++) {
139 $csv_data .= $res->{syntagmatic}->[$i]->{word} . ", ";
140 }
141 chop $csv_data;
142 chop $csv_data;
143 $csv_data .= "\n";
144 return $c->render(text=>$csv_data);
Marc Kupietzb613b052016-04-28 14:11:59 +0200145 } else {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100146 $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, dedupe=> $dedupe, marked=>\%marked, lists=> \@lists, collocators=> $res->{syntagmatic});
Marc Kupietzb613b052016-04-28 14:11:59 +0200147 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200148};
149
Marc Kupietz30ca4342017-11-22 21:21:20 +0100150helper(bitvec2window => sub {
151 my ($self, $n) = @_;
152 my $str = unpack("B32", pack("N", $n));
153 $str =~ s/^\d{22}//;
154 $str =~ s/^(\d{5})/$1x/;
155 $str =~ s/0/·/g;
156 $str =~ s/1/+/g;
157 return $str;
158 });
159
Marc Kupietza5b90152016-03-15 17:39:19 +0100160$daemon->run; # app->start;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200161
162exit;
163
164__END__
165
166__C__
167#include <stdio.h>
168#include <string.h>
169#include <math.h>
170#include <malloc.h>
171#include <stdlib.h> //strlen
Marc Kupietzf0809762016-02-26 10:13:47 +0100172#include <sys/mman.h>
Marc Kupietz000ad862016-02-26 14:59:12 +0100173#include <pthread.h>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200174
175#define max_size 2000
176#define max_w 50
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100177#define MAX_NEIGHBOURS 1000
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100178#define MAX_WORDS -1
Marc Kupietz000ad862016-02-26 14:59:12 +0100179#define MAX_THREADS 100
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100180#define MAX_CC 50
181#define EXP_TABLE_SIZE 1000
182#define MAX_EXP 6
Marc Kupietz271e2a42016-03-22 11:37:43 +0100183#define MIN_RESP 0.50
Marc Kupietzdc22b982015-10-09 09:19:34 +0200184
185//the thread function
186void *connection_handler(void *);
Marc Kupietz000ad862016-02-26 14:59:12 +0100187
188typedef struct {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100189 long long wordi;
190 long position;
191 float activation;
Marc Kupietza77acce2017-11-30 16:59:07 +0100192 float cprobability; // column wise probability
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100193 float probability;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100194 float activation_sum;
195 float conorm;
196 float max_activation;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100197} collocator;
198
199typedef struct {
200 collocator *best;
Marc Kupietz80abb442016-03-23 21:04:08 +0100201 int length;
Marc Kupietz000ad862016-02-26 14:59:12 +0100202} knn;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100203
Marc Kupietz000ad862016-02-26 14:59:12 +0100204typedef struct {
Marc Kupietz48c29682016-03-19 11:30:43 +0100205 long long wordi[MAX_NEIGHBOURS];
206 char sep[MAX_NEIGHBOURS];
207 int length;
208} wordlist;
209
210typedef struct {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100211 long cutoff;
Marc Kupietz48c29682016-03-19 11:30:43 +0100212 wordlist *wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100213 char *token;
214 int N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100215 long from;
Marc Kupietz000ad862016-02-26 14:59:12 +0100216 unsigned long upto;
Marc Kupietzc55c8872017-12-01 23:27:10 +0100217 collocator *best;
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100218 float *target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100219 float *window_sums;
Marc Kupietz000ad862016-02-26 14:59:12 +0100220} knnpars;
221
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200222float *M, *M2=0L, *syn1neg_window, *expTable;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100223float *window_sums;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200224char *vocab;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200225char *garbage = NULL;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100226
Marc Kupietza2e64502016-04-27 09:53:51 +0200227long long words, size, merged_end;
Marc Kupietza5f60042017-05-04 10:38:12 +0200228long long merge_words = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100229int num_threads=20;
Marc Kupietza5b90152016-03-15 17:39:19 +0100230int latin_enc=0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100231int window;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200232
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100233int init_net(char *file_name, char *net_name, int latin) {
Marc Kupietz67c20282016-02-26 09:42:00 +0100234 FILE *f, *binvecs, *binwords;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100235 int binwords_fd, binvecs_fd, net_fd, i;
Marc Kupietz82b02672016-02-26 12:32:25 +0100236 long long a, b, c, d, cn;
237 float len;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200238 double val;
Marc Kupietz82b02672016-02-26 12:32:25 +0100239
Marc Kupietz67c20282016-02-26 09:42:00 +0100240 char binvecs_fname[256], binwords_fname[256];
241 strcpy(binwords_fname, file_name);
242 strcat(binwords_fname, ".words");
243 strcpy(binvecs_fname, file_name);
244 strcat(binvecs_fname, ".vecs");
Marc Kupietzdc22b982015-10-09 09:19:34 +0200245
Marc Kupietza5b90152016-03-15 17:39:19 +0100246 latin_enc = latin;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200247 f = fopen(file_name, "rb");
248 if (f == NULL) {
249 printf("Input file %s not found\n", file_name);
250 return -1;
251 }
252 fscanf(f, "%lld", &words);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100253 if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200254 fscanf(f, "%lld", &size);
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100255 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) {
256 printf("Converting %s to memory mappable structures\n", file_name);
Marc Kupietzf0809762016-02-26 10:13:47 +0100257 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
258 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
259 if (M == NULL) {
260 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
261 return -1;
262 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200263 if(strstr(file_name, ".txt")) {
264 for (b = 0; b < words; b++) {
265 a = 0;
266 while (1) {
267 vocab[b * max_w + a] = fgetc(f);
268 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
269 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
270 }
271 vocab[b * max_w + a] = 0;
272 len = 0;
273 for (a = 0; a < size; a++) {
274 fscanf(f, "%lf", &val);
275 M[a + b * size] = val;
276 len += val * val;
277 }
278 len = sqrt(len);
279 for (a = 0; a < size; a++) M[a + b * size] /= len;
280 }
281 } else {
282 for (b = 0; b < words; b++) {
283 a = 0;
284 while (1) {
285 vocab[b * max_w + a] = fgetc(f);
286 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
287 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
288 }
289 vocab[b * max_w + a] = 0;
290 fread(&M[b * size], sizeof(float), size, f);
291 len = 0;
292 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
293 len = sqrt(len);
294 for (a = 0; a < size; a++) M[a + b * size] /= len;
295 }
296 }
Marc Kupietz67c20282016-02-26 09:42:00 +0100297 if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) {
298 fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs);
299 fclose(binvecs);
300 fwrite(vocab, sizeof(char), (long long)words * max_w, binwords);
301 fclose(binwords);
302 }
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100303 }
304 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
305 M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0);
306 vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0);
307 if (M == MAP_FAILED || vocab == MAP_FAILED) {
308 close(binvecs_fd);
309 close(binwords_fd);
310 fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname);
311 exit(-1);
312 }
313 } else {
314 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
315 exit(-1);
Marc Kupietz67c20282016-02-26 09:42:00 +0100316 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200317 fclose(f);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100318
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200319 if(net_name && strlen(net_name) > 0) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100320 if( (net_fd = open(net_name, O_RDONLY)) >= 0) {
321 window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2;
322 // lseek(net_fd, sizeof(float) * words * size, SEEK_SET);
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100323 // munmap(M, sizeof(float) * words * size);
324 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 +0200325 if (M2 == MAP_FAILED) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100326 close(net_fd);
327 fprintf(stderr, "Cannot mmap %s\n", net_name);
328 exit(-1);
329 }
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100330 syn1neg_window = M2 + words * size;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100331 } else {
332 fprintf(stderr, "Cannot open %s\n", net_name);
333 exit(-1);
334 }
335 fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window);
336 }
337
338 expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float));
339 for (i = 0; i < EXP_TABLE_SIZE; i++) {
340 expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table
341 expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1)
342 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100343 window_sums = malloc(sizeof(float) * (window+1) * 2);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200344 return 0;
345}
346
Marc Kupietza2e64502016-04-27 09:53:51 +0200347long mergeVectors(char *file_name){
348 FILE *f, *binvecs, *binwords;
349 int binwords_fd, binvecs_fd, net_fd, i;
350 long long a, b, c, d, cn;
351 float len;
352 float *merge_vecs;
353 char *merge_vocab;
Marc Kupietza5f60042017-05-04 10:38:12 +0200354 /* long long merge_words, merge_size; */
355 long long merge_size;
Marc Kupietza2e64502016-04-27 09:53:51 +0200356
357 char binvecs_fname[256], binwords_fname[256];
358 strcpy(binwords_fname, file_name);
359 strcat(binwords_fname, ".words");
360 strcpy(binvecs_fname, file_name);
361 strcat(binvecs_fname, ".vecs");
362
363 f = fopen(file_name, "rb");
364 if (f == NULL) {
365 printf("Input file %s not found\n", file_name);
366 exit -1;
367 }
368 fscanf(f, "%lld", &merge_words);
369 fscanf(f, "%lld", &merge_size);
370 if(merge_size != size){
371 fprintf(stderr, "vectors must have the same length\n");
372 exit(-1);
373 }
374 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
375 merge_vecs = malloc(sizeof(float) * (words + merge_words) * size);
376 merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w);
377 if (merge_vecs == NULL || merge_vocab == NULL) {
378 close(binvecs_fd);
379 close(binwords_fd);
380 fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname);
381 exit(-1);
382 }
383 read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float));
384 read(binwords_fd, merge_vocab, merge_words * max_w);
385 } else {
386 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
387 exit(-1);
388 }
389 printf("Successfully reallocated memory\nMerging...\n");
390 fflush(stdout);
391 memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float));
392 memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w);
393 munmap(M, words * size * sizeof(float));
394 munmap(vocab, words * max_w);
395 M = merge_vecs;
396 vocab = merge_vocab;
397 merged_end = merge_words;
398 words += merge_words;
399 fclose(f);
400 printf("merged_end: %lld, words: %lld\n", merged_end, words);
401 return((long) merged_end);
402}
403
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200404void filter_garbage() {
405 long i;
Marc Kupietzab591a82016-04-28 14:08:49 +0200406 unsigned char *w, previous, c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200407 garbage = malloc(words);
408 memset(garbage, 0, words);
409 for (i = 0; i < words; i++) {
410 w = vocab + i * max_w;
411 previous = 0;
Marc Kupietzab591a82016-04-28 14:08:49 +0200412 while((c = *w++) && !garbage[i]) {
413 if( ((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) ||
414 (previous == '-' && (c & 32)) ||
Marc Kupietz33e3aa12017-11-09 16:19:38 +0100415 (previous == 0xc2 && (c == 0xa4 || c == 0xb6 )) ||
416 c == '<'
Marc Kupietzab591a82016-04-28 14:08:49 +0200417 ) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200418 garbage[i]=1;
419 continue;
420 }
421 previous = c;
422 }
423 }
424 return;
425}
426
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100427void *getCollocators(void *args) {
428 knnpars *pars = args;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100429 int N = pars->N;
430 int cc = pars->wl->wordi[0];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100431 knn *nbs = NULL;
432 long window_layer_size = size * window * 2;
433 long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target;
434 float f, max_f, maxmax_f;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100435 float *target_sums, worstbest, wpos_sum;
436 collocator *best;
Marc Kupietzd5642582016-03-19 22:23:13 +0100437
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200438 if(M2 == NULL || cc == -1)
Marc Kupietzd5642582016-03-19 22:23:13 +0100439 return NULL;
440
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100441 a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100442 best = malloc(N * sizeof(collocator));
Marc Kupietz271e2a42016-03-22 11:37:43 +0100443 worstbest = MIN_RESP;
444
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100445 for (b = 0; b < pars->cutoff; b++)
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100446 target_sums[b]=0;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100447 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100448 best[b].wordi = -1;
449 best[b].probability = 1;
450 best[b].activation = worstbest;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100451 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100452
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100453 d = cc;
454 maxmax_f = -1;
455 maxmax_target = 0;
456
Marc Kupietz271e2a42016-03-22 11:37:43 +0100457 for (a = pars->from; a < pars->upto; a++) {
458 if(a >= window)
459 a++;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100460 wpos_sum = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100461 printf("window pos: %ld\n", a);
462 if (a != window) {
463 max_f = -1;
464 window_offset = a * size;
465 if (a > window)
466 window_offset -= size;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100467 for(target = 0; target < pars->cutoff; target ++) {
468 if(garbage && garbage[target]) continue;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100469 if(target == d)
470 continue;
471 f = 0;
472 for (c = 0; c < size; c++)
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100473 f += M2[d* size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100474 if (f < -MAX_EXP)
475 continue;
476 else if (f > MAX_EXP)
477 continue;
478 else
479 f = expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100480 wpos_sum += f;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100481
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100482 target_sums[target] += f;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100483 if(f > worstbest) {
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100484 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100485 if (f > best[b].activation) {
486 memmove(best + b + 1, best + b, (N - b -1) * sizeof(collocator));
487 best[b].activation = f;
488 best[b].wordi = target;
489 best[b].position = window-a;
Marc Kupietz33679a32016-03-22 08:49:39 +0100490 break;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100491 }
492 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100493 if(b == N - 1)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100494 worstbest = best[N-1].activation;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100495 }
496 }
497 printf("%d %.2f\n", max_target, max_f);
498 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
499 if(max_f > maxmax_f) {
500 maxmax_f = max_f;
501 maxmax_target = max_target;
502 }
Marc Kupietz33679a32016-03-22 08:49:39 +0100503 for (b = 0; b < N; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100504 if(best[b].position == window-a)
Marc Kupietza77acce2017-11-30 16:59:07 +0100505 best[b].cprobability = best[b].activation / wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100506 } else {
507 printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]);
508 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100509 pars->window_sums[a] = wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100510 }
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100511 for (b = 0; b < pars->cutoff; b++)
Marc Kupietza77acce2017-11-30 16:59:07 +0100512 pars->target_sums[b] += target_sums[b]; //(target_sums[b] / wpos_sum ) / (window * 2);
513 printf("Target-Summe von 0: %f\n", pars->target_sums[150298]);
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100514 free(target_sums);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100515 for(b=0; b<N && best[b].wordi >= 0; b++);; // THIS LOOP IS NEEDED (b...)
516// 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 +0100517// printf("\n");
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100518 nbs = malloc(sizeof(knn));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100519 nbs->best = best;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100520 nbs->length = b-1;
521 pthread_exit(nbs);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100522}
523
Marc Kupietz30ca4342017-11-22 21:21:20 +0100524
Marc Kupietza2e64502016-04-27 09:53:51 +0200525wordlist *getTargetWords(char *st1, int search_backw) {
Marc Kupietz48c29682016-03-19 11:30:43 +0100526 wordlist *wl = malloc(sizeof(wordlist));
527 char st[100][max_size], sep[100];
528 long a, b=0, c=0, cn=0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200529 int unmerged;
530
Marc Kupietzdc22b982015-10-09 09:19:34 +0200531 while (1) {
532 st[cn][b] = st1[c];
533 b++;
534 c++;
535 st[cn][b] = 0;
536 if (st1[c] == 0) break;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100537 if (st1[c] == ' ' || st1[c] == '-') {
538 sep[cn++] = st1[c];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200539 b = 0;
540 c++;
541 }
542 }
543 cn++;
544 for (a = 0; a < cn; a++) {
Marc Kupietza2e64502016-04-27 09:53:51 +0200545 if(search_backw) {
546 for (b = words - 1; b >= 0; b--) if (!strcmp(&vocab[b * max_w], st[a])) break;
547 } else {
548 for (b = 0; b < words; b++) if (!strcmp(&vocab[b * max_w], st[a])) break;
549 }
Marc Kupietz34a3ee92016-02-27 22:43:16 +0100550 if (b == words) b = -1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100551 wl->wordi[a] = b;
552 fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", st[a], wl->wordi[a]);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200553 if (b == -1) {
Marc Kupietze8da3062016-02-25 08:37:53 +0100554 fprintf(stderr, "Out of dictionary word!\n");
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100555 cn--;
Marc Kupietzf9ac54e2017-11-21 09:22:29 +0100556 free(wl);
557 return NULL;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200558 }
559 }
Marc Kupietz48c29682016-03-19 11:30:43 +0100560 wl->length=cn;
561 return(wl);
562}
563
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100564void *_get_neighbours(void *arg) {
565 knnpars *pars = arg;
Marc Kupietz48c29682016-03-19 11:30:43 +0100566 char *st1 = pars->token;
567 int N = pars->N;
568 long from = pars -> from;
569 unsigned long upto = pars -> upto;
570 char file_name[max_size], st[100][max_size], *sep;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100571 float dist, len, vec[max_size];
572 long long a, b, c, d, cn, *bi;
Marc Kupietz48c29682016-03-19 11:30:43 +0100573 char ch;
574 knn *nbs = NULL;
575 wordlist *wl = pars->wl;
576
Marc Kupietzc55c8872017-12-01 23:27:10 +0100577 collocator *best = pars->best;
Marc Kupietz48c29682016-03-19 11:30:43 +0100578
579 float worstbest=-1;
580
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100581 for (a = 0; a < N; a++) best[a].activation = 0;
Marc Kupietz48c29682016-03-19 11:30:43 +0100582 a = 0;
583 bi = wl->wordi;
584 cn = wl->length;
585 sep = wl->sep;
586 b = bi[0];
587 c = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100588 if (b == -1) {
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100589 N = 0;
590 goto end;
591 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200592 for (a = 0; a < size; a++) vec[a] = 0;
593 for (b = 0; b < cn; b++) {
594 if (bi[b] == -1) continue;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100595 if(b>0 && sep[b-1] == '-')
596 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
597 else
598 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200599 }
600 len = 0;
601 for (a = 0; a < size; a++) len += vec[a] * vec[a];
602 len = sqrt(len);
603 for (a = 0; a < size; a++) vec[a] /= len;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100604 for (a = 0; a < N; a++) best[a].activation = -1;
Marc Kupietz000ad862016-02-26 14:59:12 +0100605 for (c = from; c < upto; c++) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200606 if(garbage && garbage[c]) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200607 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +0100608// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +0100609// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
610// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200611 dist = 0;
612 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100613 if(dist > worstbest) {
614 for (a = 0; a < N; a++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100615 if (dist > best[a].activation) {
616 memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator));
617 best[a].activation = dist;
618 best[a].wordi = c;
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100619 break;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200620 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200621 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100622 worstbest = best[N-1].activation;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200623 }
624 }
Marc Kupietz34020dc2016-02-25 08:44:19 +0100625
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100626end:
Marc Kupietz000ad862016-02-26 14:59:12 +0100627 pthread_exit(nbs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200628}
629
Marc Kupietze0e42132017-11-24 16:44:34 +0100630int cmp_activation (const void * a, const void * b) {
631 float fb = ((collocator *)a)->activation;
632 float fa = ((collocator *)b)->activation;
633 return (fa > fb) - (fa < fb);
634}
635
636int cmp_probability (const void * a, const void * b) {
637 float fb = ((collocator *)a)->probability;
638 float fa = ((collocator *)b)->probability;
639 return (fa > fb) - (fa < fb);
640}
641
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100642
Marc Kupietzd91212f2017-11-13 10:05:09 +0100643SV *get_neighbours(char *st1, int N, int sort_by, int search_backw, long cutoff, int dedupe) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100644 HV *result = newHV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100645 float *target_sums, vec[max_size];
Marc Kupietza5f60042017-05-04 10:38:12 +0200646 long long old_words;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100647 long a, b, c, d, slice;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100648 knn *para_nbs[MAX_THREADS];
649 knn *syn_nbs[MAX_THREADS];
Marc Kupietz000ad862016-02-26 14:59:12 +0100650 knnpars pars[MAX_THREADS];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100651 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
Marc Kupietz48c29682016-03-19 11:30:43 +0100652 wordlist *wl;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200653 int syn_threads = (M2? window * 2 : 0);
654 int para_threads = num_threads - syn_threads;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100655
Marc Kupietzc55c8872017-12-01 23:27:10 +0100656 collocator *best;
657 posix_memalign((void **) &best, 128, 10 * N * sizeof(collocator));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100658
Marc Kupietz000ad862016-02-26 14:59:12 +0100659 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
660
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100661 if(cutoff < 1)
662 cutoff=words;
663
Marc Kupietza2e64502016-04-27 09:53:51 +0200664 wl = getTargetWords(st1, search_backw);
Marc Kupietzf9ac54e2017-11-21 09:22:29 +0100665 if(wl == NULL || wl->length < 1)
Marc Kupietz271e2a42016-03-22 11:37:43 +0100666 goto end;
Marc Kupietz48c29682016-03-19 11:30:43 +0100667
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100668 old_words = cutoff;
Marc Kupietza5f60042017-05-04 10:38:12 +0200669 if(merge_words > 0)
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100670 cutoff = merge_words * 1.25; /* HACK */
671 slice = cutoff / para_threads;
Marc Kupietza5f60042017-05-04 10:38:12 +0200672
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100673 a = posix_memalign((void **) &target_sums, 128, cutoff * sizeof(float));
674 for(a = 0; a < cutoff; a++)
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100675 target_sums[a] = 0;
676
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200677 printf("Starting %d threads\n", para_threads);
678 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100679 for(a=0; a < para_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100680 pars[a].cutoff = cutoff;
Marc Kupietz000ad862016-02-26 14:59:12 +0100681 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100682 pars[a].wl = wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100683 pars[a].N = N;
Marc Kupietzc55c8872017-12-01 23:27:10 +0100684 pars[a].best = &best[N*a];
Marc Kupietz000ad862016-02-26 14:59:12 +0100685 pars[a].from = a*slice;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100686 pars[a].upto = ((a+1)*slice > cutoff? cutoff:(a+1)*slice);
Marc Kupietz000ad862016-02-26 14:59:12 +0100687 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
688 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200689 if(M2) {
690 for(a=0; a < syn_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100691 pars[a + para_threads].cutoff = cutoff;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200692 pars[a + para_threads].target_sums = target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100693 pars[a + para_threads].window_sums = window_sums;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200694 pars[a + para_threads].wl = wl;
695 pars[a + para_threads].N = N;
696 pars[a + para_threads].from = a;
697 pars[a + para_threads].upto = a+1;
698 pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *) &pars[a + para_threads]);
699 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100700 }
701 printf("Waiting for para threads to join\n");
702 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100703 for (a = 0; a < para_threads; a++) pthread_join(pt[a], (void *) &para_nbs[a]);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100704 printf("Para threads joint\n");
705 fflush(stdout);
Marc Kupietz000ad862016-02-26 14:59:12 +0100706
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200707 /* if(!syn_nbs[0]) */
708 /* goto end; */
Marc Kupietz000ad862016-02-26 14:59:12 +0100709
Marc Kupietzc55c8872017-12-01 23:27:10 +0100710 qsort(best, N*para_threads, sizeof(collocator), cmp_activation);
Marc Kupietz000ad862016-02-26 14:59:12 +0100711
Marc Kupietz000ad862016-02-26 14:59:12 +0100712
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100713 long long chosen[MAX_NEIGHBOURS];
714 printf("N: %ld\n", N);
715
Marc Kupietz271e2a42016-03-22 11:37:43 +0100716 AV* array = newAV();
Marc Kupietzd91212f2017-11-13 10:05:09 +0100717 int i, j;
Marc Kupietza5f60042017-05-04 10:38:12 +0200718 int l1_words=0, l2_words=0;
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100719
720 for (a = 0, i = 0; i < N && a < N*para_threads; a++) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100721 int filtered=0;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100722 long long c = best[a].wordi;
Marc Kupietzd91212f2017-11-13 10:05:09 +0100723 if (dedupe && i > 0) {
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100724 for (j=0; j<i && !filtered; j++)
725 if (strcasestr(&vocab[c * max_w], &vocab[chosen[j] * max_w]) ||
726 strcasestr(&vocab[chosen[j] * max_w], &vocab[c * max_w])) {
727 printf("filtering %s %s\n", &vocab[chosen[j] * max_w], &vocab[c * max_w]);
Marc Kupietzd91212f2017-11-13 10:05:09 +0100728 filtered = 1;
729 }
730 if(filtered)
731 continue;
732 }
Marc Kupietza5f60042017-05-04 10:38:12 +0200733 if(merge_words > 0) {
734 if(c >= merge_words) {
735 if(l1_words > N / 2)
736 continue;
737 else
738 l1_words++;
739 } else {
740 if(l2_words > N / 2)
741 continue;
742 else
743 l2_words++;
744 }
745 }
Marc Kupietza5f60042017-05-04 10:38:12 +0200746 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 +0100747 fflush(stdout);
Marc Kupietza5f60042017-05-04 10:38:12 +0200748
Marc Kupietz271e2a42016-03-22 11:37:43 +0100749 HV* hash = newHV();
Marc Kupietza5f60042017-05-04 10:38:12 +0200750 SV* word = newSVpvf(&vocab[c * max_w], 0);
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100751 chosen[i] = c;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100752 if(latin_enc == 0) SvUTF8_on(word);
Marc Kupietza5f60042017-05-04 10:38:12 +0200753 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100754 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100755 hv_store(hash, "dist", strlen("dist"), newSVnv(best[a].activation), 0);
756 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100757 AV *vector = newAV();
758 for (b = 0; b < size; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100759 av_push(vector, newSVnv(M[b + best[a].wordi * size]));
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100760 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100761 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
762 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietza5f60042017-05-04 10:38:12 +0200763 i++;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100764 }
765 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0);
766
Marc Kupietz50485ba2016-03-23 09:13:14 +0100767 for(b=0; b < MAX_NEIGHBOURS; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100768 best[b].wordi = -1L;
769 best[b].activation = 0;
770 best[b].probability = 0;
771 best[b].position = 0;
772 best[b].activation_sum = 0;
Marc Kupietz50485ba2016-03-23 09:13:14 +0100773 }
774
Marc Kupietza77acce2017-11-30 16:59:07 +0100775 float total_activation = 0;
776
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200777 if (M2) {
778 printf("Waiting for syn threads to join\n");
779 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100780 for (a = 0; a < syn_threads; a++) pthread_join(pt[a+para_threads], (void *) &syn_nbs[a]);
Marc Kupietza77acce2017-11-30 16:59:07 +0100781 for (a = 0; a <= syn_threads; a++) {
782 total_activation += window_sums[a];
783 printf("window pos: %d, sum: %f\n", a, window_sums[a]);
784 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200785 printf("syn threads joint\n");
786 fflush(stdout);
Marc Kupietz50485ba2016-03-23 09:13:14 +0100787
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200788 for(b=0; b < syn_nbs[0]->length; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100789 memcpy(best + b, &syn_nbs[0]->best[b], sizeof(collocator));
790 best[b].position = -1; // syn_nbs[0]->pos[b];
791 best[b].activation_sum = target_sums[syn_nbs[0]->best[b].wordi];
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100792 best[b].max_activation = 0.0;
793 best[b].conorm = 0.0;
794 best[b].probability = 0.0;
Marc Kupietza77acce2017-11-30 16:59:07 +0100795 best[b].cprobability = syn_nbs[0]->best[b].cprobability;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200796 }
Marc Kupietz30ca4342017-11-22 21:21:20 +0100797
798 float best_window_sum[MAX_NEIGHBOURS];
799 int found_index=0, i=0, j, w;
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100800 for(a=0; a < syn_threads; a++) {
801 for(b=0; b < syn_nbs[a]->length; b++) {
802 for(i=0; i < found_index; i++)
803 if(best[i].wordi == syn_nbs[a]->best[b].wordi)
804 break;
805 if(i >= found_index) {
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100806 best[found_index].max_activation = 0.0;
807 best[found_index].conorm = 0.0;
808 best[found_index].probability = 0.0;
Marc Kupietza77acce2017-11-30 16:59:07 +0100809 best[found_index].cprobability = syn_nbs[a]->best[b].cprobability;
810 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 +0100811 best[found_index++].wordi = syn_nbs[a]->best[b].wordi;
812 // printf("found: %s\n", &vocab[syn_nbs[a]->index[b] * max_w]);
Marc Kupietz30ca4342017-11-22 21:21:20 +0100813 }
814 }
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100815 }
Marc Kupietza77acce2017-11-30 16:59:07 +0100816 sort_by =0; // ALWAYS AUTO-FOCUS
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100817 if(sort_by != 1 && sort_by != 2) { // sort by auto focus mean
Marc Kupietz30ca4342017-11-22 21:21:20 +0100818 printf("window: %d - syn_threads: %d, %d\n", window, syn_threads, (1 << syn_threads) -1);
Marc Kupietzbd41da32017-11-24 10:26:43 +0100819 int wpos;
Marc Kupietz30ca4342017-11-22 21:21:20 +0100820 for(i=0; i < found_index; i++) {
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100821 best[i].activation = best[i].probability = best[i].conorm = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +0100822 for(w=1; w < (1 << syn_threads); w++) { // loop through all possible windows
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100823 float word_window_sum = 0, word_window_conorm=0, word_activation_sum = 0, total_window_sum = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +0100824 int bits_set = 0;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100825 for(a=0; a < syn_threads; a++) {
Marc Kupietz30ca4342017-11-22 21:21:20 +0100826 if((1 << a) & w) {
Marc Kupietzbd41da32017-11-24 10:26:43 +0100827 wpos = (a >= window? a+1 : a);
828 total_window_sum += window_sums[wpos];
Marc Kupietz30ca4342017-11-22 21:21:20 +0100829 }
830 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100831// printf("%d window-sum %f\n", w, total_window_sum);
832 for(a=0; a < syn_threads; a++) {
833 if((1 << a) & w) {
834 wpos = (a >= window? a+1 : a);
835 bits_set++;
836 for(b=0; b < syn_nbs[a]->length; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100837 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
Marc Kupietza77acce2017-11-30 16:59:07 +0100838// float acti = syn_nbs[a]->best[b].activation / total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100839// 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 +0100840// word_window_sum += syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
841// 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 +0100842
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100843 word_window_sum += syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
Marc Kupietza77acce2017-11-30 16:59:07 +0100844// word_window_sum += acti - (word_window_sum * acti); syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
845
846 word_window_conorm += syn_nbs[a]->best[b].activation - word_window_conorm * syn_nbs[a]->best[b].activation; // conormalied activation sum
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100847 word_activation_sum += syn_nbs[a]->best[b].activation;
848 if(syn_nbs[a]->best[b].activation > best[i].max_activation)
849 best[i].max_activation = syn_nbs[a]->best[b].activation;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100850 }
851 }
852 }
853// if(bits_set) {
854// word_activation_sum /= bits_set;
855// word_window_sum /= bits_set;
856// }
Marc Kupietza77acce2017-11-30 16:59:07 +0100857
858 word_window_sum /= total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100859
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100860 if(word_window_sum > best[i].probability) {
861 best[i].probability = word_window_sum;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100862 best[i].position = w;
Marc Kupietz30ca4342017-11-22 21:21:20 +0100863 }
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100864
865 if(word_window_conorm > best[i].conorm) {
866 best[i].conorm = word_window_conorm;
867 best[i].activation = word_activation_sum;
868 }
Marc Kupietz30ca4342017-11-22 21:21:20 +0100869 }
870 }
Marc Kupietze0e42132017-11-24 16:44:34 +0100871 qsort(best, found_index, sizeof(collocator), cmp_probability);
Marc Kupietz30ca4342017-11-22 21:21:20 +0100872// for(i=0; i < found_index; i++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100873// 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 +0100874// }
875
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100876 } else if(sort_by == 1) { // responsiveness any window position
877 int wpos;
878 for(i=0; i < found_index; i++) {
879 float word_window_sum = 0, word_activation_sum = 0, total_window_sum = 0;
880 for(a=0; a < syn_threads; a++) {
881 wpos = (a >= window? a+1 : a);
882 for(b=0; b < syn_nbs[a]->length; b++)
883 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
884 best[i].probability += syn_nbs[a]->best[b].probability;
885 if(syn_nbs[a]->best[b].activation > 0.25)
886 best[i].position |= 1 << wpos;
887 if(syn_nbs[a]->best[b].activation > best[i].activation) {
888 best[i].activation = syn_nbs[a]->best[b].activation;
889 }
890 }
891 }
892 }
893 qsort(best, found_index, sizeof(collocator), cmp_activation);
894 } else if(sort_by == 2) { // single window position
Marc Kupietz30ca4342017-11-22 21:21:20 +0100895 for(a=1; a < syn_threads; a++) {
896 for(b=0; b < syn_nbs[a]->length; b++) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200897 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100898 if(syn_nbs[a]->best[b].activation > best[c].activation) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200899 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100900 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200901 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100902 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
903 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 +0200904 break;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100905 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200906 }
907 }
908 }
909 } else { // sort by mean p
910 for(a=1; a < syn_threads; a++) {
911 for(b=0; b < syn_nbs[a]->length; b++) {
912 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100913 if(target_sums[syn_nbs[a]->best[b].wordi] > best[c].activation_sum) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200914 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100915 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200916 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100917 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
918 best[c].position = (1 << 2*window) - 1; // syn_nbs[a]->pos[b];
919 best[c].activation_sum = target_sums[syn_nbs[a]->best[b].wordi];
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200920 break;
921 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100922 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100923 }
924 }
925 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200926 array = newAV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100927 for (a = 0, i=0; a < MAX_NEIGHBOURS && best[a].wordi >= 0; a++) {
928 long long c = best[a].wordi;
Marc Kupietza77acce2017-11-30 16:59:07 +0100929/*
Marc Kupietzd91212f2017-11-13 10:05:09 +0100930 if (dedupe) {
931 int filtered=0;
932 for (j=0; j<i; j++)
933 if (strcasestr(&vocab[c * max_w], chosen[j]) ||
934 strcasestr(chosen[j], &vocab[c * max_w])) {
Marc Kupietza77acce2017-11-30 16:59:07 +0100935 printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]);
936 filtered = 1;
937 }
Marc Kupietzd91212f2017-11-13 10:05:09 +0100938 if(filtered)
939 continue;
940 }
Marc Kupietza77acce2017-11-30 16:59:07 +0100941*/
Marc Kupietzd91212f2017-11-13 10:05:09 +0100942 chosen[i++]=&vocab[c * max_w];
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200943 HV* hash = newHV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100944 SV* word = newSVpvf(&vocab[best[a].wordi * max_w], 0);
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200945 if(latin_enc == 0) SvUTF8_on(word);
946 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100947 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100948 hv_store(hash, "conorm", strlen("conorm"), newSVnv(best[a].conorm), 0);
949 hv_store(hash, "prob", strlen("prob"), newSVnv(best[a].probability), 0);
Marc Kupietza77acce2017-11-30 16:59:07 +0100950 hv_store(hash, "cprob", strlen("cprob"), newSVnv(best[a].cprobability), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100951 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 +0100952 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 +0100953 hv_store(hash, "pos", strlen("pos"), newSVnv(best[a].position), 0);
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200954 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietz271e2a42016-03-22 11:37:43 +0100955 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200956 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100957 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100958end:
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100959 words = old_words;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100960 free(best);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100961 return newRV_noinc((SV*)result);
Marc Kupietz000ad862016-02-26 14:59:12 +0100962}
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100963
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200964int dump_vecs(char *fname) {
965 long i, j;
966 FILE *f;
967 /* if(words>200000) */
968 /* words=200000; */
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100969
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200970 if((f=fopen(fname, "w")) == NULL) {
971 fprintf(stderr, "cannot open %s for writing\n", fname);
972 return(-1);
973 }
974 fprintf(f, "%lld %lld\n", words, size);
975 for (i=0; i < words; i++) {
976 fprintf(f, "%s ", &vocab[i * max_w]);
977 for(j=0; j < size - 1; j++)
978 fprintf(f, "%f ", M[i*size + j]);
979 fprintf(f, "%f\n", M[i*size + j]);
980 }
981 fclose(f);
982 return(0);
983}
Marc Kupietzdc22b982015-10-09 09:19:34 +0200984