blob: a0e9e49b6900a7ec3c1e0f102eea511ea7b625a0 [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 Kupietz247500f2015-10-09 11:29:01 +02008use Encode qw(decode encode);
Marc Kupietza5b90152016-03-15 17:39:19 +01009use Getopt::Std;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010010use Mojo::Server::Daemon;
Marc Kupietzffef9302017-11-07 15:58:01 +010011use Cwd;
12app->static->paths->[0] = getcwd;
13
Marc Kupietzd4227392016-03-01 16:45:12 +010014plugin 'Log::Access';
Marc Kupietzb3422c12017-07-04 14:12:11 +020015plugin "RequestBase";
Marc Kupietzdc22b982015-10-09 09:19:34 +020016
Marc Kupietza5b90152016-03-15 17:39:19 +010017our $opt_i = 0; # latin1-input?
18our $opt_l = undef;
19our $opt_p = 5676;
Marc Kupietza2e64502016-04-27 09:53:51 +020020our $opt_m;
Marc Kupietz6ed81872016-04-27 14:04:04 +020021our $opt_M;
Marc Kupietz43ee87e2016-04-25 10:50:08 +020022our $opt_n = '';
23our $opt_d;
Marc Kupietz5c3887d2016-04-28 08:53:35 +020024our $opt_G;
Marc Kupietza5b90152016-03-15 17:39:19 +010025
Marc Kupietz6ed81872016-04-27 14:04:04 +020026my %marked;
Marc Kupietz793413b2016-04-02 21:48:57 +020027my $training_args="";
Marc Kupietza2e64502016-04-27 09:53:51 +020028my $mergedEnd=0;
Marc Kupietz15987412017-11-07 15:56:58 +010029my %cache;
Marc Kupietz793413b2016-04-02 21:48:57 +020030
Marc Kupietza5f60042017-05-04 10:38:12 +020031getopts('d:Gil:p:m:n:M:');
Marc Kupietz6ed81872016-04-27 14:04:04 +020032
33if($opt_M) {
Marc Kupietzed930212016-04-27 15:42:38 +020034 open my $handle, '<:encoding(UTF-8)', $opt_M
35 or die "Can't open '$opt_M' for reading: $!";
36 while(<$handle>) {
Marc Kupietz6ed81872016-04-27 14:04:04 +020037 foreach my $mw (split /\s+/) {
38 $marked{$mw}=1
39 }
40 }
Marc Kupietzed930212016-04-27 15:42:38 +020041 close($handle);
Marc Kupietz6ed81872016-04-27 14:04:04 +020042}
Marc Kupietza5b90152016-03-15 17:39:19 +010043
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010044# -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 +010045if(!$ARGV[0]) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010046 init_net("vectors15.bin", $opt_n, ($opt_i? 1 : 0));
Marc Kupietz2cb667e2016-03-10 09:44:12 +010047} else {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010048 init_net($ARGV[0], $opt_n, ($opt_i? 1 : 0));
Marc Kupietz793413b2016-04-02 21:48:57 +020049 if(open(FILE, "$ARGV[0].args")) {
50 $training_args = <FILE>;
51 }
52 close(FILE);
Marc Kupietz2cb667e2016-03-10 09:44:12 +010053}
Marc Kupietzdc22b982015-10-09 09:19:34 +020054
Marc Kupietza2e64502016-04-27 09:53:51 +020055if($opt_m) {
56 $mergedEnd = mergeVectors($opt_m);
57}
58
Marc Kupietz6ed81872016-04-27 14:04:04 +020059
Marc Kupietz43ee87e2016-04-25 10:50:08 +020060if($opt_d) { # -d: dump vecs and exit
61 dump_vecs($opt_d);
62 exit;
63}
64
Marc Kupietza5b90152016-03-15 17:39:19 +010065my $daemon = Mojo::Server::Daemon->new(
66 app => app,
67 listen => ['http://'.($opt_l ? $opt_l : '*').":$opt_p"]
68);
69
Marc Kupietz5c3887d2016-04-28 08:53:35 +020070if($opt_G) {
71 print "Filtering garbage\n";
72 filter_garbage();
73}
74
Marc Kupietz554aff52017-11-09 14:42:09 +010075get '*/js/*' => sub {
Marc Kupietzffef9302017-11-07 15:58:01 +010076 my $c = shift;
77 my $url = $c->req->url;
78 $url =~ s@/derekovecs@@g;
79 $c->app->log->info("GET: " . $url);
80 $c->reply->static($url);
81};
82
Marc Kupietzdc22b982015-10-09 09:19:34 +020083get '/' => sub {
84 my $c = shift;
Marc Kupietza5f60042017-05-04 10:38:12 +020085 $c->app->log->info("get: ".$c->req->url->to_abs);
Marc Kupietzdc22b982015-10-09 09:19:34 +020086 my $word=$c->param('word');
Marc Kupietz44bee3c2016-02-25 16:26:29 +010087 my $no_nbs=$c->param('n') || 100;
88 my $no_iterations=$c->param('N') || 2000;
Marc Kupietzd4227392016-03-01 16:45:12 +010089 my $perplexity=$c->param('perplexity') || 20;
Marc Kupietzc4d62f82016-03-01 11:04:24 +010090 my $epsilon=$c->param('epsilon') || 5;
Marc Kupietzd7aea722016-03-02 11:59:12 +010091 my $som=$c->param('som') || 0;
Marc Kupietza2e64502016-04-27 09:53:51 +020092 my $searchBaseVocabFirst=$c->param('sbf') || 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +010093 my $sort=$c->param('sort') || 0;
Marc Kupietzb613b052016-04-28 14:11:59 +020094 my $json=$c->param('json') || 0;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +010095 my $cutoff=$c->param('cutoff') || 1000000;
Marc Kupietzd91212f2017-11-13 10:05:09 +010096 my $dedupe=$c->param('dedupe') || 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +010097 my $res;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +010098 my @lists;
Marc Kupietz6b2975c2016-03-18 21:59:33 +010099 my @collocations;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100100 if(defined($word) && $word !~ /^\s*$/) {
101 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100102 $word =~ s/\s+/ /g;
103 for my $w (split(' *\| *', $word)) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100104 if ($cache{$w.$cutoff.$no_nbs.$sort.$dedupe}) {
Marc Kupietz15987412017-11-07 15:56:58 +0100105 $c->app->log->info("Getting $w results from cache");
Marc Kupietzd91212f2017-11-13 10:05:09 +0100106 $res = $cache{$w.$cutoff.$no_nbs.$sort.$dedupe}
Marc Kupietza5b90152016-03-15 17:39:19 +0100107 } else {
Marc Kupietz15987412017-11-07 15:56:58 +0100108 $c->app->log->info('Looking for neighbours of '.$w);
109 if($opt_i) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100110 $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe);
Marc Kupietz15987412017-11-07 15:56:58 +0100111 } else {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100112 $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe);
Marc Kupietz15987412017-11-07 15:56:58 +0100113 }
114 $cache{$w} = $res;
Marc Kupietza5b90152016-03-15 17:39:19 +0100115 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100116 push(@lists, $res->{paradigmatic});
Marc Kupietz15987412017-11-07 15:56:58 +0100117 }
118 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100119 $word =~ s/ *\| */ | /g;
Marc Kupietzb613b052016-04-28 14:11:59 +0200120 if($json) {
121 return $c->render(json => {word => $word, list => \@lists, collocators=>$res->{syntagmatic}});
122 } else {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100123 $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 +0200124 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200125};
126
Marc Kupietza5b90152016-03-15 17:39:19 +0100127$daemon->run; # app->start;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200128
129exit;
130
131__END__
132
133__C__
134#include <stdio.h>
135#include <string.h>
136#include <math.h>
137#include <malloc.h>
138#include <stdlib.h> //strlen
Marc Kupietzf0809762016-02-26 10:13:47 +0100139#include <sys/mman.h>
Marc Kupietz000ad862016-02-26 14:59:12 +0100140#include <pthread.h>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200141
142#define max_size 2000
143#define max_w 50
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100144#define MAX_NEIGHBOURS 1000
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100145#define MAX_WORDS -1
Marc Kupietz000ad862016-02-26 14:59:12 +0100146#define MAX_THREADS 100
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100147#define MAX_CC 50
148#define EXP_TABLE_SIZE 1000
149#define MAX_EXP 6
Marc Kupietz271e2a42016-03-22 11:37:43 +0100150#define MIN_RESP 0.50
Marc Kupietzdc22b982015-10-09 09:19:34 +0200151
152//the thread function
153void *connection_handler(void *);
Marc Kupietz000ad862016-02-26 14:59:12 +0100154
155typedef struct {
156 long long *index;
157 float *dist;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100158 float *norm;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100159 long long *pos;
Marc Kupietz80abb442016-03-23 21:04:08 +0100160 int length;
Marc Kupietz000ad862016-02-26 14:59:12 +0100161} knn;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100162
Marc Kupietz000ad862016-02-26 14:59:12 +0100163typedef struct {
Marc Kupietz48c29682016-03-19 11:30:43 +0100164 long long wordi[MAX_NEIGHBOURS];
165 char sep[MAX_NEIGHBOURS];
166 int length;
167} wordlist;
168
169typedef struct {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100170 long cutoff;
Marc Kupietz48c29682016-03-19 11:30:43 +0100171 wordlist *wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100172 char *token;
173 int N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100174 long from;
Marc Kupietz000ad862016-02-26 14:59:12 +0100175 unsigned long upto;
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100176 float *target_sums;
Marc Kupietz000ad862016-02-26 14:59:12 +0100177} knnpars;
178
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200179float *M, *M2=0L, *syn1neg_window, *expTable;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200180char *vocab;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200181char *garbage = NULL;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100182
Marc Kupietza2e64502016-04-27 09:53:51 +0200183long long words, size, merged_end;
Marc Kupietza5f60042017-05-04 10:38:12 +0200184long long merge_words = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100185int num_threads=20;
Marc Kupietza5b90152016-03-15 17:39:19 +0100186int latin_enc=0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100187int window;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200188
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100189int init_net(char *file_name, char *net_name, int latin) {
Marc Kupietz67c20282016-02-26 09:42:00 +0100190 FILE *f, *binvecs, *binwords;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100191 int binwords_fd, binvecs_fd, net_fd, i;
Marc Kupietz82b02672016-02-26 12:32:25 +0100192 long long a, b, c, d, cn;
193 float len;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200194 double val;
Marc Kupietz82b02672016-02-26 12:32:25 +0100195
Marc Kupietz67c20282016-02-26 09:42:00 +0100196 char binvecs_fname[256], binwords_fname[256];
197 strcpy(binwords_fname, file_name);
198 strcat(binwords_fname, ".words");
199 strcpy(binvecs_fname, file_name);
200 strcat(binvecs_fname, ".vecs");
Marc Kupietzdc22b982015-10-09 09:19:34 +0200201
Marc Kupietza5b90152016-03-15 17:39:19 +0100202 latin_enc = latin;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200203 f = fopen(file_name, "rb");
204 if (f == NULL) {
205 printf("Input file %s not found\n", file_name);
206 return -1;
207 }
208 fscanf(f, "%lld", &words);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100209 if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200210 fscanf(f, "%lld", &size);
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100211 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) {
212 printf("Converting %s to memory mappable structures\n", file_name);
Marc Kupietzf0809762016-02-26 10:13:47 +0100213 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
214 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
215 if (M == NULL) {
216 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
217 return -1;
218 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200219 if(strstr(file_name, ".txt")) {
220 for (b = 0; b < words; b++) {
221 a = 0;
222 while (1) {
223 vocab[b * max_w + a] = fgetc(f);
224 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
225 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
226 }
227 vocab[b * max_w + a] = 0;
228 len = 0;
229 for (a = 0; a < size; a++) {
230 fscanf(f, "%lf", &val);
231 M[a + b * size] = val;
232 len += val * val;
233 }
234 len = sqrt(len);
235 for (a = 0; a < size; a++) M[a + b * size] /= len;
236 }
237 } else {
238 for (b = 0; b < words; b++) {
239 a = 0;
240 while (1) {
241 vocab[b * max_w + a] = fgetc(f);
242 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
243 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
244 }
245 vocab[b * max_w + a] = 0;
246 fread(&M[b * size], sizeof(float), size, f);
247 len = 0;
248 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
249 len = sqrt(len);
250 for (a = 0; a < size; a++) M[a + b * size] /= len;
251 }
252 }
Marc Kupietz67c20282016-02-26 09:42:00 +0100253 if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) {
254 fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs);
255 fclose(binvecs);
256 fwrite(vocab, sizeof(char), (long long)words * max_w, binwords);
257 fclose(binwords);
258 }
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100259 }
260 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
261 M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0);
262 vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0);
263 if (M == MAP_FAILED || vocab == MAP_FAILED) {
264 close(binvecs_fd);
265 close(binwords_fd);
266 fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname);
267 exit(-1);
268 }
269 } else {
270 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
271 exit(-1);
Marc Kupietz67c20282016-02-26 09:42:00 +0100272 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200273 fclose(f);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100274
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200275 if(net_name && strlen(net_name) > 0) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100276 if( (net_fd = open(net_name, O_RDONLY)) >= 0) {
277 window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2;
278 // lseek(net_fd, sizeof(float) * words * size, SEEK_SET);
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100279 // munmap(M, sizeof(float) * words * size);
280 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 +0200281 if (M2 == MAP_FAILED) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100282 close(net_fd);
283 fprintf(stderr, "Cannot mmap %s\n", net_name);
284 exit(-1);
285 }
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100286 syn1neg_window = M2 + words * size;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100287 } else {
288 fprintf(stderr, "Cannot open %s\n", net_name);
289 exit(-1);
290 }
291 fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window);
292 }
293
294 expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float));
295 for (i = 0; i < EXP_TABLE_SIZE; i++) {
296 expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table
297 expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1)
298 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200299 return 0;
300}
301
Marc Kupietza2e64502016-04-27 09:53:51 +0200302long mergeVectors(char *file_name){
303 FILE *f, *binvecs, *binwords;
304 int binwords_fd, binvecs_fd, net_fd, i;
305 long long a, b, c, d, cn;
306 float len;
307 float *merge_vecs;
308 char *merge_vocab;
Marc Kupietza5f60042017-05-04 10:38:12 +0200309 /* long long merge_words, merge_size; */
310 long long merge_size;
Marc Kupietza2e64502016-04-27 09:53:51 +0200311
312 char binvecs_fname[256], binwords_fname[256];
313 strcpy(binwords_fname, file_name);
314 strcat(binwords_fname, ".words");
315 strcpy(binvecs_fname, file_name);
316 strcat(binvecs_fname, ".vecs");
317
318 f = fopen(file_name, "rb");
319 if (f == NULL) {
320 printf("Input file %s not found\n", file_name);
321 exit -1;
322 }
323 fscanf(f, "%lld", &merge_words);
324 fscanf(f, "%lld", &merge_size);
325 if(merge_size != size){
326 fprintf(stderr, "vectors must have the same length\n");
327 exit(-1);
328 }
329 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
330 merge_vecs = malloc(sizeof(float) * (words + merge_words) * size);
331 merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w);
332 if (merge_vecs == NULL || merge_vocab == NULL) {
333 close(binvecs_fd);
334 close(binwords_fd);
335 fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname);
336 exit(-1);
337 }
338 read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float));
339 read(binwords_fd, merge_vocab, merge_words * max_w);
340 } else {
341 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
342 exit(-1);
343 }
344 printf("Successfully reallocated memory\nMerging...\n");
345 fflush(stdout);
346 memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float));
347 memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w);
348 munmap(M, words * size * sizeof(float));
349 munmap(vocab, words * max_w);
350 M = merge_vecs;
351 vocab = merge_vocab;
352 merged_end = merge_words;
353 words += merge_words;
354 fclose(f);
355 printf("merged_end: %lld, words: %lld\n", merged_end, words);
356 return((long) merged_end);
357}
358
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200359void filter_garbage() {
360 long i;
Marc Kupietzab591a82016-04-28 14:08:49 +0200361 unsigned char *w, previous, c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200362 garbage = malloc(words);
363 memset(garbage, 0, words);
364 for (i = 0; i < words; i++) {
365 w = vocab + i * max_w;
366 previous = 0;
Marc Kupietzab591a82016-04-28 14:08:49 +0200367 while((c = *w++) && !garbage[i]) {
368 if( ((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) ||
369 (previous == '-' && (c & 32)) ||
Marc Kupietz33e3aa12017-11-09 16:19:38 +0100370 (previous == 0xc2 && (c == 0xa4 || c == 0xb6 )) ||
371 c == '<'
Marc Kupietzab591a82016-04-28 14:08:49 +0200372 ) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200373 garbage[i]=1;
374 continue;
375 }
376 previous = c;
377 }
378 }
379 return;
380}
381
Marc Kupietz271e2a42016-03-22 11:37:43 +0100382void *getCollocators(knnpars *pars) {
383 int N = pars->N;
384 int cc = pars->wl->wordi[0];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100385 knn *nbs = NULL;
386 long window_layer_size = size * window * 2;
387 long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target;
388 float f, max_f, maxmax_f;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100389 float *target_sums, *bestf, *bestn, worstbest, wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100390 long long *besti, *bestp;
Marc Kupietzd5642582016-03-19 22:23:13 +0100391
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200392 if(M2 == NULL || cc == -1)
Marc Kupietzd5642582016-03-19 22:23:13 +0100393 return NULL;
394
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100395 a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float));
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100396 besti = malloc(N * sizeof(long long));
397 bestp = malloc(N * sizeof(long long));
398 bestf = malloc(N * sizeof(float));
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100399 bestn = malloc(N * sizeof(float));
400
Marc Kupietz271e2a42016-03-22 11:37:43 +0100401 worstbest = MIN_RESP;
402
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100403 for (b = 0; b < pars->cutoff; b++)
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100404 target_sums[b]=0;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100405 for (b = 0; b < N; b++) {
Marc Kupietz271e2a42016-03-22 11:37:43 +0100406 besti[b] = -1;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100407 bestn[b] = 1;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100408 bestf[b] = worstbest;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100409 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100410
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100411 d = cc;
412 maxmax_f = -1;
413 maxmax_target = 0;
414
Marc Kupietz271e2a42016-03-22 11:37:43 +0100415 for (a = pars->from; a < pars->upto; a++) {
416 if(a >= window)
417 a++;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100418 wpos_sum = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100419 printf("window pos: %ld\n", a);
420 if (a != window) {
421 max_f = -1;
422 window_offset = a * size;
423 if (a > window)
424 window_offset -= size;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100425 for(target = 0; target < pars->cutoff; target ++) {
426 if(garbage && garbage[target]) continue;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100427 if(target == d)
428 continue;
429 f = 0;
430 for (c = 0; c < size; c++)
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100431 f += M2[d* size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100432 if (f < -MAX_EXP)
433 continue;
434 else if (f > MAX_EXP)
435 continue;
436 else
437 f = expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100438 wpos_sum += f;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100439
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100440 target_sums[target] += f;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100441 if(f > worstbest) {
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100442 for (b = 0; b < N; b++) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100443 if (f > bestf[b]) {
Marc Kupietz33679a32016-03-22 08:49:39 +0100444 memmove(bestf + b + 1, bestf + b, (N - b -1) * sizeof(float));
445 memmove(besti + b + 1, besti + b, (N - b -1) * sizeof(long long));
446 memmove(bestp + b + 1, bestp + b, (N - b -1) * sizeof(long long));
447 bestf[b] = f;
448 besti[b] = target;
449 bestp[b] = window-a;
450 break;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100451 }
452 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100453 if(b == N - 1)
454 worstbest = bestf[N-1];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100455 }
456 }
457 printf("%d %.2f\n", max_target, max_f);
458 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
459 if(max_f > maxmax_f) {
460 maxmax_f = max_f;
461 maxmax_target = max_target;
462 }
Marc Kupietz33679a32016-03-22 08:49:39 +0100463 for (b = 0; b < N; b++)
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100464 if(bestp[b] == window-a)
465 bestn[b] = bestf[b] / wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100466 } else {
467 printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]);
468 }
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100469
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100470 }
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100471 for (b = 0; b < pars->cutoff; b++)
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100472 pars->target_sums[b] += (target_sums[b] / wpos_sum ) / (window * 2);
473 free(target_sums);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100474 for(b=0; b<N && besti[b] >= 0; b++) // THIS LOOP IS NEEDED (b...)
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100475 printf("%s %.2f %d * ", &vocab[besti[b]*max_w], bestf[b], bestp[b]);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100476 printf("\n");
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100477 nbs = malloc(sizeof(knn));
478 nbs->index = besti;
479 nbs->dist = bestf;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100480 nbs->norm = bestn;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100481 nbs->pos = bestp;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100482 nbs->length = b-1;
483 pthread_exit(nbs);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100484}
485
Marc Kupietza2e64502016-04-27 09:53:51 +0200486wordlist *getTargetWords(char *st1, int search_backw) {
Marc Kupietz48c29682016-03-19 11:30:43 +0100487 wordlist *wl = malloc(sizeof(wordlist));
488 char st[100][max_size], sep[100];
489 long a, b=0, c=0, cn=0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200490 int unmerged;
491
Marc Kupietzdc22b982015-10-09 09:19:34 +0200492 while (1) {
493 st[cn][b] = st1[c];
494 b++;
495 c++;
496 st[cn][b] = 0;
497 if (st1[c] == 0) break;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100498 if (st1[c] == ' ' || st1[c] == '-') {
499 sep[cn++] = st1[c];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200500 b = 0;
501 c++;
502 }
503 }
504 cn++;
505 for (a = 0; a < cn; a++) {
Marc Kupietza2e64502016-04-27 09:53:51 +0200506 if(search_backw) {
507 for (b = words - 1; b >= 0; b--) if (!strcmp(&vocab[b * max_w], st[a])) break;
508 } else {
509 for (b = 0; b < words; b++) if (!strcmp(&vocab[b * max_w], st[a])) break;
510 }
Marc Kupietz34a3ee92016-02-27 22:43:16 +0100511 if (b == words) b = -1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100512 wl->wordi[a] = b;
513 fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", st[a], wl->wordi[a]);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200514 if (b == -1) {
Marc Kupietze8da3062016-02-25 08:37:53 +0100515 fprintf(stderr, "Out of dictionary word!\n");
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100516 cn--;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200517 break;
518 }
519 }
Marc Kupietz48c29682016-03-19 11:30:43 +0100520 wl->length=cn;
521 return(wl);
522}
523
524void *_get_neighbours(knnpars *pars) {
525 char *st1 = pars->token;
526 int N = pars->N;
527 long from = pars -> from;
528 unsigned long upto = pars -> upto;
529 char file_name[max_size], st[100][max_size], *sep;
530 float dist, len, *bestd, vec[max_size];
531 long long a, b, c, d, cn, *bi, *besti;
532 char ch;
533 knn *nbs = NULL;
534 wordlist *wl = pars->wl;
535
536 besti = malloc(N * sizeof(long long));
537 bestd = malloc(N * sizeof(float));
538
539 float worstbest=-1;
540
541 for (a = 0; a < N; a++) bestd[a] = 0;
542 a = 0;
543 bi = wl->wordi;
544 cn = wl->length;
545 sep = wl->sep;
546 b = bi[0];
547 c = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100548 if (b == -1) {
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100549 N = 0;
550 goto end;
551 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200552 for (a = 0; a < size; a++) vec[a] = 0;
553 for (b = 0; b < cn; b++) {
554 if (bi[b] == -1) continue;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100555 if(b>0 && sep[b-1] == '-')
556 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
557 else
558 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200559 }
560 len = 0;
561 for (a = 0; a < size; a++) len += vec[a] * vec[a];
562 len = sqrt(len);
563 for (a = 0; a < size; a++) vec[a] /= len;
564 for (a = 0; a < N; a++) bestd[a] = -1;
Marc Kupietz000ad862016-02-26 14:59:12 +0100565 for (c = from; c < upto; c++) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200566 if(garbage && garbage[c]) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200567 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +0100568// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +0100569// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
570// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200571 dist = 0;
572 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100573 if(dist > worstbest) {
574 for (a = 0; a < N; a++) {
575 if (dist > bestd[a]) {
Marc Kupietz33679a32016-03-22 08:49:39 +0100576 memmove(bestd + a + 1, bestd + a, (N - a -1) * sizeof(float));
577 memmove(besti + a + 1, besti + a, (N - a -1) * sizeof(long long));
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100578 bestd[a] = dist;
579 besti[a] = c;
580 break;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200581 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200582 }
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100583 worstbest = bestd[N-1];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200584 }
585 }
Marc Kupietz34020dc2016-02-25 08:44:19 +0100586
Marc Kupietz000ad862016-02-26 14:59:12 +0100587 nbs = malloc(sizeof(knn));
588 nbs->index = besti;
589 nbs->dist = bestd;
590 nbs->length = N;
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100591end:
Marc Kupietz000ad862016-02-26 14:59:12 +0100592 pthread_exit(nbs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200593}
594
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100595
Marc Kupietzd91212f2017-11-13 10:05:09 +0100596SV *get_neighbours(char *st1, int N, int sort_by, int search_backw, long cutoff, int dedupe) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100597 HV *result = newHV();
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100598 float *target_sums, bestd[MAX_NEIGHBOURS], bestn[MAX_NEIGHBOURS], bests[MAX_NEIGHBOURS], vec[max_size];
Marc Kupietza5f60042017-05-04 10:38:12 +0200599 long long old_words;
Marc Kupietz50485ba2016-03-23 09:13:14 +0100600 long besti[MAX_NEIGHBOURS], bestp[MAX_NEIGHBOURS], a, b, c, d, slice;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100601 knn *para_nbs[MAX_THREADS];
602 knn *syn_nbs[MAX_THREADS];
Marc Kupietz000ad862016-02-26 14:59:12 +0100603 knnpars pars[MAX_THREADS];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100604 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
Marc Kupietz48c29682016-03-19 11:30:43 +0100605 wordlist *wl;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200606 int syn_threads = (M2? window * 2 : 0);
607 int para_threads = num_threads - syn_threads;
Marc Kupietz48c29682016-03-19 11:30:43 +0100608
Marc Kupietz000ad862016-02-26 14:59:12 +0100609 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
610
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100611 if(cutoff < 1)
612 cutoff=words;
613
Marc Kupietza2e64502016-04-27 09:53:51 +0200614 wl = getTargetWords(st1, search_backw);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100615 if(wl->length < 1)
616 goto end;
Marc Kupietz48c29682016-03-19 11:30:43 +0100617
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100618 old_words = cutoff;
Marc Kupietza5f60042017-05-04 10:38:12 +0200619 if(merge_words > 0)
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100620 cutoff = merge_words * 1.25; /* HACK */
621 slice = cutoff / para_threads;
Marc Kupietza5f60042017-05-04 10:38:12 +0200622
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100623 a = posix_memalign((void **) &target_sums, 128, cutoff * sizeof(float));
624 for(a = 0; a < cutoff; a++)
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100625 target_sums[a] = 0;
626
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200627 printf("Starting %d threads\n", para_threads);
628 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100629 for(a=0; a < para_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100630 pars[a].cutoff = cutoff;
Marc Kupietz000ad862016-02-26 14:59:12 +0100631 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100632 pars[a].wl = wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100633 pars[a].N = N;
634 pars[a].from = a*slice;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100635 pars[a].upto = ((a+1)*slice > cutoff? cutoff:(a+1)*slice);
Marc Kupietz000ad862016-02-26 14:59:12 +0100636 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
637 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200638 if(M2) {
639 for(a=0; a < syn_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100640 pars[a + para_threads].cutoff = cutoff;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200641 pars[a + para_threads].target_sums = target_sums;
642 pars[a + para_threads].wl = wl;
643 pars[a + para_threads].N = N;
644 pars[a + para_threads].from = a;
645 pars[a + para_threads].upto = a+1;
646 pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *) &pars[a + para_threads]);
647 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100648 }
649 printf("Waiting for para threads to join\n");
650 fflush(stdout);
651 for (a = 0; a < para_threads; a++) pthread_join(pt[a], &para_nbs[a]);
652 printf("Para threads joint\n");
653 fflush(stdout);
Marc Kupietz000ad862016-02-26 14:59:12 +0100654
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200655 /* if(!syn_nbs[0]) */
656 /* goto end; */
Marc Kupietz000ad862016-02-26 14:59:12 +0100657
658 for(b=0; b < N; b++) {
Marc Kupietz271e2a42016-03-22 11:37:43 +0100659 besti[b] = para_nbs[0]->index[b];
660 bestd[b] = para_nbs[0]->dist[b];
Marc Kupietz000ad862016-02-26 14:59:12 +0100661 }
662
Marc Kupietz271e2a42016-03-22 11:37:43 +0100663 for(a=1; a < para_threads; a++) {
664 for(b=0; b < para_nbs[a]->length && para_nbs[a]->index[b] >= 0; b++) {
Marc Kupietza5f60042017-05-04 10:38:12 +0200665 for(c=0; c < N * para_threads; c++) {
Marc Kupietz271e2a42016-03-22 11:37:43 +0100666 if(para_nbs[a]->dist[b] > bestd[c]) {
Marc Kupietz000ad862016-02-26 14:59:12 +0100667 for(d=N-1; d>c; d--) {
668 bestd[d] = bestd[d-1];
669 besti[d] = besti[d-1];
670 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100671 besti[c] = para_nbs[a]->index[b];
672 bestd[c] = para_nbs[a]->dist[b];
Marc Kupietz000ad862016-02-26 14:59:12 +0100673 break;
674 }
675 }
676 }
677 }
678
Marc Kupietzd91212f2017-11-13 10:05:09 +0100679 char *chosen[600];
Marc Kupietz271e2a42016-03-22 11:37:43 +0100680 AV* array = newAV();
Marc Kupietzd91212f2017-11-13 10:05:09 +0100681 int i, j;
Marc Kupietza5f60042017-05-04 10:38:12 +0200682 int l1_words=0, l2_words=0;
683 for (a = 0, i = 0; i < N && a < 600; a++) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100684 int filtered=0;
Marc Kupietza5f60042017-05-04 10:38:12 +0200685 long long c = besti[a];
Marc Kupietzd91212f2017-11-13 10:05:09 +0100686 if (dedupe && i > 0) {
687 for (j=0; j<i; j++)
688 if (strcasestr(&vocab[c * max_w], chosen[j]) ||
689 strcasestr(chosen[j], &vocab[c * max_w])) {
690 printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]);
691 filtered = 1;
692 }
693 if(filtered)
694 continue;
695 }
Marc Kupietza5f60042017-05-04 10:38:12 +0200696 if(merge_words > 0) {
697 if(c >= merge_words) {
698 if(l1_words > N / 2)
699 continue;
700 else
701 l1_words++;
702 } else {
703 if(l2_words > N / 2)
704 continue;
705 else
706 l2_words++;
707 }
708 }
709 fflush(stdout);
710 printf("%s l1:%d l2:%d i:%d a:%ld\n", &vocab[c * max_w], l1_words, l2_words, i, a);
711
Marc Kupietz271e2a42016-03-22 11:37:43 +0100712 HV* hash = newHV();
Marc Kupietza5f60042017-05-04 10:38:12 +0200713 SV* word = newSVpvf(&vocab[c * max_w], 0);
Marc Kupietzd91212f2017-11-13 10:05:09 +0100714 chosen[i] = &vocab[c * max_w];
Marc Kupietz271e2a42016-03-22 11:37:43 +0100715 if(latin_enc == 0) SvUTF8_on(word);
Marc Kupietza5f60042017-05-04 10:38:12 +0200716 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100717 hv_store(hash, "word", strlen("word"), word , 0);
718 hv_store(hash, "dist", strlen("dist"), newSVnv(bestd[a]), 0);
719 hv_store(hash, "rank", strlen("rank"), newSVuv(besti[a]), 0);
720 AV *vector = newAV();
721 for (b = 0; b < size; b++) {
722 av_push(vector, newSVnv(M[b + besti[a] * size]));
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100723 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100724 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
725 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietza5f60042017-05-04 10:38:12 +0200726 i++;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100727 }
728 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0);
729
Marc Kupietz50485ba2016-03-23 09:13:14 +0100730 for(b=0; b < MAX_NEIGHBOURS; b++) {
731 besti[b] = -1L;
732 bestd[b] = 0;
733 bestn[b] = 0;
734 bestp[b] = 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100735 bests[b] = 0;
Marc Kupietz50485ba2016-03-23 09:13:14 +0100736 }
737
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200738 if (M2) {
739 printf("Waiting for syn threads to join\n");
740 fflush(stdout);
741 for (a = 0; a < syn_threads; a++) pthread_join(pt[a+para_threads], &syn_nbs[a]);
742 printf("syn threads joint\n");
743 fflush(stdout);
Marc Kupietz50485ba2016-03-23 09:13:14 +0100744
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200745 for(b=0; b < syn_nbs[0]->length; b++) {
746 besti[b] = syn_nbs[0]->index[b];
747 bestd[b] = syn_nbs[0]->dist[b];
748 bestn[b] = syn_nbs[0]->norm[b];
749 bestp[b] = syn_nbs[0]->pos[b];
750 bests[b] = target_sums[syn_nbs[0]->index[b]];
751 }
752
753 if(sort_by != 1) { // sort by responsiveness
754 for(a=1; a < syn_threads; a++) {
755 for(b=0; b < syn_nbs[a]->length; b++) {
756 for(c=0; c < MAX_NEIGHBOURS; c++) {
757 if(syn_nbs[a]->dist[b] > bestd[c]) {
758 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
759 bestd[d] = bestd[d-1];
760 besti[d] = besti[d-1];
761 bestn[d] = bestn[d-1];
762 bestp[d] = bestp[d-1];
763 }
764 besti[c] = syn_nbs[a]->index[b];
765 bestd[c] = syn_nbs[a]->dist[b];
766 bestn[c] = syn_nbs[a]->norm[b];
767 bestp[c] = syn_nbs[a]->pos[b];
768 break;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100769 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200770 }
771 }
772 }
773 } else { // sort by mean p
774 for(a=1; a < syn_threads; a++) {
775 for(b=0; b < syn_nbs[a]->length; b++) {
776 for(c=0; c < MAX_NEIGHBOURS; c++) {
777 if(target_sums[syn_nbs[a]->index[b]] > bests[c]) {
778 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
779 bestd[d] = bestd[d-1];
780 besti[d] = besti[d-1];
781 bestn[d] = bestn[d-1];
782 bestp[d] = bestp[d-1];
783 bests[d] = bests[d-1];
784 }
785 besti[c] = syn_nbs[a]->index[b];
786 bestd[c] = syn_nbs[a]->dist[b];
787 bestn[c] = syn_nbs[a]->norm[b];
788 bestp[c] = syn_nbs[a]->pos[b];
789 bests[c] = target_sums[syn_nbs[a]->index[b]];
790 break;
791 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100792 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100793 }
794 }
795 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200796 array = newAV();
Marc Kupietzd91212f2017-11-13 10:05:09 +0100797 for (a = 0, i=0; a < MAX_NEIGHBOURS && besti[a] >= 0; a++) {
798 long long c = besti[a];
799 if (dedupe) {
800 int filtered=0;
801 for (j=0; j<i; j++)
802 if (strcasestr(&vocab[c * max_w], chosen[j]) ||
803 strcasestr(chosen[j], &vocab[c * max_w])) {
804 printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]);
805 filtered = 1;
806 }
807 if(filtered)
808 continue;
809 }
810 chosen[i++]=&vocab[c * max_w];
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200811 HV* hash = newHV();
812 SV* word = newSVpvf(&vocab[besti[a] * max_w], 0);
813 if(latin_enc == 0) SvUTF8_on(word);
814 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzb18978b2017-11-09 14:51:17 +0100815 hv_store(hash, "rank", strlen("rank"), newSVuv(besti[a]), 0);
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200816 hv_store(hash, "dist", strlen("dist"), newSVnv(bestd[a]), 0);
817 hv_store(hash, "norm", strlen("norm"), newSVnv(bestn[a]), 0);
818 hv_store(hash, "sum", strlen("sum"), newSVnv(target_sums[besti[a]]), 0);
819 hv_store(hash, "pos", strlen("pos"), newSVnv(bestp[a]), 0);
820 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietz271e2a42016-03-22 11:37:43 +0100821 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200822 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100823 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100824end:
Marc Kupietza5f60042017-05-04 10:38:12 +0200825 words = old_words;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100826 return newRV_noinc((SV*)result);
Marc Kupietz000ad862016-02-26 14:59:12 +0100827}
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100828
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200829int dump_vecs(char *fname) {
830 long i, j;
831 FILE *f;
832 /* if(words>200000) */
833 /* words=200000; */
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100834
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200835 if((f=fopen(fname, "w")) == NULL) {
836 fprintf(stderr, "cannot open %s for writing\n", fname);
837 return(-1);
838 }
839 fprintf(f, "%lld %lld\n", words, size);
840 for (i=0; i < words; i++) {
841 fprintf(f, "%s ", &vocab[i * max_w]);
842 for(j=0; j < size - 1; j++)
843 fprintf(f, "%f ", M[i*size + j]);
844 fprintf(f, "%f\n", M[i*size + j]);
845 }
846 fclose(f);
847 return(0);
848}
Marc Kupietzdc22b982015-10-09 09:19:34 +0200849