blob: df9331714d96e0623f17bbc23dadecf41c1ec0a2 [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 Kupietzb613b052016-04-28 14:11:59 +020079 my $json=$c->param('json') || 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +010080 my $res;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +010081 my @lists;
Marc Kupietz6b2975c2016-03-18 21:59:33 +010082 my @collocations;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010083 if(defined($word) && $word !~ /^\s*$/) {
84 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +010085 $word =~ s/\s+/ /g;
86 for my $w (split(' *\| *', $word)) {
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +010087 $c->app->log->debug('Looking for neighbours of '.$w);
Marc Kupietza5b90152016-03-15 17:39:19 +010088 if($opt_i) {
Marc Kupietza2e64502016-04-27 09:53:51 +020089 $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst);
Marc Kupietza5b90152016-03-15 17:39:19 +010090 } else {
Marc Kupietza2e64502016-04-27 09:53:51 +020091 $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst);
Marc Kupietza5b90152016-03-15 17:39:19 +010092 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +010093 push(@lists, $res->{paradigmatic});
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +010094 }
Marc Kupietz247500f2015-10-09 11:29:01 +020095 }
Marc Kupietz000ad862016-02-26 14:59:12 +010096 $word =~ s/ *\| */ | /g;
Marc Kupietzb613b052016-04-28 14:11:59 +020097 if($json) {
98 return $c->render(json => {word => $word, list => \@lists, collocators=>$res->{syntagmatic}});
99 } else {
100 $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});
101 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200102};
103
Marc Kupietza5b90152016-03-15 17:39:19 +0100104$daemon->run; # app->start;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200105
106exit;
107
108__END__
109
110__C__
111#include <stdio.h>
112#include <string.h>
113#include <math.h>
114#include <malloc.h>
115#include <stdlib.h> //strlen
Marc Kupietzf0809762016-02-26 10:13:47 +0100116#include <sys/mman.h>
Marc Kupietz000ad862016-02-26 14:59:12 +0100117#include <pthread.h>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200118
119#define max_size 2000
120#define max_w 50
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100121#define MAX_NEIGHBOURS 1000
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100122#define MAX_WORDS -1
Marc Kupietz000ad862016-02-26 14:59:12 +0100123#define MAX_THREADS 100
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100124#define MAX_CC 50
125#define EXP_TABLE_SIZE 1000
126#define MAX_EXP 6
Marc Kupietz271e2a42016-03-22 11:37:43 +0100127#define MIN_RESP 0.50
Marc Kupietzdc22b982015-10-09 09:19:34 +0200128
129//the thread function
130void *connection_handler(void *);
Marc Kupietz000ad862016-02-26 14:59:12 +0100131
132typedef struct {
133 long long *index;
134 float *dist;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100135 float *norm;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100136 long long *pos;
Marc Kupietz80abb442016-03-23 21:04:08 +0100137 int length;
Marc Kupietz000ad862016-02-26 14:59:12 +0100138} knn;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100139
Marc Kupietz000ad862016-02-26 14:59:12 +0100140typedef struct {
Marc Kupietz48c29682016-03-19 11:30:43 +0100141 long long wordi[MAX_NEIGHBOURS];
142 char sep[MAX_NEIGHBOURS];
143 int length;
144} wordlist;
145
146typedef struct {
147 wordlist *wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100148 char *token;
149 int N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100150 long from;
Marc Kupietz000ad862016-02-26 14:59:12 +0100151 unsigned long upto;
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100152 float *target_sums;
Marc Kupietz000ad862016-02-26 14:59:12 +0100153} knnpars;
154
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200155float *M, *M2=0L, *syn1neg_window, *expTable;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200156char *vocab;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200157char *garbage = NULL;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100158
Marc Kupietza2e64502016-04-27 09:53:51 +0200159long long words, size, merged_end;
Marc Kupietz000ad862016-02-26 14:59:12 +0100160int num_threads=20;
Marc Kupietza5b90152016-03-15 17:39:19 +0100161int latin_enc=0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100162int window;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200163
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100164int init_net(char *file_name, char *net_name, int latin) {
Marc Kupietz67c20282016-02-26 09:42:00 +0100165 FILE *f, *binvecs, *binwords;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100166 int binwords_fd, binvecs_fd, net_fd, i;
Marc Kupietz82b02672016-02-26 12:32:25 +0100167 long long a, b, c, d, cn;
168 float len;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200169 double val;
Marc Kupietz82b02672016-02-26 12:32:25 +0100170
Marc Kupietz67c20282016-02-26 09:42:00 +0100171 char binvecs_fname[256], binwords_fname[256];
172 strcpy(binwords_fname, file_name);
173 strcat(binwords_fname, ".words");
174 strcpy(binvecs_fname, file_name);
175 strcat(binvecs_fname, ".vecs");
Marc Kupietzdc22b982015-10-09 09:19:34 +0200176
Marc Kupietza5b90152016-03-15 17:39:19 +0100177 latin_enc = latin;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200178 f = fopen(file_name, "rb");
179 if (f == NULL) {
180 printf("Input file %s not found\n", file_name);
181 return -1;
182 }
183 fscanf(f, "%lld", &words);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100184 if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200185 fscanf(f, "%lld", &size);
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100186 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) {
187 printf("Converting %s to memory mappable structures\n", file_name);
Marc Kupietzf0809762016-02-26 10:13:47 +0100188 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
189 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
190 if (M == NULL) {
191 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
192 return -1;
193 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200194 if(strstr(file_name, ".txt")) {
195 for (b = 0; b < words; b++) {
196 a = 0;
197 while (1) {
198 vocab[b * max_w + a] = fgetc(f);
199 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
200 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
201 }
202 vocab[b * max_w + a] = 0;
203 len = 0;
204 for (a = 0; a < size; a++) {
205 fscanf(f, "%lf", &val);
206 M[a + b * size] = val;
207 len += val * val;
208 }
209 len = sqrt(len);
210 for (a = 0; a < size; a++) M[a + b * size] /= len;
211 }
212 } else {
213 for (b = 0; b < words; b++) {
214 a = 0;
215 while (1) {
216 vocab[b * max_w + a] = fgetc(f);
217 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
218 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
219 }
220 vocab[b * max_w + a] = 0;
221 fread(&M[b * size], sizeof(float), size, f);
222 len = 0;
223 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
224 len = sqrt(len);
225 for (a = 0; a < size; a++) M[a + b * size] /= len;
226 }
227 }
Marc Kupietz67c20282016-02-26 09:42:00 +0100228 if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) {
229 fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs);
230 fclose(binvecs);
231 fwrite(vocab, sizeof(char), (long long)words * max_w, binwords);
232 fclose(binwords);
233 }
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100234 }
235 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
236 M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0);
237 vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0);
238 if (M == MAP_FAILED || vocab == MAP_FAILED) {
239 close(binvecs_fd);
240 close(binwords_fd);
241 fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname);
242 exit(-1);
243 }
244 } else {
245 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
246 exit(-1);
Marc Kupietz67c20282016-02-26 09:42:00 +0100247 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200248 fclose(f);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100249
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200250 if(net_name && strlen(net_name) > 0) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100251 if( (net_fd = open(net_name, O_RDONLY)) >= 0) {
252 window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2;
253 // lseek(net_fd, sizeof(float) * words * size, SEEK_SET);
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100254 // munmap(M, sizeof(float) * words * size);
255 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 +0200256 if (M2 == MAP_FAILED) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100257 close(net_fd);
258 fprintf(stderr, "Cannot mmap %s\n", net_name);
259 exit(-1);
260 }
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100261 syn1neg_window = M2 + words * size;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100262 } else {
263 fprintf(stderr, "Cannot open %s\n", net_name);
264 exit(-1);
265 }
266 fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window);
267 }
268
269 expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float));
270 for (i = 0; i < EXP_TABLE_SIZE; i++) {
271 expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table
272 expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1)
273 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200274 return 0;
275}
276
Marc Kupietza2e64502016-04-27 09:53:51 +0200277long mergeVectors(char *file_name){
278 FILE *f, *binvecs, *binwords;
279 int binwords_fd, binvecs_fd, net_fd, i;
280 long long a, b, c, d, cn;
281 float len;
282 float *merge_vecs;
283 char *merge_vocab;
284 long long merge_words, merge_size;
285
286 char binvecs_fname[256], binwords_fname[256];
287 strcpy(binwords_fname, file_name);
288 strcat(binwords_fname, ".words");
289 strcpy(binvecs_fname, file_name);
290 strcat(binvecs_fname, ".vecs");
291
292 f = fopen(file_name, "rb");
293 if (f == NULL) {
294 printf("Input file %s not found\n", file_name);
295 exit -1;
296 }
297 fscanf(f, "%lld", &merge_words);
298 fscanf(f, "%lld", &merge_size);
299 if(merge_size != size){
300 fprintf(stderr, "vectors must have the same length\n");
301 exit(-1);
302 }
303 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
304 merge_vecs = malloc(sizeof(float) * (words + merge_words) * size);
305 merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w);
306 if (merge_vecs == NULL || merge_vocab == NULL) {
307 close(binvecs_fd);
308 close(binwords_fd);
309 fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname);
310 exit(-1);
311 }
312 read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float));
313 read(binwords_fd, merge_vocab, merge_words * max_w);
314 } else {
315 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
316 exit(-1);
317 }
318 printf("Successfully reallocated memory\nMerging...\n");
319 fflush(stdout);
320 memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float));
321 memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w);
322 munmap(M, words * size * sizeof(float));
323 munmap(vocab, words * max_w);
324 M = merge_vecs;
325 vocab = merge_vocab;
326 merged_end = merge_words;
327 words += merge_words;
328 fclose(f);
329 printf("merged_end: %lld, words: %lld\n", merged_end, words);
330 return((long) merged_end);
331}
332
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200333void filter_garbage() {
334 long i;
Marc Kupietzab591a82016-04-28 14:08:49 +0200335 unsigned char *w, previous, c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200336 garbage = malloc(words);
337 memset(garbage, 0, words);
338 for (i = 0; i < words; i++) {
339 w = vocab + i * max_w;
340 previous = 0;
Marc Kupietzab591a82016-04-28 14:08:49 +0200341 while((c = *w++) && !garbage[i]) {
342 if( ((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) ||
343 (previous == '-' && (c & 32)) ||
344 (previous == 0xc2 && (c == 0xa4 || c == 0xb6 ))
345 ) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200346 garbage[i]=1;
347 continue;
348 }
349 previous = c;
350 }
351 }
352 return;
353}
354
Marc Kupietz271e2a42016-03-22 11:37:43 +0100355void *getCollocators(knnpars *pars) {
356 int N = pars->N;
357 int cc = pars->wl->wordi[0];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100358 knn *nbs = NULL;
359 long window_layer_size = size * window * 2;
360 long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target;
361 float f, max_f, maxmax_f;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100362 float *target_sums, *bestf, *bestn, worstbest, wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100363 long long *besti, *bestp;
Marc Kupietzd5642582016-03-19 22:23:13 +0100364
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200365 if(M2 == NULL || cc == -1)
Marc Kupietzd5642582016-03-19 22:23:13 +0100366 return NULL;
367
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100368 a = posix_memalign((void **) &target_sums, 128, words * sizeof(float));
369 besti = malloc(N * sizeof(long long));
370 bestp = malloc(N * sizeof(long long));
371 bestf = malloc(N * sizeof(float));
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100372 bestn = malloc(N * sizeof(float));
373
Marc Kupietz271e2a42016-03-22 11:37:43 +0100374 worstbest = MIN_RESP;
375
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100376 for (b = 0; b < words; b++)
377 target_sums[b]=0;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100378 for (b = 0; b < N; b++) {
Marc Kupietz271e2a42016-03-22 11:37:43 +0100379 besti[b] = -1;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100380 bestn[b] = 1;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100381 bestf[b] = worstbest;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100382 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100383
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100384 d = cc;
385 maxmax_f = -1;
386 maxmax_target = 0;
387
Marc Kupietz271e2a42016-03-22 11:37:43 +0100388 for (a = pars->from; a < pars->upto; a++) {
389 if(a >= window)
390 a++;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100391 wpos_sum = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100392 printf("window pos: %ld\n", a);
393 if (a != window) {
394 max_f = -1;
395 window_offset = a * size;
396 if (a > window)
397 window_offset -= size;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100398 for(target = 0; target < words; target ++) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100399 if(target == d)
400 continue;
401 f = 0;
402 for (c = 0; c < size; c++)
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100403 f += M2[d* size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100404 if (f < -MAX_EXP)
405 continue;
406 else if (f > MAX_EXP)
407 continue;
408 else
409 f = expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100410 wpos_sum += f;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100411
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100412 target_sums[target] += f;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100413 if(f > worstbest) {
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100414 for (b = 0; b < N; b++) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100415 if (f > bestf[b]) {
Marc Kupietz33679a32016-03-22 08:49:39 +0100416 memmove(bestf + b + 1, bestf + b, (N - b -1) * sizeof(float));
417 memmove(besti + b + 1, besti + b, (N - b -1) * sizeof(long long));
418 memmove(bestp + b + 1, bestp + b, (N - b -1) * sizeof(long long));
419 bestf[b] = f;
420 besti[b] = target;
421 bestp[b] = window-a;
422 break;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100423 }
424 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100425 if(b == N - 1)
426 worstbest = bestf[N-1];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100427 }
428 }
429 printf("%d %.2f\n", max_target, max_f);
430 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
431 if(max_f > maxmax_f) {
432 maxmax_f = max_f;
433 maxmax_target = max_target;
434 }
Marc Kupietz33679a32016-03-22 08:49:39 +0100435 for (b = 0; b < N; b++)
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100436 if(bestp[b] == window-a)
437 bestn[b] = bestf[b] / wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100438 } else {
439 printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]);
440 }
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100441
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100442 }
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100443 for (b = 0; b < words; b++)
444 pars->target_sums[b] += (target_sums[b] / wpos_sum ) / (window * 2);
445 free(target_sums);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100446 for(b=0; b<N && besti[b] >= 0; b++) // THIS LOOP IS NEEDED (b...)
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100447 printf("%s %.2f %d * ", &vocab[besti[b]*max_w], bestf[b], bestp[b]);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100448 printf("\n");
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100449 nbs = malloc(sizeof(knn));
450 nbs->index = besti;
451 nbs->dist = bestf;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100452 nbs->norm = bestn;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100453 nbs->pos = bestp;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100454 nbs->length = b-1;
455 pthread_exit(nbs);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100456}
457
Marc Kupietza2e64502016-04-27 09:53:51 +0200458wordlist *getTargetWords(char *st1, int search_backw) {
Marc Kupietz48c29682016-03-19 11:30:43 +0100459 wordlist *wl = malloc(sizeof(wordlist));
460 char st[100][max_size], sep[100];
461 long a, b=0, c=0, cn=0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200462 int unmerged;
463
Marc Kupietzdc22b982015-10-09 09:19:34 +0200464 while (1) {
465 st[cn][b] = st1[c];
466 b++;
467 c++;
468 st[cn][b] = 0;
469 if (st1[c] == 0) break;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100470 if (st1[c] == ' ' || st1[c] == '-') {
471 sep[cn++] = st1[c];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200472 b = 0;
473 c++;
474 }
475 }
476 cn++;
477 for (a = 0; a < cn; a++) {
Marc Kupietza2e64502016-04-27 09:53:51 +0200478 if(search_backw) {
479 for (b = words - 1; b >= 0; b--) if (!strcmp(&vocab[b * max_w], st[a])) break;
480 } else {
481 for (b = 0; b < words; b++) if (!strcmp(&vocab[b * max_w], st[a])) break;
482 }
Marc Kupietz34a3ee92016-02-27 22:43:16 +0100483 if (b == words) b = -1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100484 wl->wordi[a] = b;
485 fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", st[a], wl->wordi[a]);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200486 if (b == -1) {
Marc Kupietze8da3062016-02-25 08:37:53 +0100487 fprintf(stderr, "Out of dictionary word!\n");
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100488 cn--;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200489 break;
490 }
491 }
Marc Kupietz48c29682016-03-19 11:30:43 +0100492 wl->length=cn;
493 return(wl);
494}
495
496void *_get_neighbours(knnpars *pars) {
497 char *st1 = pars->token;
498 int N = pars->N;
499 long from = pars -> from;
500 unsigned long upto = pars -> upto;
501 char file_name[max_size], st[100][max_size], *sep;
502 float dist, len, *bestd, vec[max_size];
503 long long a, b, c, d, cn, *bi, *besti;
504 char ch;
505 knn *nbs = NULL;
506 wordlist *wl = pars->wl;
507
508 besti = malloc(N * sizeof(long long));
509 bestd = malloc(N * sizeof(float));
510
511 float worstbest=-1;
512
513 for (a = 0; a < N; a++) bestd[a] = 0;
514 a = 0;
515 bi = wl->wordi;
516 cn = wl->length;
517 sep = wl->sep;
518 b = bi[0];
519 c = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100520 if (b == -1) {
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100521 N = 0;
522 goto end;
523 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200524 for (a = 0; a < size; a++) vec[a] = 0;
525 for (b = 0; b < cn; b++) {
526 if (bi[b] == -1) continue;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100527 if(b>0 && sep[b-1] == '-')
528 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
529 else
530 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200531 }
532 len = 0;
533 for (a = 0; a < size; a++) len += vec[a] * vec[a];
534 len = sqrt(len);
535 for (a = 0; a < size; a++) vec[a] /= len;
536 for (a = 0; a < N; a++) bestd[a] = -1;
Marc Kupietz000ad862016-02-26 14:59:12 +0100537 for (c = from; c < upto; c++) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200538 if(garbage && garbage[c]) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200539 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +0100540// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +0100541// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
542// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200543 dist = 0;
544 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100545 if(dist > worstbest) {
546 for (a = 0; a < N; a++) {
547 if (dist > bestd[a]) {
Marc Kupietz33679a32016-03-22 08:49:39 +0100548 memmove(bestd + a + 1, bestd + a, (N - a -1) * sizeof(float));
549 memmove(besti + a + 1, besti + a, (N - a -1) * sizeof(long long));
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100550 bestd[a] = dist;
551 besti[a] = c;
552 break;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200553 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200554 }
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100555 worstbest = bestd[N-1];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200556 }
557 }
Marc Kupietz34020dc2016-02-25 08:44:19 +0100558
Marc Kupietz000ad862016-02-26 14:59:12 +0100559 nbs = malloc(sizeof(knn));
560 nbs->index = besti;
561 nbs->dist = bestd;
562 nbs->length = N;
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100563end:
Marc Kupietz000ad862016-02-26 14:59:12 +0100564 pthread_exit(nbs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200565}
566
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100567
Marc Kupietza2e64502016-04-27 09:53:51 +0200568SV *get_neighbours(char *st1, int N, int sort_by, int search_backw) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100569 HV *result = newHV();
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100570 float *target_sums, bestd[MAX_NEIGHBOURS], bestn[MAX_NEIGHBOURS], bests[MAX_NEIGHBOURS], vec[max_size];
Marc Kupietz50485ba2016-03-23 09:13:14 +0100571 long besti[MAX_NEIGHBOURS], bestp[MAX_NEIGHBOURS], a, b, c, d, slice;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100572 knn *para_nbs[MAX_THREADS];
573 knn *syn_nbs[MAX_THREADS];
Marc Kupietz000ad862016-02-26 14:59:12 +0100574 knnpars pars[MAX_THREADS];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100575 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
Marc Kupietz48c29682016-03-19 11:30:43 +0100576 wordlist *wl;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200577 int syn_threads = (M2? window * 2 : 0);
578 int para_threads = num_threads - syn_threads;
Marc Kupietz48c29682016-03-19 11:30:43 +0100579
Marc Kupietz000ad862016-02-26 14:59:12 +0100580 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
581
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200582 slice = words / para_threads;
583
Marc Kupietza2e64502016-04-27 09:53:51 +0200584 wl = getTargetWords(st1, search_backw);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100585 if(wl->length < 1)
586 goto end;
Marc Kupietz48c29682016-03-19 11:30:43 +0100587
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100588 a = posix_memalign((void **) &target_sums, 128, words * sizeof(float));
589 for(a = 0; a < words; a++)
590 target_sums[a] = 0;
591
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200592 printf("Starting %d threads\n", para_threads);
593 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100594 for(a=0; a < para_threads; a++) {
Marc Kupietz000ad862016-02-26 14:59:12 +0100595 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100596 pars[a].wl = wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100597 pars[a].N = N;
598 pars[a].from = a*slice;
599 pars[a].upto = ((a+1)*slice > words? words:(a+1)*slice);
600 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
601 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200602 if(M2) {
603 for(a=0; a < syn_threads; a++) {
604 pars[a + para_threads].target_sums = target_sums;
605 pars[a + para_threads].wl = wl;
606 pars[a + para_threads].N = N;
607 pars[a + para_threads].from = a;
608 pars[a + para_threads].upto = a+1;
609 pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *) &pars[a + para_threads]);
610 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100611 }
612 printf("Waiting for para threads to join\n");
613 fflush(stdout);
614 for (a = 0; a < para_threads; a++) pthread_join(pt[a], &para_nbs[a]);
615 printf("Para threads joint\n");
616 fflush(stdout);
Marc Kupietz000ad862016-02-26 14:59:12 +0100617
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200618 /* if(!syn_nbs[0]) */
619 /* goto end; */
Marc Kupietz000ad862016-02-26 14:59:12 +0100620
621 for(b=0; b < N; b++) {
Marc Kupietz271e2a42016-03-22 11:37:43 +0100622 besti[b] = para_nbs[0]->index[b];
623 bestd[b] = para_nbs[0]->dist[b];
Marc Kupietz000ad862016-02-26 14:59:12 +0100624 }
625
Marc Kupietz271e2a42016-03-22 11:37:43 +0100626 for(a=1; a < para_threads; a++) {
627 for(b=0; b < para_nbs[a]->length && para_nbs[a]->index[b] >= 0; b++) {
Marc Kupietz000ad862016-02-26 14:59:12 +0100628 for(c=0; c < N; c++) {
Marc Kupietz271e2a42016-03-22 11:37:43 +0100629 if(para_nbs[a]->dist[b] > bestd[c]) {
Marc Kupietz000ad862016-02-26 14:59:12 +0100630 for(d=N-1; d>c; d--) {
631 bestd[d] = bestd[d-1];
632 besti[d] = besti[d-1];
633 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100634 besti[c] = para_nbs[a]->index[b];
635 bestd[c] = para_nbs[a]->dist[b];
Marc Kupietz000ad862016-02-26 14:59:12 +0100636 break;
637 }
638 }
639 }
640 }
641
Marc Kupietz271e2a42016-03-22 11:37:43 +0100642 AV* array = newAV();
643 for (a = 0; a < N; a++) {
Marc Kupietz271e2a42016-03-22 11:37:43 +0100644 HV* hash = newHV();
Marc Kupietz50485ba2016-03-23 09:13:14 +0100645 SV* word = newSVpvf(&vocab[besti[a] * max_w], 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100646 if(latin_enc == 0) SvUTF8_on(word);
647 hv_store(hash, "word", strlen("word"), word , 0);
648 hv_store(hash, "dist", strlen("dist"), newSVnv(bestd[a]), 0);
649 hv_store(hash, "rank", strlen("rank"), newSVuv(besti[a]), 0);
650 AV *vector = newAV();
651 for (b = 0; b < size; b++) {
652 av_push(vector, newSVnv(M[b + besti[a] * size]));
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100653 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100654 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
655 av_push(array, newRV_noinc((SV*)hash));
656 }
657 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0);
658
Marc Kupietz50485ba2016-03-23 09:13:14 +0100659 for(b=0; b < MAX_NEIGHBOURS; b++) {
660 besti[b] = -1L;
661 bestd[b] = 0;
662 bestn[b] = 0;
663 bestp[b] = 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100664 bests[b] = 0;
Marc Kupietz50485ba2016-03-23 09:13:14 +0100665 }
666
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200667 if (M2) {
668 printf("Waiting for syn threads to join\n");
669 fflush(stdout);
670 for (a = 0; a < syn_threads; a++) pthread_join(pt[a+para_threads], &syn_nbs[a]);
671 printf("syn threads joint\n");
672 fflush(stdout);
Marc Kupietz50485ba2016-03-23 09:13:14 +0100673
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200674 for(b=0; b < syn_nbs[0]->length; b++) {
675 besti[b] = syn_nbs[0]->index[b];
676 bestd[b] = syn_nbs[0]->dist[b];
677 bestn[b] = syn_nbs[0]->norm[b];
678 bestp[b] = syn_nbs[0]->pos[b];
679 bests[b] = target_sums[syn_nbs[0]->index[b]];
680 }
681
682 if(sort_by != 1) { // sort by responsiveness
683 for(a=1; a < syn_threads; a++) {
684 for(b=0; b < syn_nbs[a]->length; b++) {
685 for(c=0; c < MAX_NEIGHBOURS; c++) {
686 if(syn_nbs[a]->dist[b] > bestd[c]) {
687 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
688 bestd[d] = bestd[d-1];
689 besti[d] = besti[d-1];
690 bestn[d] = bestn[d-1];
691 bestp[d] = bestp[d-1];
692 }
693 besti[c] = syn_nbs[a]->index[b];
694 bestd[c] = syn_nbs[a]->dist[b];
695 bestn[c] = syn_nbs[a]->norm[b];
696 bestp[c] = syn_nbs[a]->pos[b];
697 break;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100698 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200699 }
700 }
701 }
702 } else { // sort by mean p
703 for(a=1; a < syn_threads; a++) {
704 for(b=0; b < syn_nbs[a]->length; b++) {
705 for(c=0; c < MAX_NEIGHBOURS; c++) {
706 if(target_sums[syn_nbs[a]->index[b]] > bests[c]) {
707 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
708 bestd[d] = bestd[d-1];
709 besti[d] = besti[d-1];
710 bestn[d] = bestn[d-1];
711 bestp[d] = bestp[d-1];
712 bests[d] = bests[d-1];
713 }
714 besti[c] = syn_nbs[a]->index[b];
715 bestd[c] = syn_nbs[a]->dist[b];
716 bestn[c] = syn_nbs[a]->norm[b];
717 bestp[c] = syn_nbs[a]->pos[b];
718 bests[c] = target_sums[syn_nbs[a]->index[b]];
719 break;
720 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100721 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100722 }
723 }
724 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200725 array = newAV();
726 for (a = 0; a < MAX_NEIGHBOURS && besti[a] >= 0; a++) {
727 HV* hash = newHV();
728 SV* word = newSVpvf(&vocab[besti[a] * max_w], 0);
729 if(latin_enc == 0) SvUTF8_on(word);
730 hv_store(hash, "word", strlen("word"), word , 0);
731 hv_store(hash, "dist", strlen("dist"), newSVnv(bestd[a]), 0);
732 hv_store(hash, "norm", strlen("norm"), newSVnv(bestn[a]), 0);
733 hv_store(hash, "sum", strlen("sum"), newSVnv(target_sums[besti[a]]), 0);
734 hv_store(hash, "pos", strlen("pos"), newSVnv(bestp[a]), 0);
735 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietz271e2a42016-03-22 11:37:43 +0100736 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200737 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100738 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100739end:
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100740 return newRV_noinc((SV*)result);
Marc Kupietz000ad862016-02-26 14:59:12 +0100741}
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100742
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200743int dump_vecs(char *fname) {
744 long i, j;
745 FILE *f;
746 /* if(words>200000) */
747 /* words=200000; */
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100748
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200749 if((f=fopen(fname, "w")) == NULL) {
750 fprintf(stderr, "cannot open %s for writing\n", fname);
751 return(-1);
752 }
753 fprintf(f, "%lld %lld\n", words, size);
754 for (i=0; i < words; i++) {
755 fprintf(f, "%s ", &vocab[i * max_w]);
756 for(j=0; j < size - 1; j++)
757 fprintf(f, "%f ", M[i*size + j]);
758 fprintf(f, "%f\n", M[i*size + j]);
759 }
760 fclose(f);
761 return(0);
762}
Marc Kupietzdc22b982015-10-09 09:19:34 +0200763