blob: c8647748e46c75ef7dcc51835fd0a2dddd32cd51 [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 Kupietz6b2975c2016-03-18 21:59:33 +010095 my $res;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +010096 my @lists;
Marc Kupietz6b2975c2016-03-18 21:59:33 +010097 my @collocations;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010098 if(defined($word) && $word !~ /^\s*$/) {
99 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100100 $word =~ s/\s+/ /g;
101 for my $w (split(' *\| *', $word)) {
Marc Kupietz15987412017-11-07 15:56:58 +0100102 if ($cache{$w}) {
103 $c->app->log->info("Getting $w results from cache");
104 $res = $cache{$w}
Marc Kupietza5b90152016-03-15 17:39:19 +0100105 } else {
Marc Kupietz15987412017-11-07 15:56:58 +0100106 $c->app->log->info('Looking for neighbours of '.$w);
107 if($opt_i) {
108 $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst);
109 } else {
110 $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst);
111 }
112 $cache{$w} = $res;
Marc Kupietza5b90152016-03-15 17:39:19 +0100113 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100114 push(@lists, $res->{paradigmatic});
Marc Kupietz15987412017-11-07 15:56:58 +0100115 }
116 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100117 $word =~ s/ *\| */ | /g;
Marc Kupietzb613b052016-04-28 14:11:59 +0200118 if($json) {
119 return $c->render(json => {word => $word, list => \@lists, collocators=>$res->{syntagmatic}});
120 } else {
121 $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});
122 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200123};
124
Marc Kupietza5b90152016-03-15 17:39:19 +0100125$daemon->run; # app->start;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200126
127exit;
128
129__END__
130
131__C__
132#include <stdio.h>
133#include <string.h>
134#include <math.h>
135#include <malloc.h>
136#include <stdlib.h> //strlen
Marc Kupietzf0809762016-02-26 10:13:47 +0100137#include <sys/mman.h>
Marc Kupietz000ad862016-02-26 14:59:12 +0100138#include <pthread.h>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200139
140#define max_size 2000
141#define max_w 50
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100142#define MAX_NEIGHBOURS 1000
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100143#define MAX_WORDS -1
Marc Kupietz000ad862016-02-26 14:59:12 +0100144#define MAX_THREADS 100
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100145#define MAX_CC 50
146#define EXP_TABLE_SIZE 1000
147#define MAX_EXP 6
Marc Kupietz271e2a42016-03-22 11:37:43 +0100148#define MIN_RESP 0.50
Marc Kupietzdc22b982015-10-09 09:19:34 +0200149
150//the thread function
151void *connection_handler(void *);
Marc Kupietz000ad862016-02-26 14:59:12 +0100152
153typedef struct {
154 long long *index;
155 float *dist;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100156 float *norm;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100157 long long *pos;
Marc Kupietz80abb442016-03-23 21:04:08 +0100158 int length;
Marc Kupietz000ad862016-02-26 14:59:12 +0100159} knn;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100160
Marc Kupietz000ad862016-02-26 14:59:12 +0100161typedef struct {
Marc Kupietz48c29682016-03-19 11:30:43 +0100162 long long wordi[MAX_NEIGHBOURS];
163 char sep[MAX_NEIGHBOURS];
164 int length;
165} wordlist;
166
167typedef struct {
168 wordlist *wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100169 char *token;
170 int N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100171 long from;
Marc Kupietz000ad862016-02-26 14:59:12 +0100172 unsigned long upto;
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100173 float *target_sums;
Marc Kupietz000ad862016-02-26 14:59:12 +0100174} knnpars;
175
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200176float *M, *M2=0L, *syn1neg_window, *expTable;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200177char *vocab;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200178char *garbage = NULL;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100179
Marc Kupietza2e64502016-04-27 09:53:51 +0200180long long words, size, merged_end;
Marc Kupietza5f60042017-05-04 10:38:12 +0200181long long merge_words = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100182int num_threads=20;
Marc Kupietza5b90152016-03-15 17:39:19 +0100183int latin_enc=0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100184int window;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200185
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100186int init_net(char *file_name, char *net_name, int latin) {
Marc Kupietz67c20282016-02-26 09:42:00 +0100187 FILE *f, *binvecs, *binwords;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100188 int binwords_fd, binvecs_fd, net_fd, i;
Marc Kupietz82b02672016-02-26 12:32:25 +0100189 long long a, b, c, d, cn;
190 float len;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200191 double val;
Marc Kupietz82b02672016-02-26 12:32:25 +0100192
Marc Kupietz67c20282016-02-26 09:42:00 +0100193 char binvecs_fname[256], binwords_fname[256];
194 strcpy(binwords_fname, file_name);
195 strcat(binwords_fname, ".words");
196 strcpy(binvecs_fname, file_name);
197 strcat(binvecs_fname, ".vecs");
Marc Kupietzdc22b982015-10-09 09:19:34 +0200198
Marc Kupietza5b90152016-03-15 17:39:19 +0100199 latin_enc = latin;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200200 f = fopen(file_name, "rb");
201 if (f == NULL) {
202 printf("Input file %s not found\n", file_name);
203 return -1;
204 }
205 fscanf(f, "%lld", &words);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100206 if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200207 fscanf(f, "%lld", &size);
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100208 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) {
209 printf("Converting %s to memory mappable structures\n", file_name);
Marc Kupietzf0809762016-02-26 10:13:47 +0100210 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
211 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
212 if (M == NULL) {
213 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
214 return -1;
215 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200216 if(strstr(file_name, ".txt")) {
217 for (b = 0; b < words; b++) {
218 a = 0;
219 while (1) {
220 vocab[b * max_w + a] = fgetc(f);
221 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
222 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
223 }
224 vocab[b * max_w + a] = 0;
225 len = 0;
226 for (a = 0; a < size; a++) {
227 fscanf(f, "%lf", &val);
228 M[a + b * size] = val;
229 len += val * val;
230 }
231 len = sqrt(len);
232 for (a = 0; a < size; a++) M[a + b * size] /= len;
233 }
234 } else {
235 for (b = 0; b < words; b++) {
236 a = 0;
237 while (1) {
238 vocab[b * max_w + a] = fgetc(f);
239 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
240 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
241 }
242 vocab[b * max_w + a] = 0;
243 fread(&M[b * size], sizeof(float), size, f);
244 len = 0;
245 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
246 len = sqrt(len);
247 for (a = 0; a < size; a++) M[a + b * size] /= len;
248 }
249 }
Marc Kupietz67c20282016-02-26 09:42:00 +0100250 if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) {
251 fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs);
252 fclose(binvecs);
253 fwrite(vocab, sizeof(char), (long long)words * max_w, binwords);
254 fclose(binwords);
255 }
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100256 }
257 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
258 M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0);
259 vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0);
260 if (M == MAP_FAILED || vocab == MAP_FAILED) {
261 close(binvecs_fd);
262 close(binwords_fd);
263 fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname);
264 exit(-1);
265 }
266 } else {
267 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
268 exit(-1);
Marc Kupietz67c20282016-02-26 09:42:00 +0100269 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200270 fclose(f);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100271
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200272 if(net_name && strlen(net_name) > 0) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100273 if( (net_fd = open(net_name, O_RDONLY)) >= 0) {
274 window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2;
275 // lseek(net_fd, sizeof(float) * words * size, SEEK_SET);
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100276 // munmap(M, sizeof(float) * words * size);
277 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 +0200278 if (M2 == MAP_FAILED) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100279 close(net_fd);
280 fprintf(stderr, "Cannot mmap %s\n", net_name);
281 exit(-1);
282 }
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100283 syn1neg_window = M2 + words * size;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100284 } else {
285 fprintf(stderr, "Cannot open %s\n", net_name);
286 exit(-1);
287 }
288 fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window);
289 }
290
291 expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float));
292 for (i = 0; i < EXP_TABLE_SIZE; i++) {
293 expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table
294 expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1)
295 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200296 return 0;
297}
298
Marc Kupietza2e64502016-04-27 09:53:51 +0200299long mergeVectors(char *file_name){
300 FILE *f, *binvecs, *binwords;
301 int binwords_fd, binvecs_fd, net_fd, i;
302 long long a, b, c, d, cn;
303 float len;
304 float *merge_vecs;
305 char *merge_vocab;
Marc Kupietza5f60042017-05-04 10:38:12 +0200306 /* long long merge_words, merge_size; */
307 long long merge_size;
Marc Kupietza2e64502016-04-27 09:53:51 +0200308
309 char binvecs_fname[256], binwords_fname[256];
310 strcpy(binwords_fname, file_name);
311 strcat(binwords_fname, ".words");
312 strcpy(binvecs_fname, file_name);
313 strcat(binvecs_fname, ".vecs");
314
315 f = fopen(file_name, "rb");
316 if (f == NULL) {
317 printf("Input file %s not found\n", file_name);
318 exit -1;
319 }
320 fscanf(f, "%lld", &merge_words);
321 fscanf(f, "%lld", &merge_size);
322 if(merge_size != size){
323 fprintf(stderr, "vectors must have the same length\n");
324 exit(-1);
325 }
326 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
327 merge_vecs = malloc(sizeof(float) * (words + merge_words) * size);
328 merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w);
329 if (merge_vecs == NULL || merge_vocab == NULL) {
330 close(binvecs_fd);
331 close(binwords_fd);
332 fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname);
333 exit(-1);
334 }
335 read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float));
336 read(binwords_fd, merge_vocab, merge_words * max_w);
337 } else {
338 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
339 exit(-1);
340 }
341 printf("Successfully reallocated memory\nMerging...\n");
342 fflush(stdout);
343 memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float));
344 memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w);
345 munmap(M, words * size * sizeof(float));
346 munmap(vocab, words * max_w);
347 M = merge_vecs;
348 vocab = merge_vocab;
349 merged_end = merge_words;
350 words += merge_words;
351 fclose(f);
352 printf("merged_end: %lld, words: %lld\n", merged_end, words);
353 return((long) merged_end);
354}
355
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200356void filter_garbage() {
357 long i;
Marc Kupietzab591a82016-04-28 14:08:49 +0200358 unsigned char *w, previous, c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200359 garbage = malloc(words);
360 memset(garbage, 0, words);
361 for (i = 0; i < words; i++) {
362 w = vocab + i * max_w;
363 previous = 0;
Marc Kupietzab591a82016-04-28 14:08:49 +0200364 while((c = *w++) && !garbage[i]) {
365 if( ((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) ||
366 (previous == '-' && (c & 32)) ||
367 (previous == 0xc2 && (c == 0xa4 || c == 0xb6 ))
368 ) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200369 garbage[i]=1;
370 continue;
371 }
372 previous = c;
373 }
374 }
375 return;
376}
377
Marc Kupietz271e2a42016-03-22 11:37:43 +0100378void *getCollocators(knnpars *pars) {
379 int N = pars->N;
380 int cc = pars->wl->wordi[0];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100381 knn *nbs = NULL;
382 long window_layer_size = size * window * 2;
383 long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target;
384 float f, max_f, maxmax_f;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100385 float *target_sums, *bestf, *bestn, worstbest, wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100386 long long *besti, *bestp;
Marc Kupietzd5642582016-03-19 22:23:13 +0100387
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200388 if(M2 == NULL || cc == -1)
Marc Kupietzd5642582016-03-19 22:23:13 +0100389 return NULL;
390
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100391 a = posix_memalign((void **) &target_sums, 128, words * sizeof(float));
392 besti = malloc(N * sizeof(long long));
393 bestp = malloc(N * sizeof(long long));
394 bestf = malloc(N * sizeof(float));
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100395 bestn = malloc(N * sizeof(float));
396
Marc Kupietz271e2a42016-03-22 11:37:43 +0100397 worstbest = MIN_RESP;
398
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100399 for (b = 0; b < words; b++)
400 target_sums[b]=0;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100401 for (b = 0; b < N; b++) {
Marc Kupietz271e2a42016-03-22 11:37:43 +0100402 besti[b] = -1;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100403 bestn[b] = 1;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100404 bestf[b] = worstbest;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100405 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100406
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100407 d = cc;
408 maxmax_f = -1;
409 maxmax_target = 0;
410
Marc Kupietz271e2a42016-03-22 11:37:43 +0100411 for (a = pars->from; a < pars->upto; a++) {
412 if(a >= window)
413 a++;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100414 wpos_sum = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100415 printf("window pos: %ld\n", a);
416 if (a != window) {
417 max_f = -1;
418 window_offset = a * size;
419 if (a > window)
420 window_offset -= size;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100421 for(target = 0; target < words; target ++) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100422 if(target == d)
423 continue;
424 f = 0;
425 for (c = 0; c < size; c++)
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100426 f += M2[d* size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100427 if (f < -MAX_EXP)
428 continue;
429 else if (f > MAX_EXP)
430 continue;
431 else
432 f = expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100433 wpos_sum += f;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100434
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100435 target_sums[target] += f;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100436 if(f > worstbest) {
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100437 for (b = 0; b < N; b++) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100438 if (f > bestf[b]) {
Marc Kupietz33679a32016-03-22 08:49:39 +0100439 memmove(bestf + b + 1, bestf + b, (N - b -1) * sizeof(float));
440 memmove(besti + b + 1, besti + b, (N - b -1) * sizeof(long long));
441 memmove(bestp + b + 1, bestp + b, (N - b -1) * sizeof(long long));
442 bestf[b] = f;
443 besti[b] = target;
444 bestp[b] = window-a;
445 break;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100446 }
447 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100448 if(b == N - 1)
449 worstbest = bestf[N-1];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100450 }
451 }
452 printf("%d %.2f\n", max_target, max_f);
453 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
454 if(max_f > maxmax_f) {
455 maxmax_f = max_f;
456 maxmax_target = max_target;
457 }
Marc Kupietz33679a32016-03-22 08:49:39 +0100458 for (b = 0; b < N; b++)
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100459 if(bestp[b] == window-a)
460 bestn[b] = bestf[b] / wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100461 } else {
462 printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]);
463 }
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100464
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100465 }
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100466 for (b = 0; b < words; b++)
467 pars->target_sums[b] += (target_sums[b] / wpos_sum ) / (window * 2);
468 free(target_sums);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100469 for(b=0; b<N && besti[b] >= 0; b++) // THIS LOOP IS NEEDED (b...)
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100470 printf("%s %.2f %d * ", &vocab[besti[b]*max_w], bestf[b], bestp[b]);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100471 printf("\n");
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100472 nbs = malloc(sizeof(knn));
473 nbs->index = besti;
474 nbs->dist = bestf;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100475 nbs->norm = bestn;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100476 nbs->pos = bestp;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100477 nbs->length = b-1;
478 pthread_exit(nbs);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100479}
480
Marc Kupietza2e64502016-04-27 09:53:51 +0200481wordlist *getTargetWords(char *st1, int search_backw) {
Marc Kupietz48c29682016-03-19 11:30:43 +0100482 wordlist *wl = malloc(sizeof(wordlist));
483 char st[100][max_size], sep[100];
484 long a, b=0, c=0, cn=0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200485 int unmerged;
486
Marc Kupietzdc22b982015-10-09 09:19:34 +0200487 while (1) {
488 st[cn][b] = st1[c];
489 b++;
490 c++;
491 st[cn][b] = 0;
492 if (st1[c] == 0) break;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100493 if (st1[c] == ' ' || st1[c] == '-') {
494 sep[cn++] = st1[c];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200495 b = 0;
496 c++;
497 }
498 }
499 cn++;
500 for (a = 0; a < cn; a++) {
Marc Kupietza2e64502016-04-27 09:53:51 +0200501 if(search_backw) {
502 for (b = words - 1; b >= 0; b--) if (!strcmp(&vocab[b * max_w], st[a])) break;
503 } else {
504 for (b = 0; b < words; b++) if (!strcmp(&vocab[b * max_w], st[a])) break;
505 }
Marc Kupietz34a3ee92016-02-27 22:43:16 +0100506 if (b == words) b = -1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100507 wl->wordi[a] = b;
508 fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", st[a], wl->wordi[a]);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200509 if (b == -1) {
Marc Kupietze8da3062016-02-25 08:37:53 +0100510 fprintf(stderr, "Out of dictionary word!\n");
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100511 cn--;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200512 break;
513 }
514 }
Marc Kupietz48c29682016-03-19 11:30:43 +0100515 wl->length=cn;
516 return(wl);
517}
518
519void *_get_neighbours(knnpars *pars) {
520 char *st1 = pars->token;
521 int N = pars->N;
522 long from = pars -> from;
523 unsigned long upto = pars -> upto;
524 char file_name[max_size], st[100][max_size], *sep;
525 float dist, len, *bestd, vec[max_size];
526 long long a, b, c, d, cn, *bi, *besti;
527 char ch;
528 knn *nbs = NULL;
529 wordlist *wl = pars->wl;
530
531 besti = malloc(N * sizeof(long long));
532 bestd = malloc(N * sizeof(float));
533
534 float worstbest=-1;
535
536 for (a = 0; a < N; a++) bestd[a] = 0;
537 a = 0;
538 bi = wl->wordi;
539 cn = wl->length;
540 sep = wl->sep;
541 b = bi[0];
542 c = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100543 if (b == -1) {
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100544 N = 0;
545 goto end;
546 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200547 for (a = 0; a < size; a++) vec[a] = 0;
548 for (b = 0; b < cn; b++) {
549 if (bi[b] == -1) continue;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100550 if(b>0 && sep[b-1] == '-')
551 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
552 else
553 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200554 }
555 len = 0;
556 for (a = 0; a < size; a++) len += vec[a] * vec[a];
557 len = sqrt(len);
558 for (a = 0; a < size; a++) vec[a] /= len;
559 for (a = 0; a < N; a++) bestd[a] = -1;
Marc Kupietz000ad862016-02-26 14:59:12 +0100560 for (c = from; c < upto; c++) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200561 if(garbage && garbage[c]) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200562 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +0100563// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +0100564// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
565// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200566 dist = 0;
567 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100568 if(dist > worstbest) {
569 for (a = 0; a < N; a++) {
570 if (dist > bestd[a]) {
Marc Kupietz33679a32016-03-22 08:49:39 +0100571 memmove(bestd + a + 1, bestd + a, (N - a -1) * sizeof(float));
572 memmove(besti + a + 1, besti + a, (N - a -1) * sizeof(long long));
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100573 bestd[a] = dist;
574 besti[a] = c;
575 break;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200576 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200577 }
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100578 worstbest = bestd[N-1];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200579 }
580 }
Marc Kupietz34020dc2016-02-25 08:44:19 +0100581
Marc Kupietz000ad862016-02-26 14:59:12 +0100582 nbs = malloc(sizeof(knn));
583 nbs->index = besti;
584 nbs->dist = bestd;
585 nbs->length = N;
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100586end:
Marc Kupietz000ad862016-02-26 14:59:12 +0100587 pthread_exit(nbs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200588}
589
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100590
Marc Kupietza2e64502016-04-27 09:53:51 +0200591SV *get_neighbours(char *st1, int N, int sort_by, int search_backw) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100592 HV *result = newHV();
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100593 float *target_sums, bestd[MAX_NEIGHBOURS], bestn[MAX_NEIGHBOURS], bests[MAX_NEIGHBOURS], vec[max_size];
Marc Kupietza5f60042017-05-04 10:38:12 +0200594 long long old_words;
Marc Kupietz50485ba2016-03-23 09:13:14 +0100595 long besti[MAX_NEIGHBOURS], bestp[MAX_NEIGHBOURS], a, b, c, d, slice;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100596 knn *para_nbs[MAX_THREADS];
597 knn *syn_nbs[MAX_THREADS];
Marc Kupietz000ad862016-02-26 14:59:12 +0100598 knnpars pars[MAX_THREADS];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100599 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
Marc Kupietz48c29682016-03-19 11:30:43 +0100600 wordlist *wl;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200601 int syn_threads = (M2? window * 2 : 0);
602 int para_threads = num_threads - syn_threads;
Marc Kupietz48c29682016-03-19 11:30:43 +0100603
Marc Kupietz000ad862016-02-26 14:59:12 +0100604 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
605
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200606
Marc Kupietza2e64502016-04-27 09:53:51 +0200607 wl = getTargetWords(st1, search_backw);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100608 if(wl->length < 1)
609 goto end;
Marc Kupietz48c29682016-03-19 11:30:43 +0100610
Marc Kupietza5f60042017-05-04 10:38:12 +0200611 old_words = words;
612 if(merge_words > 0)
613 words = merge_words * 1.25; /* HACK */
614 slice = words / para_threads;
615
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100616 a = posix_memalign((void **) &target_sums, 128, words * sizeof(float));
617 for(a = 0; a < words; a++)
618 target_sums[a] = 0;
619
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200620 printf("Starting %d threads\n", para_threads);
621 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100622 for(a=0; a < para_threads; a++) {
Marc Kupietz000ad862016-02-26 14:59:12 +0100623 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100624 pars[a].wl = wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100625 pars[a].N = N;
626 pars[a].from = a*slice;
627 pars[a].upto = ((a+1)*slice > words? words:(a+1)*slice);
628 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
629 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200630 if(M2) {
631 for(a=0; a < syn_threads; a++) {
632 pars[a + para_threads].target_sums = target_sums;
633 pars[a + para_threads].wl = wl;
634 pars[a + para_threads].N = N;
635 pars[a + para_threads].from = a;
636 pars[a + para_threads].upto = a+1;
637 pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *) &pars[a + para_threads]);
638 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100639 }
640 printf("Waiting for para threads to join\n");
641 fflush(stdout);
642 for (a = 0; a < para_threads; a++) pthread_join(pt[a], &para_nbs[a]);
643 printf("Para threads joint\n");
644 fflush(stdout);
Marc Kupietz000ad862016-02-26 14:59:12 +0100645
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200646 /* if(!syn_nbs[0]) */
647 /* goto end; */
Marc Kupietz000ad862016-02-26 14:59:12 +0100648
649 for(b=0; b < N; b++) {
Marc Kupietz271e2a42016-03-22 11:37:43 +0100650 besti[b] = para_nbs[0]->index[b];
651 bestd[b] = para_nbs[0]->dist[b];
Marc Kupietz000ad862016-02-26 14:59:12 +0100652 }
653
Marc Kupietz271e2a42016-03-22 11:37:43 +0100654 for(a=1; a < para_threads; a++) {
655 for(b=0; b < para_nbs[a]->length && para_nbs[a]->index[b] >= 0; b++) {
Marc Kupietza5f60042017-05-04 10:38:12 +0200656 for(c=0; c < N * para_threads; c++) {
Marc Kupietz271e2a42016-03-22 11:37:43 +0100657 if(para_nbs[a]->dist[b] > bestd[c]) {
Marc Kupietz000ad862016-02-26 14:59:12 +0100658 for(d=N-1; d>c; d--) {
659 bestd[d] = bestd[d-1];
660 besti[d] = besti[d-1];
661 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100662 besti[c] = para_nbs[a]->index[b];
663 bestd[c] = para_nbs[a]->dist[b];
Marc Kupietz000ad862016-02-26 14:59:12 +0100664 break;
665 }
666 }
667 }
668 }
669
Marc Kupietz271e2a42016-03-22 11:37:43 +0100670 AV* array = newAV();
Marc Kupietza5f60042017-05-04 10:38:12 +0200671 int i;
672 int l1_words=0, l2_words=0;
673 for (a = 0, i = 0; i < N && a < 600; a++) {
674 long long c = besti[a];
675 if(merge_words > 0) {
676 if(c >= merge_words) {
677 if(l1_words > N / 2)
678 continue;
679 else
680 l1_words++;
681 } else {
682 if(l2_words > N / 2)
683 continue;
684 else
685 l2_words++;
686 }
687 }
688 fflush(stdout);
689 printf("%s l1:%d l2:%d i:%d a:%ld\n", &vocab[c * max_w], l1_words, l2_words, i, a);
690
Marc Kupietz271e2a42016-03-22 11:37:43 +0100691 HV* hash = newHV();
Marc Kupietza5f60042017-05-04 10:38:12 +0200692 SV* word = newSVpvf(&vocab[c * max_w], 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100693 if(latin_enc == 0) SvUTF8_on(word);
Marc Kupietza5f60042017-05-04 10:38:12 +0200694 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100695 hv_store(hash, "word", strlen("word"), word , 0);
696 hv_store(hash, "dist", strlen("dist"), newSVnv(bestd[a]), 0);
697 hv_store(hash, "rank", strlen("rank"), newSVuv(besti[a]), 0);
698 AV *vector = newAV();
699 for (b = 0; b < size; b++) {
700 av_push(vector, newSVnv(M[b + besti[a] * size]));
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100701 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100702 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
703 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietza5f60042017-05-04 10:38:12 +0200704 i++;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100705 }
706 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0);
707
Marc Kupietz50485ba2016-03-23 09:13:14 +0100708 for(b=0; b < MAX_NEIGHBOURS; b++) {
709 besti[b] = -1L;
710 bestd[b] = 0;
711 bestn[b] = 0;
712 bestp[b] = 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100713 bests[b] = 0;
Marc Kupietz50485ba2016-03-23 09:13:14 +0100714 }
715
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200716 if (M2) {
717 printf("Waiting for syn threads to join\n");
718 fflush(stdout);
719 for (a = 0; a < syn_threads; a++) pthread_join(pt[a+para_threads], &syn_nbs[a]);
720 printf("syn threads joint\n");
721 fflush(stdout);
Marc Kupietz50485ba2016-03-23 09:13:14 +0100722
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200723 for(b=0; b < syn_nbs[0]->length; b++) {
724 besti[b] = syn_nbs[0]->index[b];
725 bestd[b] = syn_nbs[0]->dist[b];
726 bestn[b] = syn_nbs[0]->norm[b];
727 bestp[b] = syn_nbs[0]->pos[b];
728 bests[b] = target_sums[syn_nbs[0]->index[b]];
729 }
730
731 if(sort_by != 1) { // sort by responsiveness
732 for(a=1; a < syn_threads; a++) {
733 for(b=0; b < syn_nbs[a]->length; b++) {
734 for(c=0; c < MAX_NEIGHBOURS; c++) {
735 if(syn_nbs[a]->dist[b] > bestd[c]) {
736 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
737 bestd[d] = bestd[d-1];
738 besti[d] = besti[d-1];
739 bestn[d] = bestn[d-1];
740 bestp[d] = bestp[d-1];
741 }
742 besti[c] = syn_nbs[a]->index[b];
743 bestd[c] = syn_nbs[a]->dist[b];
744 bestn[c] = syn_nbs[a]->norm[b];
745 bestp[c] = syn_nbs[a]->pos[b];
746 break;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100747 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200748 }
749 }
750 }
751 } else { // sort by mean p
752 for(a=1; a < syn_threads; a++) {
753 for(b=0; b < syn_nbs[a]->length; b++) {
754 for(c=0; c < MAX_NEIGHBOURS; c++) {
755 if(target_sums[syn_nbs[a]->index[b]] > bests[c]) {
756 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
757 bestd[d] = bestd[d-1];
758 besti[d] = besti[d-1];
759 bestn[d] = bestn[d-1];
760 bestp[d] = bestp[d-1];
761 bests[d] = bests[d-1];
762 }
763 besti[c] = syn_nbs[a]->index[b];
764 bestd[c] = syn_nbs[a]->dist[b];
765 bestn[c] = syn_nbs[a]->norm[b];
766 bestp[c] = syn_nbs[a]->pos[b];
767 bests[c] = target_sums[syn_nbs[a]->index[b]];
768 break;
769 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100770 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100771 }
772 }
773 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200774 array = newAV();
775 for (a = 0; a < MAX_NEIGHBOURS && besti[a] >= 0; a++) {
776 HV* hash = newHV();
777 SV* word = newSVpvf(&vocab[besti[a] * max_w], 0);
778 if(latin_enc == 0) SvUTF8_on(word);
779 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzb18978b2017-11-09 14:51:17 +0100780 hv_store(hash, "rank", strlen("rank"), newSVuv(besti[a]), 0);
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200781 hv_store(hash, "dist", strlen("dist"), newSVnv(bestd[a]), 0);
782 hv_store(hash, "norm", strlen("norm"), newSVnv(bestn[a]), 0);
783 hv_store(hash, "sum", strlen("sum"), newSVnv(target_sums[besti[a]]), 0);
784 hv_store(hash, "pos", strlen("pos"), newSVnv(bestp[a]), 0);
785 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietz271e2a42016-03-22 11:37:43 +0100786 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200787 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100788 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100789end:
Marc Kupietza5f60042017-05-04 10:38:12 +0200790 words = old_words;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100791 return newRV_noinc((SV*)result);
Marc Kupietz000ad862016-02-26 14:59:12 +0100792}
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100793
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200794int dump_vecs(char *fname) {
795 long i, j;
796 FILE *f;
797 /* if(words>200000) */
798 /* words=200000; */
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100799
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200800 if((f=fopen(fname, "w")) == NULL) {
801 fprintf(stderr, "cannot open %s for writing\n", fname);
802 return(-1);
803 }
804 fprintf(f, "%lld %lld\n", words, size);
805 for (i=0; i < words; i++) {
806 fprintf(f, "%s ", &vocab[i * max_w]);
807 for(j=0; j < size - 1; j++)
808 fprintf(f, "%f ", M[i*size + j]);
809 fprintf(f, "%f\n", M[i*size + j]);
810 }
811 fclose(f);
812 return(0);
813}
Marc Kupietzdc22b982015-10-09 09:19:34 +0200814