blob: 127c779f08457dd68b382f7db6f4754610b49bf1 [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 +02003#use Inline C => Config => BUILD_NOISY => 1, CFLAGS => $Config{cflags}." -O4 -mtune k9";
4use Inline C => Config => CLEAN_AFTER_BUILD => 0, ccflags => $Config{ccflags}." -O4";
Marc Kupietzdc22b982015-10-09 09:19:34 +02005use Mojolicious::Lite;
Marc Kupietzc4893362016-02-25 08:04:46 +01006use Mojo::JSON qw(decode_json encode_json to_json);
Marc Kupietz247500f2015-10-09 11:29:01 +02007use Encode qw(decode encode);
Marc Kupietza5b90152016-03-15 17:39:19 +01008use Getopt::Std;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +01009use Mojo::Server::Daemon;
Marc Kupietzd4227392016-03-01 16:45:12 +010010plugin 'Log::Access';
Marc Kupietzdc22b982015-10-09 09:19:34 +020011
Marc Kupietza5b90152016-03-15 17:39:19 +010012our $opt_i = 0; # latin1-input?
13our $opt_l = undef;
14our $opt_p = 5676;
Marc Kupietza2e64502016-04-27 09:53:51 +020015our $opt_m;
Marc Kupietz6ed81872016-04-27 14:04:04 +020016our $opt_M;
Marc Kupietz43ee87e2016-04-25 10:50:08 +020017our $opt_n = '';
18our $opt_d;
Marc Kupietz5c3887d2016-04-28 08:53:35 +020019our $opt_G;
Marc Kupietza5b90152016-03-15 17:39:19 +010020
Marc Kupietz6ed81872016-04-27 14:04:04 +020021my %marked;
Marc Kupietz793413b2016-04-02 21:48:57 +020022my $training_args="";
Marc Kupietza2e64502016-04-27 09:53:51 +020023my $mergedEnd=0;
Marc Kupietz793413b2016-04-02 21:48:57 +020024
Marc Kupietz5c3887d2016-04-28 08:53:35 +020025getopts('d:Gil:p:m:M:');
Marc Kupietz6ed81872016-04-27 14:04:04 +020026
27if($opt_M) {
Marc Kupietzed930212016-04-27 15:42:38 +020028 open my $handle, '<:encoding(UTF-8)', $opt_M
29 or die "Can't open '$opt_M' for reading: $!";
30 while(<$handle>) {
Marc Kupietz6ed81872016-04-27 14:04:04 +020031 foreach my $mw (split /\s+/) {
32 $marked{$mw}=1
33 }
34 }
Marc Kupietzed930212016-04-27 15:42:38 +020035 close($handle);
Marc Kupietz6ed81872016-04-27 14:04:04 +020036}
Marc Kupietza5b90152016-03-15 17:39:19 +010037
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010038# -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 +010039if(!$ARGV[0]) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010040 init_net("vectors15.bin", $opt_n, ($opt_i? 1 : 0));
Marc Kupietz2cb667e2016-03-10 09:44:12 +010041} else {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010042 init_net($ARGV[0], $opt_n, ($opt_i? 1 : 0));
Marc Kupietz793413b2016-04-02 21:48:57 +020043 if(open(FILE, "$ARGV[0].args")) {
44 $training_args = <FILE>;
45 }
46 close(FILE);
Marc Kupietz2cb667e2016-03-10 09:44:12 +010047}
Marc Kupietzdc22b982015-10-09 09:19:34 +020048
Marc Kupietza2e64502016-04-27 09:53:51 +020049if($opt_m) {
50 $mergedEnd = mergeVectors($opt_m);
51}
52
Marc Kupietz6ed81872016-04-27 14:04:04 +020053
Marc Kupietz43ee87e2016-04-25 10:50:08 +020054if($opt_d) { # -d: dump vecs and exit
55 dump_vecs($opt_d);
56 exit;
57}
58
Marc Kupietza5b90152016-03-15 17:39:19 +010059my $daemon = Mojo::Server::Daemon->new(
60 app => app,
61 listen => ['http://'.($opt_l ? $opt_l : '*').":$opt_p"]
62);
63
Marc Kupietz5c3887d2016-04-28 08:53:35 +020064if($opt_G) {
65 print "Filtering garbage\n";
66 filter_garbage();
67}
68
Marc Kupietzdc22b982015-10-09 09:19:34 +020069get '/' => sub {
70 my $c = shift;
71 my $word=$c->param('word');
Marc Kupietz44bee3c2016-02-25 16:26:29 +010072 my $no_nbs=$c->param('n') || 100;
73 my $no_iterations=$c->param('N') || 2000;
Marc Kupietzd4227392016-03-01 16:45:12 +010074 my $perplexity=$c->param('perplexity') || 20;
Marc Kupietzc4d62f82016-03-01 11:04:24 +010075 my $epsilon=$c->param('epsilon') || 5;
Marc Kupietzd7aea722016-03-02 11:59:12 +010076 my $som=$c->param('som') || 0;
Marc Kupietza2e64502016-04-27 09:53:51 +020077 my $searchBaseVocabFirst=$c->param('sbf') || 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +010078 my $sort=$c->param('sort') || 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +010079 my $res;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +010080 my @lists;
Marc Kupietz6b2975c2016-03-18 21:59:33 +010081 my @collocations;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010082 if(defined($word) && $word !~ /^\s*$/) {
83 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +010084 $word =~ s/\s+/ /g;
85 for my $w (split(' *\| *', $word)) {
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +010086 $c->app->log->debug('Looking for neighbours of '.$w);
Marc Kupietza5b90152016-03-15 17:39:19 +010087 if($opt_i) {
Marc Kupietza2e64502016-04-27 09:53:51 +020088 $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst);
Marc Kupietza5b90152016-03-15 17:39:19 +010089 } else {
Marc Kupietza2e64502016-04-27 09:53:51 +020090 $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst);
Marc Kupietza5b90152016-03-15 17:39:19 +010091 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +010092 push(@lists, $res->{paradigmatic});
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +010093 }
Marc Kupietz247500f2015-10-09 11:29:01 +020094 }
Marc Kupietz000ad862016-02-26 14:59:12 +010095 $word =~ s/ *\| */ | /g;
Marc Kupietz6ed81872016-04-27 14:04:04 +020096 $c->render(template=>"index", word=>$word, 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, marked=>\%marked, lists=> \@lists, collocators=> $res->{syntagmatic});
Marc Kupietzdc22b982015-10-09 09:19:34 +020097};
98
Marc Kupietza5b90152016-03-15 17:39:19 +010099$daemon->run; # app->start;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200100
101exit;
102
103__END__
104
105__C__
106#include <stdio.h>
107#include <string.h>
108#include <math.h>
109#include <malloc.h>
110#include <stdlib.h> //strlen
Marc Kupietzf0809762016-02-26 10:13:47 +0100111#include <sys/mman.h>
Marc Kupietz000ad862016-02-26 14:59:12 +0100112#include <pthread.h>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200113
114#define max_size 2000
115#define max_w 50
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100116#define MAX_NEIGHBOURS 1000
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100117#define MAX_WORDS -1
Marc Kupietz000ad862016-02-26 14:59:12 +0100118#define MAX_THREADS 100
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100119#define MAX_CC 50
120#define EXP_TABLE_SIZE 1000
121#define MAX_EXP 6
Marc Kupietz271e2a42016-03-22 11:37:43 +0100122#define MIN_RESP 0.50
Marc Kupietzdc22b982015-10-09 09:19:34 +0200123
124//the thread function
125void *connection_handler(void *);
Marc Kupietz000ad862016-02-26 14:59:12 +0100126
127typedef struct {
128 long long *index;
129 float *dist;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100130 float *norm;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100131 long long *pos;
Marc Kupietz80abb442016-03-23 21:04:08 +0100132 int length;
Marc Kupietz000ad862016-02-26 14:59:12 +0100133} knn;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100134
Marc Kupietz000ad862016-02-26 14:59:12 +0100135typedef struct {
Marc Kupietz48c29682016-03-19 11:30:43 +0100136 long long wordi[MAX_NEIGHBOURS];
137 char sep[MAX_NEIGHBOURS];
138 int length;
139} wordlist;
140
141typedef struct {
142 wordlist *wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100143 char *token;
144 int N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100145 long from;
Marc Kupietz000ad862016-02-26 14:59:12 +0100146 unsigned long upto;
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100147 float *target_sums;
Marc Kupietz000ad862016-02-26 14:59:12 +0100148} knnpars;
149
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200150float *M, *M2=0L, *syn1neg_window, *expTable;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200151char *vocab;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200152char *garbage = NULL;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100153
Marc Kupietza2e64502016-04-27 09:53:51 +0200154long long words, size, merged_end;
Marc Kupietz000ad862016-02-26 14:59:12 +0100155int num_threads=20;
Marc Kupietza5b90152016-03-15 17:39:19 +0100156int latin_enc=0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100157int window;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200158
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100159int init_net(char *file_name, char *net_name, int latin) {
Marc Kupietz67c20282016-02-26 09:42:00 +0100160 FILE *f, *binvecs, *binwords;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100161 int binwords_fd, binvecs_fd, net_fd, i;
Marc Kupietz82b02672016-02-26 12:32:25 +0100162 long long a, b, c, d, cn;
163 float len;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200164 double val;
Marc Kupietz82b02672016-02-26 12:32:25 +0100165
Marc Kupietz67c20282016-02-26 09:42:00 +0100166 char binvecs_fname[256], binwords_fname[256];
167 strcpy(binwords_fname, file_name);
168 strcat(binwords_fname, ".words");
169 strcpy(binvecs_fname, file_name);
170 strcat(binvecs_fname, ".vecs");
Marc Kupietzdc22b982015-10-09 09:19:34 +0200171
Marc Kupietza5b90152016-03-15 17:39:19 +0100172 latin_enc = latin;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200173 f = fopen(file_name, "rb");
174 if (f == NULL) {
175 printf("Input file %s not found\n", file_name);
176 return -1;
177 }
178 fscanf(f, "%lld", &words);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100179 if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200180 fscanf(f, "%lld", &size);
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100181 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) {
182 printf("Converting %s to memory mappable structures\n", file_name);
Marc Kupietzf0809762016-02-26 10:13:47 +0100183 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
184 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
185 if (M == NULL) {
186 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
187 return -1;
188 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200189 if(strstr(file_name, ".txt")) {
190 for (b = 0; b < words; b++) {
191 a = 0;
192 while (1) {
193 vocab[b * max_w + a] = fgetc(f);
194 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
195 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
196 }
197 vocab[b * max_w + a] = 0;
198 len = 0;
199 for (a = 0; a < size; a++) {
200 fscanf(f, "%lf", &val);
201 M[a + b * size] = val;
202 len += val * val;
203 }
204 len = sqrt(len);
205 for (a = 0; a < size; a++) M[a + b * size] /= len;
206 }
207 } else {
208 for (b = 0; b < words; b++) {
209 a = 0;
210 while (1) {
211 vocab[b * max_w + a] = fgetc(f);
212 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
213 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
214 }
215 vocab[b * max_w + a] = 0;
216 fread(&M[b * size], sizeof(float), size, f);
217 len = 0;
218 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
219 len = sqrt(len);
220 for (a = 0; a < size; a++) M[a + b * size] /= len;
221 }
222 }
Marc Kupietz67c20282016-02-26 09:42:00 +0100223 if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) {
224 fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs);
225 fclose(binvecs);
226 fwrite(vocab, sizeof(char), (long long)words * max_w, binwords);
227 fclose(binwords);
228 }
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100229 }
230 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
231 M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0);
232 vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0);
233 if (M == MAP_FAILED || vocab == MAP_FAILED) {
234 close(binvecs_fd);
235 close(binwords_fd);
236 fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname);
237 exit(-1);
238 }
239 } else {
240 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
241 exit(-1);
Marc Kupietz67c20282016-02-26 09:42:00 +0100242 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200243 fclose(f);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100244
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200245 if(net_name && strlen(net_name) > 0) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100246 if( (net_fd = open(net_name, O_RDONLY)) >= 0) {
247 window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2;
248 // lseek(net_fd, sizeof(float) * words * size, SEEK_SET);
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100249 // munmap(M, sizeof(float) * words * size);
250 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 +0200251 if (M2 == MAP_FAILED) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100252 close(net_fd);
253 fprintf(stderr, "Cannot mmap %s\n", net_name);
254 exit(-1);
255 }
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100256 syn1neg_window = M2 + words * size;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100257 } else {
258 fprintf(stderr, "Cannot open %s\n", net_name);
259 exit(-1);
260 }
261 fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window);
262 }
263
264 expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float));
265 for (i = 0; i < EXP_TABLE_SIZE; i++) {
266 expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table
267 expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1)
268 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200269 return 0;
270}
271
Marc Kupietza2e64502016-04-27 09:53:51 +0200272long mergeVectors(char *file_name){
273 FILE *f, *binvecs, *binwords;
274 int binwords_fd, binvecs_fd, net_fd, i;
275 long long a, b, c, d, cn;
276 float len;
277 float *merge_vecs;
278 char *merge_vocab;
279 long long merge_words, merge_size;
280
281 char binvecs_fname[256], binwords_fname[256];
282 strcpy(binwords_fname, file_name);
283 strcat(binwords_fname, ".words");
284 strcpy(binvecs_fname, file_name);
285 strcat(binvecs_fname, ".vecs");
286
287 f = fopen(file_name, "rb");
288 if (f == NULL) {
289 printf("Input file %s not found\n", file_name);
290 exit -1;
291 }
292 fscanf(f, "%lld", &merge_words);
293 fscanf(f, "%lld", &merge_size);
294 if(merge_size != size){
295 fprintf(stderr, "vectors must have the same length\n");
296 exit(-1);
297 }
298 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
299 merge_vecs = malloc(sizeof(float) * (words + merge_words) * size);
300 merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w);
301 if (merge_vecs == NULL || merge_vocab == NULL) {
302 close(binvecs_fd);
303 close(binwords_fd);
304 fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname);
305 exit(-1);
306 }
307 read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float));
308 read(binwords_fd, merge_vocab, merge_words * max_w);
309 } else {
310 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
311 exit(-1);
312 }
313 printf("Successfully reallocated memory\nMerging...\n");
314 fflush(stdout);
315 memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float));
316 memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w);
317 munmap(M, words * size * sizeof(float));
318 munmap(vocab, words * max_w);
319 M = merge_vecs;
320 vocab = merge_vocab;
321 merged_end = merge_words;
322 words += merge_words;
323 fclose(f);
324 printf("merged_end: %lld, words: %lld\n", merged_end, words);
325 return((long) merged_end);
326}
327
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200328void filter_garbage() {
329 long i;
Marc Kupietzab591a82016-04-28 14:08:49 +0200330 unsigned char *w, previous, c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200331 garbage = malloc(words);
332 memset(garbage, 0, words);
333 for (i = 0; i < words; i++) {
334 w = vocab + i * max_w;
335 previous = 0;
Marc Kupietzab591a82016-04-28 14:08:49 +0200336 while((c = *w++) && !garbage[i]) {
337 if( ((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) ||
338 (previous == '-' && (c & 32)) ||
339 (previous == 0xc2 && (c == 0xa4 || c == 0xb6 ))
340 ) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200341 garbage[i]=1;
342 continue;
343 }
344 previous = c;
345 }
346 }
347 return;
348}
349
Marc Kupietz271e2a42016-03-22 11:37:43 +0100350void *getCollocators(knnpars *pars) {
351 int N = pars->N;
352 int cc = pars->wl->wordi[0];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100353 knn *nbs = NULL;
354 long window_layer_size = size * window * 2;
355 long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target;
356 float f, max_f, maxmax_f;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100357 float *target_sums, *bestf, *bestn, worstbest, wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100358 long long *besti, *bestp;
Marc Kupietzd5642582016-03-19 22:23:13 +0100359
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200360 if(M2 == NULL || cc == -1)
Marc Kupietzd5642582016-03-19 22:23:13 +0100361 return NULL;
362
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100363 a = posix_memalign((void **) &target_sums, 128, words * sizeof(float));
364 besti = malloc(N * sizeof(long long));
365 bestp = malloc(N * sizeof(long long));
366 bestf = malloc(N * sizeof(float));
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100367 bestn = malloc(N * sizeof(float));
368
Marc Kupietz271e2a42016-03-22 11:37:43 +0100369 worstbest = MIN_RESP;
370
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100371 for (b = 0; b < words; b++)
372 target_sums[b]=0;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100373 for (b = 0; b < N; b++) {
Marc Kupietz271e2a42016-03-22 11:37:43 +0100374 besti[b] = -1;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100375 bestn[b] = 1;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100376 bestf[b] = worstbest;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100377 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100378
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100379 d = cc;
380 maxmax_f = -1;
381 maxmax_target = 0;
382
Marc Kupietz271e2a42016-03-22 11:37:43 +0100383 for (a = pars->from; a < pars->upto; a++) {
384 if(a >= window)
385 a++;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100386 wpos_sum = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100387 printf("window pos: %ld\n", a);
388 if (a != window) {
389 max_f = -1;
390 window_offset = a * size;
391 if (a > window)
392 window_offset -= size;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100393 for(target = 0; target < words; target ++) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100394 if(target == d)
395 continue;
396 f = 0;
397 for (c = 0; c < size; c++)
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100398 f += M2[d* size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100399 if (f < -MAX_EXP)
400 continue;
401 else if (f > MAX_EXP)
402 continue;
403 else
404 f = expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100405 wpos_sum += f;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100406
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100407 target_sums[target] += f;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100408 if(f > worstbest) {
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100409 for (b = 0; b < N; b++) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100410 if (f > bestf[b]) {
Marc Kupietz33679a32016-03-22 08:49:39 +0100411 memmove(bestf + b + 1, bestf + b, (N - b -1) * sizeof(float));
412 memmove(besti + b + 1, besti + b, (N - b -1) * sizeof(long long));
413 memmove(bestp + b + 1, bestp + b, (N - b -1) * sizeof(long long));
414 bestf[b] = f;
415 besti[b] = target;
416 bestp[b] = window-a;
417 break;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100418 }
419 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100420 if(b == N - 1)
421 worstbest = bestf[N-1];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100422 }
423 }
424 printf("%d %.2f\n", max_target, max_f);
425 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
426 if(max_f > maxmax_f) {
427 maxmax_f = max_f;
428 maxmax_target = max_target;
429 }
Marc Kupietz33679a32016-03-22 08:49:39 +0100430 for (b = 0; b < N; b++)
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100431 if(bestp[b] == window-a)
432 bestn[b] = bestf[b] / wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100433 } else {
434 printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]);
435 }
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100436
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100437 }
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100438 for (b = 0; b < words; b++)
439 pars->target_sums[b] += (target_sums[b] / wpos_sum ) / (window * 2);
440 free(target_sums);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100441 for(b=0; b<N && besti[b] >= 0; b++) // THIS LOOP IS NEEDED (b...)
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100442 printf("%s %.2f %d * ", &vocab[besti[b]*max_w], bestf[b], bestp[b]);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100443 printf("\n");
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100444 nbs = malloc(sizeof(knn));
445 nbs->index = besti;
446 nbs->dist = bestf;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100447 nbs->norm = bestn;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100448 nbs->pos = bestp;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100449 nbs->length = b-1;
450 pthread_exit(nbs);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100451}
452
Marc Kupietza2e64502016-04-27 09:53:51 +0200453wordlist *getTargetWords(char *st1, int search_backw) {
Marc Kupietz48c29682016-03-19 11:30:43 +0100454 wordlist *wl = malloc(sizeof(wordlist));
455 char st[100][max_size], sep[100];
456 long a, b=0, c=0, cn=0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200457 int unmerged;
458
Marc Kupietzdc22b982015-10-09 09:19:34 +0200459 while (1) {
460 st[cn][b] = st1[c];
461 b++;
462 c++;
463 st[cn][b] = 0;
464 if (st1[c] == 0) break;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100465 if (st1[c] == ' ' || st1[c] == '-') {
466 sep[cn++] = st1[c];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200467 b = 0;
468 c++;
469 }
470 }
471 cn++;
472 for (a = 0; a < cn; a++) {
Marc Kupietza2e64502016-04-27 09:53:51 +0200473 if(search_backw) {
474 for (b = words - 1; b >= 0; b--) if (!strcmp(&vocab[b * max_w], st[a])) break;
475 } else {
476 for (b = 0; b < words; b++) if (!strcmp(&vocab[b * max_w], st[a])) break;
477 }
Marc Kupietz34a3ee92016-02-27 22:43:16 +0100478 if (b == words) b = -1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100479 wl->wordi[a] = b;
480 fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", st[a], wl->wordi[a]);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200481 if (b == -1) {
Marc Kupietze8da3062016-02-25 08:37:53 +0100482 fprintf(stderr, "Out of dictionary word!\n");
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100483 cn--;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200484 break;
485 }
486 }
Marc Kupietz48c29682016-03-19 11:30:43 +0100487 wl->length=cn;
488 return(wl);
489}
490
491void *_get_neighbours(knnpars *pars) {
492 char *st1 = pars->token;
493 int N = pars->N;
494 long from = pars -> from;
495 unsigned long upto = pars -> upto;
496 char file_name[max_size], st[100][max_size], *sep;
497 float dist, len, *bestd, vec[max_size];
498 long long a, b, c, d, cn, *bi, *besti;
499 char ch;
500 knn *nbs = NULL;
501 wordlist *wl = pars->wl;
502
503 besti = malloc(N * sizeof(long long));
504 bestd = malloc(N * sizeof(float));
505
506 float worstbest=-1;
507
508 for (a = 0; a < N; a++) bestd[a] = 0;
509 a = 0;
510 bi = wl->wordi;
511 cn = wl->length;
512 sep = wl->sep;
513 b = bi[0];
514 c = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100515 if (b == -1) {
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100516 N = 0;
517 goto end;
518 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200519 for (a = 0; a < size; a++) vec[a] = 0;
520 for (b = 0; b < cn; b++) {
521 if (bi[b] == -1) continue;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100522 if(b>0 && sep[b-1] == '-')
523 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
524 else
525 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200526 }
527 len = 0;
528 for (a = 0; a < size; a++) len += vec[a] * vec[a];
529 len = sqrt(len);
530 for (a = 0; a < size; a++) vec[a] /= len;
531 for (a = 0; a < N; a++) bestd[a] = -1;
Marc Kupietz000ad862016-02-26 14:59:12 +0100532 for (c = from; c < upto; c++) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200533 if(garbage && garbage[c]) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200534 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +0100535// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +0100536// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
537// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200538 dist = 0;
539 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100540 if(dist > worstbest) {
541 for (a = 0; a < N; a++) {
542 if (dist > bestd[a]) {
Marc Kupietz33679a32016-03-22 08:49:39 +0100543 memmove(bestd + a + 1, bestd + a, (N - a -1) * sizeof(float));
544 memmove(besti + a + 1, besti + a, (N - a -1) * sizeof(long long));
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100545 bestd[a] = dist;
546 besti[a] = c;
547 break;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200548 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200549 }
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100550 worstbest = bestd[N-1];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200551 }
552 }
Marc Kupietz34020dc2016-02-25 08:44:19 +0100553
Marc Kupietz000ad862016-02-26 14:59:12 +0100554 nbs = malloc(sizeof(knn));
555 nbs->index = besti;
556 nbs->dist = bestd;
557 nbs->length = N;
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100558end:
Marc Kupietz000ad862016-02-26 14:59:12 +0100559 pthread_exit(nbs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200560}
561
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100562
Marc Kupietza2e64502016-04-27 09:53:51 +0200563SV *get_neighbours(char *st1, int N, int sort_by, int search_backw) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100564 HV *result = newHV();
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100565 float *target_sums, bestd[MAX_NEIGHBOURS], bestn[MAX_NEIGHBOURS], bests[MAX_NEIGHBOURS], vec[max_size];
Marc Kupietz50485ba2016-03-23 09:13:14 +0100566 long besti[MAX_NEIGHBOURS], bestp[MAX_NEIGHBOURS], a, b, c, d, slice;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100567 knn *para_nbs[MAX_THREADS];
568 knn *syn_nbs[MAX_THREADS];
Marc Kupietz000ad862016-02-26 14:59:12 +0100569 knnpars pars[MAX_THREADS];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100570 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
Marc Kupietz48c29682016-03-19 11:30:43 +0100571 wordlist *wl;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200572 int syn_threads = (M2? window * 2 : 0);
573 int para_threads = num_threads - syn_threads;
Marc Kupietz48c29682016-03-19 11:30:43 +0100574
Marc Kupietz000ad862016-02-26 14:59:12 +0100575 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
576
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200577 slice = words / para_threads;
578
Marc Kupietza2e64502016-04-27 09:53:51 +0200579 wl = getTargetWords(st1, search_backw);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100580 if(wl->length < 1)
581 goto end;
Marc Kupietz48c29682016-03-19 11:30:43 +0100582
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100583 a = posix_memalign((void **) &target_sums, 128, words * sizeof(float));
584 for(a = 0; a < words; a++)
585 target_sums[a] = 0;
586
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200587 printf("Starting %d threads\n", para_threads);
588 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100589 for(a=0; a < para_threads; a++) {
Marc Kupietz000ad862016-02-26 14:59:12 +0100590 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100591 pars[a].wl = wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100592 pars[a].N = N;
593 pars[a].from = a*slice;
594 pars[a].upto = ((a+1)*slice > words? words:(a+1)*slice);
595 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
596 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200597 if(M2) {
598 for(a=0; a < syn_threads; a++) {
599 pars[a + para_threads].target_sums = target_sums;
600 pars[a + para_threads].wl = wl;
601 pars[a + para_threads].N = N;
602 pars[a + para_threads].from = a;
603 pars[a + para_threads].upto = a+1;
604 pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *) &pars[a + para_threads]);
605 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100606 }
607 printf("Waiting for para threads to join\n");
608 fflush(stdout);
609 for (a = 0; a < para_threads; a++) pthread_join(pt[a], &para_nbs[a]);
610 printf("Para threads joint\n");
611 fflush(stdout);
Marc Kupietz000ad862016-02-26 14:59:12 +0100612
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200613 /* if(!syn_nbs[0]) */
614 /* goto end; */
Marc Kupietz000ad862016-02-26 14:59:12 +0100615
616 for(b=0; b < N; b++) {
Marc Kupietz271e2a42016-03-22 11:37:43 +0100617 besti[b] = para_nbs[0]->index[b];
618 bestd[b] = para_nbs[0]->dist[b];
Marc Kupietz000ad862016-02-26 14:59:12 +0100619 }
620
Marc Kupietz271e2a42016-03-22 11:37:43 +0100621 for(a=1; a < para_threads; a++) {
622 for(b=0; b < para_nbs[a]->length && para_nbs[a]->index[b] >= 0; b++) {
Marc Kupietz000ad862016-02-26 14:59:12 +0100623 for(c=0; c < N; c++) {
Marc Kupietz271e2a42016-03-22 11:37:43 +0100624 if(para_nbs[a]->dist[b] > bestd[c]) {
Marc Kupietz000ad862016-02-26 14:59:12 +0100625 for(d=N-1; d>c; d--) {
626 bestd[d] = bestd[d-1];
627 besti[d] = besti[d-1];
628 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100629 besti[c] = para_nbs[a]->index[b];
630 bestd[c] = para_nbs[a]->dist[b];
Marc Kupietz000ad862016-02-26 14:59:12 +0100631 break;
632 }
633 }
634 }
635 }
636
Marc Kupietz271e2a42016-03-22 11:37:43 +0100637 AV* array = newAV();
638 for (a = 0; a < N; a++) {
Marc Kupietz271e2a42016-03-22 11:37:43 +0100639 HV* hash = newHV();
Marc Kupietz50485ba2016-03-23 09:13:14 +0100640 SV* word = newSVpvf(&vocab[besti[a] * max_w], 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100641 if(latin_enc == 0) SvUTF8_on(word);
642 hv_store(hash, "word", strlen("word"), word , 0);
643 hv_store(hash, "dist", strlen("dist"), newSVnv(bestd[a]), 0);
644 hv_store(hash, "rank", strlen("rank"), newSVuv(besti[a]), 0);
645 AV *vector = newAV();
646 for (b = 0; b < size; b++) {
647 av_push(vector, newSVnv(M[b + besti[a] * size]));
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100648 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100649 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
650 av_push(array, newRV_noinc((SV*)hash));
651 }
652 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0);
653
Marc Kupietz50485ba2016-03-23 09:13:14 +0100654 for(b=0; b < MAX_NEIGHBOURS; b++) {
655 besti[b] = -1L;
656 bestd[b] = 0;
657 bestn[b] = 0;
658 bestp[b] = 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100659 bests[b] = 0;
Marc Kupietz50485ba2016-03-23 09:13:14 +0100660 }
661
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200662 if (M2) {
663 printf("Waiting for syn threads to join\n");
664 fflush(stdout);
665 for (a = 0; a < syn_threads; a++) pthread_join(pt[a+para_threads], &syn_nbs[a]);
666 printf("syn threads joint\n");
667 fflush(stdout);
Marc Kupietz50485ba2016-03-23 09:13:14 +0100668
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200669 for(b=0; b < syn_nbs[0]->length; b++) {
670 besti[b] = syn_nbs[0]->index[b];
671 bestd[b] = syn_nbs[0]->dist[b];
672 bestn[b] = syn_nbs[0]->norm[b];
673 bestp[b] = syn_nbs[0]->pos[b];
674 bests[b] = target_sums[syn_nbs[0]->index[b]];
675 }
676
677 if(sort_by != 1) { // sort by responsiveness
678 for(a=1; a < syn_threads; a++) {
679 for(b=0; b < syn_nbs[a]->length; b++) {
680 for(c=0; c < MAX_NEIGHBOURS; c++) {
681 if(syn_nbs[a]->dist[b] > bestd[c]) {
682 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
683 bestd[d] = bestd[d-1];
684 besti[d] = besti[d-1];
685 bestn[d] = bestn[d-1];
686 bestp[d] = bestp[d-1];
687 }
688 besti[c] = syn_nbs[a]->index[b];
689 bestd[c] = syn_nbs[a]->dist[b];
690 bestn[c] = syn_nbs[a]->norm[b];
691 bestp[c] = syn_nbs[a]->pos[b];
692 break;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100693 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200694 }
695 }
696 }
697 } else { // sort by mean p
698 for(a=1; a < syn_threads; a++) {
699 for(b=0; b < syn_nbs[a]->length; b++) {
700 for(c=0; c < MAX_NEIGHBOURS; c++) {
701 if(target_sums[syn_nbs[a]->index[b]] > bests[c]) {
702 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
703 bestd[d] = bestd[d-1];
704 besti[d] = besti[d-1];
705 bestn[d] = bestn[d-1];
706 bestp[d] = bestp[d-1];
707 bests[d] = bests[d-1];
708 }
709 besti[c] = syn_nbs[a]->index[b];
710 bestd[c] = syn_nbs[a]->dist[b];
711 bestn[c] = syn_nbs[a]->norm[b];
712 bestp[c] = syn_nbs[a]->pos[b];
713 bests[c] = target_sums[syn_nbs[a]->index[b]];
714 break;
715 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100716 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100717 }
718 }
719 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200720 array = newAV();
721 for (a = 0; a < MAX_NEIGHBOURS && besti[a] >= 0; a++) {
722 HV* hash = newHV();
723 SV* word = newSVpvf(&vocab[besti[a] * max_w], 0);
724 if(latin_enc == 0) SvUTF8_on(word);
725 hv_store(hash, "word", strlen("word"), word , 0);
726 hv_store(hash, "dist", strlen("dist"), newSVnv(bestd[a]), 0);
727 hv_store(hash, "norm", strlen("norm"), newSVnv(bestn[a]), 0);
728 hv_store(hash, "sum", strlen("sum"), newSVnv(target_sums[besti[a]]), 0);
729 hv_store(hash, "pos", strlen("pos"), newSVnv(bestp[a]), 0);
730 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietz271e2a42016-03-22 11:37:43 +0100731 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200732 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100733 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100734end:
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100735 return newRV_noinc((SV*)result);
Marc Kupietz000ad862016-02-26 14:59:12 +0100736}
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100737
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200738int dump_vecs(char *fname) {
739 long i, j;
740 FILE *f;
741 /* if(words>200000) */
742 /* words=200000; */
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100743
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200744 if((f=fopen(fname, "w")) == NULL) {
745 fprintf(stderr, "cannot open %s for writing\n", fname);
746 return(-1);
747 }
748 fprintf(f, "%lld %lld\n", words, size);
749 for (i=0; i < words; i++) {
750 fprintf(f, "%s ", &vocab[i * max_w]);
751 for(j=0; j < size - 1; j++)
752 fprintf(f, "%f ", M[i*size + j]);
753 fprintf(f, "%f\n", M[i*size + j]);
754 }
755 fclose(f);
756 return(0);
757}
Marc Kupietzdc22b982015-10-09 09:19:34 +0200758