blob: 8085874e6a0c0cef790f06c1651edf5610521af0 [file] [log] [blame]
Marc Kupietzdc22b982015-10-09 09:19:34 +02001#!/usr/local/bin/perl
2use Inline C;
Marc Kupietza2e64502016-04-27 09:53:51 +02003use Inline C => Config => CLEAN_AFTER_BUILD => 0, ccflags => $Config{ccflags}." -O4";
Marc Kupietza5f60042017-05-04 10:38:12 +02004#use Inline C => Config => BUILD_NOISY => 1, CFLAGS => $Config{cflags}." -O4 -mtune k9";
5#use Inline C => Config => CLEAN_AFTER_BUILD => 0, ccflags => $Config{ccflags}." -Ofast -march k8 -mtune k8 ";
Marc Kupietzdc22b982015-10-09 09:19:34 +02006use Mojolicious::Lite;
Marc Kupietzc4893362016-02-25 08:04:46 +01007use Mojo::JSON qw(decode_json encode_json to_json);
Marc Kupietz30ca4342017-11-22 21:21:20 +01008use base 'Mojolicious::Plugin';
9
Marc Kupietz247500f2015-10-09 11:29:01 +020010use Encode qw(decode encode);
Marc Kupietza5b90152016-03-15 17:39:19 +010011use Getopt::Std;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010012use Mojo::Server::Daemon;
Marc Kupietzffef9302017-11-07 15:58:01 +010013use Cwd;
14app->static->paths->[0] = getcwd;
15
Marc Kupietzd4227392016-03-01 16:45:12 +010016plugin 'Log::Access';
Marc Kupietzb3422c12017-07-04 14:12:11 +020017plugin "RequestBase";
Marc Kupietzdc22b982015-10-09 09:19:34 +020018
Marc Kupietza5b90152016-03-15 17:39:19 +010019our $opt_i = 0; # latin1-input?
20our $opt_l = undef;
21our $opt_p = 5676;
Marc Kupietza2e64502016-04-27 09:53:51 +020022our $opt_m;
Marc Kupietz6ed81872016-04-27 14:04:04 +020023our $opt_M;
Marc Kupietz43ee87e2016-04-25 10:50:08 +020024our $opt_n = '';
25our $opt_d;
Marc Kupietz5c3887d2016-04-28 08:53:35 +020026our $opt_G;
Marc Kupietza5b90152016-03-15 17:39:19 +010027
Marc Kupietz6ed81872016-04-27 14:04:04 +020028my %marked;
Marc Kupietz793413b2016-04-02 21:48:57 +020029my $training_args="";
Marc Kupietza2e64502016-04-27 09:53:51 +020030my $mergedEnd=0;
Marc Kupietz15987412017-11-07 15:56:58 +010031my %cache;
Marc Kupietz793413b2016-04-02 21:48:57 +020032
Marc Kupietza5f60042017-05-04 10:38:12 +020033getopts('d:Gil:p:m:n:M:');
Marc Kupietz6ed81872016-04-27 14:04:04 +020034
35if($opt_M) {
Marc Kupietzed930212016-04-27 15:42:38 +020036 open my $handle, '<:encoding(UTF-8)', $opt_M
37 or die "Can't open '$opt_M' for reading: $!";
38 while(<$handle>) {
Marc Kupietz6ed81872016-04-27 14:04:04 +020039 foreach my $mw (split /\s+/) {
40 $marked{$mw}=1
41 }
42 }
Marc Kupietzed930212016-04-27 15:42:38 +020043 close($handle);
Marc Kupietz6ed81872016-04-27 14:04:04 +020044}
Marc Kupietza5b90152016-03-15 17:39:19 +010045
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010046# -cbow 1 -size 200 -window 8 -negative 25 -hs 0 -sample 1e-4 -threads 40 -binary 1 -iter 15
Marc Kupietza5b90152016-03-15 17:39:19 +010047if(!$ARGV[0]) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010048 init_net("vectors15.bin", $opt_n, ($opt_i? 1 : 0));
Marc Kupietz2cb667e2016-03-10 09:44:12 +010049} else {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010050 init_net($ARGV[0], $opt_n, ($opt_i? 1 : 0));
Marc Kupietz793413b2016-04-02 21:48:57 +020051 if(open(FILE, "$ARGV[0].args")) {
52 $training_args = <FILE>;
53 }
54 close(FILE);
Marc Kupietz2cb667e2016-03-10 09:44:12 +010055}
Marc Kupietzdc22b982015-10-09 09:19:34 +020056
Marc Kupietza2e64502016-04-27 09:53:51 +020057if($opt_m) {
58 $mergedEnd = mergeVectors($opt_m);
59}
60
Marc Kupietz6ed81872016-04-27 14:04:04 +020061
Marc Kupietz43ee87e2016-04-25 10:50:08 +020062if($opt_d) { # -d: dump vecs and exit
63 dump_vecs($opt_d);
64 exit;
65}
66
Marc Kupietza5b90152016-03-15 17:39:19 +010067my $daemon = Mojo::Server::Daemon->new(
68 app => app,
69 listen => ['http://'.($opt_l ? $opt_l : '*').":$opt_p"]
70);
71
Marc Kupietz5c3887d2016-04-28 08:53:35 +020072if($opt_G) {
73 print "Filtering garbage\n";
74 filter_garbage();
75}
76
Marc Kupietz554aff52017-11-09 14:42:09 +010077get '*/js/*' => sub {
Marc Kupietzffef9302017-11-07 15:58:01 +010078 my $c = shift;
79 my $url = $c->req->url;
80 $url =~ s@/derekovecs@@g;
81 $c->app->log->info("GET: " . $url);
82 $c->reply->static($url);
83};
84
Marc Kupietzdf3d4b52017-11-29 16:57:27 +010085get '*/img/*' => sub {
86 my $c = shift;
87 my $url = $c->req->url;
88 $url =~ s@/derekovecs@@g;
89 $c->app->log->info("GET: " . $url);
90 $c->reply->static($url);
91};
92
Marc Kupietzdc22b982015-10-09 09:19:34 +020093get '/' => sub {
94 my $c = shift;
Marc Kupietza5f60042017-05-04 10:38:12 +020095 $c->app->log->info("get: ".$c->req->url->to_abs);
Marc Kupietzdc22b982015-10-09 09:19:34 +020096 my $word=$c->param('word');
Marc Kupietz44bee3c2016-02-25 16:26:29 +010097 my $no_nbs=$c->param('n') || 100;
98 my $no_iterations=$c->param('N') || 2000;
Marc Kupietzd4227392016-03-01 16:45:12 +010099 my $perplexity=$c->param('perplexity') || 20;
Marc Kupietzc4d62f82016-03-01 11:04:24 +0100100 my $epsilon=$c->param('epsilon') || 5;
Marc Kupietzd7aea722016-03-02 11:59:12 +0100101 my $som=$c->param('som') || 0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200102 my $searchBaseVocabFirst=$c->param('sbf') || 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100103 my $sort=$c->param('sort') || 0;
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100104 my $csv=$c->param('csv') || 0;
Marc Kupietzb613b052016-04-28 14:11:59 +0200105 my $json=$c->param('json') || 0;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100106 my $cutoff=$c->param('cutoff') || 1000000;
Marc Kupietzd91212f2017-11-13 10:05:09 +0100107 my $dedupe=$c->param('dedupe') || 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100108 my $res;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100109 my @lists;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100110 my @collocations;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100111 if(defined($word) && $word !~ /^\s*$/) {
112 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100113 $word =~ s/\s+/ /g;
114 for my $w (split(' *\| *', $word)) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100115 if ($cache{$w.$cutoff.$no_nbs.$sort.$dedupe}) {
Marc Kupietz15987412017-11-07 15:56:58 +0100116 $c->app->log->info("Getting $w results from cache");
Marc Kupietzd91212f2017-11-13 10:05:09 +0100117 $res = $cache{$w.$cutoff.$no_nbs.$sort.$dedupe}
Marc Kupietza5b90152016-03-15 17:39:19 +0100118 } else {
Marc Kupietz15987412017-11-07 15:56:58 +0100119 $c->app->log->info('Looking for neighbours of '.$w);
120 if($opt_i) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100121 $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe);
Marc Kupietz15987412017-11-07 15:56:58 +0100122 } else {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100123 $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe);
Marc Kupietz15987412017-11-07 15:56:58 +0100124 }
Marc Kupietz2dd2dd72017-12-01 22:08:14 +0100125 $cache{$w.$cutoff.$no_nbs.$sort.$dedupe} = $res;
Marc Kupietza5b90152016-03-15 17:39:19 +0100126 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100127 push(@lists, $res->{paradigmatic});
Marc Kupietz15987412017-11-07 15:56:58 +0100128 }
129 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100130 $word =~ s/ *\| */ | /g;
Marc Kupietzb613b052016-04-28 14:11:59 +0200131 if($json) {
132 return $c->render(json => {word => $word, list => \@lists, collocators=>$res->{syntagmatic}});
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100133 } elsif($csv) {
134 my $csv_data="";
135 for (my $i=0; $i <= $no_nbs; $i++) {
136 $csv_data .= $res->{paradigmatic}->[$i]->{word} . ", ";
137 }
138 for (my $i=0; $i < $no_nbs; $i++) {
139 $csv_data .= $res->{syntagmatic}->[$i]->{word} . ", ";
140 }
141 chop $csv_data;
142 chop $csv_data;
143 $csv_data .= "\n";
144 return $c->render(text=>$csv_data);
Marc Kupietzb613b052016-04-28 14:11:59 +0200145 } else {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100146 $c->render(template=>"index", word=>$word, cutoff=>$cutoff, no_nbs=>$no_nbs, no_iterations => $no_iterations, epsilon=> $epsilon, perplexity=> $perplexity, show_som=>$som, searchBaseVocabFirst=>$searchBaseVocabFirst, sort=>$sort, training_args=>$training_args, mergedEnd=> $mergedEnd, dedupe=> $dedupe, marked=>\%marked, lists=> \@lists, collocators=> $res->{syntagmatic});
Marc Kupietzb613b052016-04-28 14:11:59 +0200147 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200148};
149
Marc Kupietz30ca4342017-11-22 21:21:20 +0100150helper(bitvec2window => sub {
151 my ($self, $n) = @_;
152 my $str = unpack("B32", pack("N", $n));
153 $str =~ s/^\d{22}//;
154 $str =~ s/^(\d{5})/$1x/;
155 $str =~ s/0/·/g;
156 $str =~ s/1/+/g;
157 return $str;
158 });
159
Marc Kupietza5b90152016-03-15 17:39:19 +0100160$daemon->run; # app->start;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200161
162exit;
163
164__END__
165
166__C__
167#include <stdio.h>
168#include <string.h>
169#include <math.h>
170#include <malloc.h>
171#include <stdlib.h> //strlen
Marc Kupietzf0809762016-02-26 10:13:47 +0100172#include <sys/mman.h>
Marc Kupietz000ad862016-02-26 14:59:12 +0100173#include <pthread.h>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200174
175#define max_size 2000
176#define max_w 50
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100177#define MAX_NEIGHBOURS 1000
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100178#define MAX_WORDS -1
Marc Kupietz000ad862016-02-26 14:59:12 +0100179#define MAX_THREADS 100
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100180#define MAX_CC 50
181#define EXP_TABLE_SIZE 1000
182#define MAX_EXP 6
Marc Kupietz271e2a42016-03-22 11:37:43 +0100183#define MIN_RESP 0.50
Marc Kupietzdc22b982015-10-09 09:19:34 +0200184
185//the thread function
186void *connection_handler(void *);
Marc Kupietz000ad862016-02-26 14:59:12 +0100187
188typedef struct {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100189 long long wordi;
190 long position;
191 float activation;
Marc Kupietza77acce2017-11-30 16:59:07 +0100192 float cprobability; // column wise probability
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100193 float probability;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100194 float activation_sum;
195 float conorm;
196 float max_activation;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100197} collocator;
198
199typedef struct {
200 collocator *best;
Marc Kupietz80abb442016-03-23 21:04:08 +0100201 int length;
Marc Kupietz000ad862016-02-26 14:59:12 +0100202} knn;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100203
Marc Kupietz000ad862016-02-26 14:59:12 +0100204typedef struct {
Marc Kupietz48c29682016-03-19 11:30:43 +0100205 long long wordi[MAX_NEIGHBOURS];
206 char sep[MAX_NEIGHBOURS];
207 int length;
208} wordlist;
209
210typedef struct {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100211 long cutoff;
Marc Kupietz48c29682016-03-19 11:30:43 +0100212 wordlist *wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100213 char *token;
214 int N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100215 long from;
Marc Kupietz000ad862016-02-26 14:59:12 +0100216 unsigned long upto;
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100217 float *target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100218 float *window_sums;
Marc Kupietz000ad862016-02-26 14:59:12 +0100219} knnpars;
220
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200221float *M, *M2=0L, *syn1neg_window, *expTable;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100222float *window_sums;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200223char *vocab;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200224char *garbage = NULL;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100225
Marc Kupietza2e64502016-04-27 09:53:51 +0200226long long words, size, merged_end;
Marc Kupietza5f60042017-05-04 10:38:12 +0200227long long merge_words = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100228int num_threads=20;
Marc Kupietza5b90152016-03-15 17:39:19 +0100229int latin_enc=0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100230int window;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200231
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100232int init_net(char *file_name, char *net_name, int latin) {
Marc Kupietz67c20282016-02-26 09:42:00 +0100233 FILE *f, *binvecs, *binwords;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100234 int binwords_fd, binvecs_fd, net_fd, i;
Marc Kupietz82b02672016-02-26 12:32:25 +0100235 long long a, b, c, d, cn;
236 float len;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200237 double val;
Marc Kupietz82b02672016-02-26 12:32:25 +0100238
Marc Kupietz67c20282016-02-26 09:42:00 +0100239 char binvecs_fname[256], binwords_fname[256];
240 strcpy(binwords_fname, file_name);
241 strcat(binwords_fname, ".words");
242 strcpy(binvecs_fname, file_name);
243 strcat(binvecs_fname, ".vecs");
Marc Kupietzdc22b982015-10-09 09:19:34 +0200244
Marc Kupietza5b90152016-03-15 17:39:19 +0100245 latin_enc = latin;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200246 f = fopen(file_name, "rb");
247 if (f == NULL) {
248 printf("Input file %s not found\n", file_name);
249 return -1;
250 }
251 fscanf(f, "%lld", &words);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100252 if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200253 fscanf(f, "%lld", &size);
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100254 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) {
255 printf("Converting %s to memory mappable structures\n", file_name);
Marc Kupietzf0809762016-02-26 10:13:47 +0100256 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
257 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
258 if (M == NULL) {
259 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
260 return -1;
261 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200262 if(strstr(file_name, ".txt")) {
263 for (b = 0; b < words; b++) {
264 a = 0;
265 while (1) {
266 vocab[b * max_w + a] = fgetc(f);
267 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
268 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
269 }
270 vocab[b * max_w + a] = 0;
271 len = 0;
272 for (a = 0; a < size; a++) {
273 fscanf(f, "%lf", &val);
274 M[a + b * size] = val;
275 len += val * val;
276 }
277 len = sqrt(len);
278 for (a = 0; a < size; a++) M[a + b * size] /= len;
279 }
280 } else {
281 for (b = 0; b < words; b++) {
282 a = 0;
283 while (1) {
284 vocab[b * max_w + a] = fgetc(f);
285 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
286 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
287 }
288 vocab[b * max_w + a] = 0;
289 fread(&M[b * size], sizeof(float), size, f);
290 len = 0;
291 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
292 len = sqrt(len);
293 for (a = 0; a < size; a++) M[a + b * size] /= len;
294 }
295 }
Marc Kupietz67c20282016-02-26 09:42:00 +0100296 if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) {
297 fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs);
298 fclose(binvecs);
299 fwrite(vocab, sizeof(char), (long long)words * max_w, binwords);
300 fclose(binwords);
301 }
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100302 }
303 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
304 M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0);
305 vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0);
306 if (M == MAP_FAILED || vocab == MAP_FAILED) {
307 close(binvecs_fd);
308 close(binwords_fd);
309 fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname);
310 exit(-1);
311 }
312 } else {
313 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
314 exit(-1);
Marc Kupietz67c20282016-02-26 09:42:00 +0100315 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200316 fclose(f);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100317
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200318 if(net_name && strlen(net_name) > 0) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100319 if( (net_fd = open(net_name, O_RDONLY)) >= 0) {
320 window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2;
321 // lseek(net_fd, sizeof(float) * words * size, SEEK_SET);
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100322 // munmap(M, sizeof(float) * words * size);
323 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 +0200324 if (M2 == MAP_FAILED) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100325 close(net_fd);
326 fprintf(stderr, "Cannot mmap %s\n", net_name);
327 exit(-1);
328 }
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100329 syn1neg_window = M2 + words * size;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100330 } else {
331 fprintf(stderr, "Cannot open %s\n", net_name);
332 exit(-1);
333 }
334 fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window);
335 }
336
337 expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float));
338 for (i = 0; i < EXP_TABLE_SIZE; i++) {
339 expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table
340 expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1)
341 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100342 window_sums = malloc(sizeof(float) * (window+1) * 2);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200343 return 0;
344}
345
Marc Kupietza2e64502016-04-27 09:53:51 +0200346long mergeVectors(char *file_name){
347 FILE *f, *binvecs, *binwords;
348 int binwords_fd, binvecs_fd, net_fd, i;
349 long long a, b, c, d, cn;
350 float len;
351 float *merge_vecs;
352 char *merge_vocab;
Marc Kupietza5f60042017-05-04 10:38:12 +0200353 /* long long merge_words, merge_size; */
354 long long merge_size;
Marc Kupietza2e64502016-04-27 09:53:51 +0200355
356 char binvecs_fname[256], binwords_fname[256];
357 strcpy(binwords_fname, file_name);
358 strcat(binwords_fname, ".words");
359 strcpy(binvecs_fname, file_name);
360 strcat(binvecs_fname, ".vecs");
361
362 f = fopen(file_name, "rb");
363 if (f == NULL) {
364 printf("Input file %s not found\n", file_name);
365 exit -1;
366 }
367 fscanf(f, "%lld", &merge_words);
368 fscanf(f, "%lld", &merge_size);
369 if(merge_size != size){
370 fprintf(stderr, "vectors must have the same length\n");
371 exit(-1);
372 }
373 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
374 merge_vecs = malloc(sizeof(float) * (words + merge_words) * size);
375 merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w);
376 if (merge_vecs == NULL || merge_vocab == NULL) {
377 close(binvecs_fd);
378 close(binwords_fd);
379 fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname);
380 exit(-1);
381 }
382 read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float));
383 read(binwords_fd, merge_vocab, merge_words * max_w);
384 } else {
385 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
386 exit(-1);
387 }
388 printf("Successfully reallocated memory\nMerging...\n");
389 fflush(stdout);
390 memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float));
391 memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w);
392 munmap(M, words * size * sizeof(float));
393 munmap(vocab, words * max_w);
394 M = merge_vecs;
395 vocab = merge_vocab;
396 merged_end = merge_words;
397 words += merge_words;
398 fclose(f);
399 printf("merged_end: %lld, words: %lld\n", merged_end, words);
400 return((long) merged_end);
401}
402
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200403void filter_garbage() {
404 long i;
Marc Kupietzab591a82016-04-28 14:08:49 +0200405 unsigned char *w, previous, c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200406 garbage = malloc(words);
407 memset(garbage, 0, words);
408 for (i = 0; i < words; i++) {
409 w = vocab + i * max_w;
410 previous = 0;
Marc Kupietzab591a82016-04-28 14:08:49 +0200411 while((c = *w++) && !garbage[i]) {
412 if( ((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) ||
413 (previous == '-' && (c & 32)) ||
Marc Kupietz33e3aa12017-11-09 16:19:38 +0100414 (previous == 0xc2 && (c == 0xa4 || c == 0xb6 )) ||
415 c == '<'
Marc Kupietzab591a82016-04-28 14:08:49 +0200416 ) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200417 garbage[i]=1;
418 continue;
419 }
420 previous = c;
421 }
422 }
423 return;
424}
425
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100426void *getCollocators(void *args) {
427 knnpars *pars = args;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100428 int N = pars->N;
429 int cc = pars->wl->wordi[0];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100430 knn *nbs = NULL;
431 long window_layer_size = size * window * 2;
432 long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target;
433 float f, max_f, maxmax_f;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100434 float *target_sums, worstbest, wpos_sum;
435 collocator *best;
Marc Kupietzd5642582016-03-19 22:23:13 +0100436
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200437 if(M2 == NULL || cc == -1)
Marc Kupietzd5642582016-03-19 22:23:13 +0100438 return NULL;
439
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100440 a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100441 best = malloc(N * sizeof(collocator));
Marc Kupietz271e2a42016-03-22 11:37:43 +0100442 worstbest = MIN_RESP;
443
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100444 for (b = 0; b < pars->cutoff; b++)
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100445 target_sums[b]=0;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100446 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100447 best[b].wordi = -1;
448 best[b].probability = 1;
449 best[b].activation = worstbest;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100450 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100451
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100452 d = cc;
453 maxmax_f = -1;
454 maxmax_target = 0;
455
Marc Kupietz271e2a42016-03-22 11:37:43 +0100456 for (a = pars->from; a < pars->upto; a++) {
457 if(a >= window)
458 a++;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100459 wpos_sum = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100460 printf("window pos: %ld\n", a);
461 if (a != window) {
462 max_f = -1;
463 window_offset = a * size;
464 if (a > window)
465 window_offset -= size;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100466 for(target = 0; target < pars->cutoff; target ++) {
467 if(garbage && garbage[target]) continue;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100468 if(target == d)
469 continue;
470 f = 0;
471 for (c = 0; c < size; c++)
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100472 f += M2[d* size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100473 if (f < -MAX_EXP)
474 continue;
475 else if (f > MAX_EXP)
476 continue;
477 else
478 f = expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100479 wpos_sum += f;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100480
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100481 target_sums[target] += f;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100482 if(f > worstbest) {
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100483 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100484 if (f > best[b].activation) {
485 memmove(best + b + 1, best + b, (N - b -1) * sizeof(collocator));
486 best[b].activation = f;
487 best[b].wordi = target;
488 best[b].position = window-a;
Marc Kupietz33679a32016-03-22 08:49:39 +0100489 break;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100490 }
491 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100492 if(b == N - 1)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100493 worstbest = best[N-1].activation;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100494 }
495 }
496 printf("%d %.2f\n", max_target, max_f);
497 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
498 if(max_f > maxmax_f) {
499 maxmax_f = max_f;
500 maxmax_target = max_target;
501 }
Marc Kupietz33679a32016-03-22 08:49:39 +0100502 for (b = 0; b < N; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100503 if(best[b].position == window-a)
Marc Kupietza77acce2017-11-30 16:59:07 +0100504 best[b].cprobability = best[b].activation / wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100505 } else {
506 printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]);
507 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100508 pars->window_sums[a] = wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100509 }
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100510 for (b = 0; b < pars->cutoff; b++)
Marc Kupietza77acce2017-11-30 16:59:07 +0100511 pars->target_sums[b] += target_sums[b]; //(target_sums[b] / wpos_sum ) / (window * 2);
512 printf("Target-Summe von 0: %f\n", pars->target_sums[150298]);
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100513 free(target_sums);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100514 for(b=0; b<N && best[b].wordi >= 0; b++);; // THIS LOOP IS NEEDED (b...)
515// printf("%d: best syn: %s %.2f %.5f\n", b, &vocab[best[b].wordi*max_w], best[b].activation, best[b].probability);
Marc Kupietzbd41da32017-11-24 10:26:43 +0100516// printf("\n");
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100517 nbs = malloc(sizeof(knn));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100518 nbs->best = best;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100519 nbs->length = b-1;
520 pthread_exit(nbs);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100521}
522
Marc Kupietz30ca4342017-11-22 21:21:20 +0100523
Marc Kupietza2e64502016-04-27 09:53:51 +0200524wordlist *getTargetWords(char *st1, int search_backw) {
Marc Kupietz48c29682016-03-19 11:30:43 +0100525 wordlist *wl = malloc(sizeof(wordlist));
526 char st[100][max_size], sep[100];
527 long a, b=0, c=0, cn=0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200528 int unmerged;
529
Marc Kupietzdc22b982015-10-09 09:19:34 +0200530 while (1) {
531 st[cn][b] = st1[c];
532 b++;
533 c++;
534 st[cn][b] = 0;
535 if (st1[c] == 0) break;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100536 if (st1[c] == ' ' || st1[c] == '-') {
537 sep[cn++] = st1[c];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200538 b = 0;
539 c++;
540 }
541 }
542 cn++;
543 for (a = 0; a < cn; a++) {
Marc Kupietza2e64502016-04-27 09:53:51 +0200544 if(search_backw) {
545 for (b = words - 1; b >= 0; b--) if (!strcmp(&vocab[b * max_w], st[a])) break;
546 } else {
547 for (b = 0; b < words; b++) if (!strcmp(&vocab[b * max_w], st[a])) break;
548 }
Marc Kupietz34a3ee92016-02-27 22:43:16 +0100549 if (b == words) b = -1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100550 wl->wordi[a] = b;
551 fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", st[a], wl->wordi[a]);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200552 if (b == -1) {
Marc Kupietze8da3062016-02-25 08:37:53 +0100553 fprintf(stderr, "Out of dictionary word!\n");
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100554 cn--;
Marc Kupietzf9ac54e2017-11-21 09:22:29 +0100555 free(wl);
556 return NULL;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200557 }
558 }
Marc Kupietz48c29682016-03-19 11:30:43 +0100559 wl->length=cn;
560 return(wl);
561}
562
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100563void *_get_neighbours(void *arg) {
564 knnpars *pars = arg;
Marc Kupietz48c29682016-03-19 11:30:43 +0100565 char *st1 = pars->token;
566 int N = pars->N;
567 long from = pars -> from;
568 unsigned long upto = pars -> upto;
569 char file_name[max_size], st[100][max_size], *sep;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100570 float dist, len, vec[max_size];
571 long long a, b, c, d, cn, *bi;
Marc Kupietz48c29682016-03-19 11:30:43 +0100572 char ch;
573 knn *nbs = NULL;
574 wordlist *wl = pars->wl;
575
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100576 collocator *best = malloc(N * sizeof(collocator));
Marc Kupietz48c29682016-03-19 11:30:43 +0100577
578 float worstbest=-1;
579
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100580 for (a = 0; a < N; a++) best[a].activation = 0;
Marc Kupietz48c29682016-03-19 11:30:43 +0100581 a = 0;
582 bi = wl->wordi;
583 cn = wl->length;
584 sep = wl->sep;
585 b = bi[0];
586 c = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100587 if (b == -1) {
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100588 N = 0;
589 goto end;
590 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200591 for (a = 0; a < size; a++) vec[a] = 0;
592 for (b = 0; b < cn; b++) {
593 if (bi[b] == -1) continue;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100594 if(b>0 && sep[b-1] == '-')
595 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
596 else
597 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200598 }
599 len = 0;
600 for (a = 0; a < size; a++) len += vec[a] * vec[a];
601 len = sqrt(len);
602 for (a = 0; a < size; a++) vec[a] /= len;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100603 for (a = 0; a < N; a++) best[a].activation = -1;
Marc Kupietz000ad862016-02-26 14:59:12 +0100604 for (c = from; c < upto; c++) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200605 if(garbage && garbage[c]) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200606 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +0100607// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +0100608// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
609// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200610 dist = 0;
611 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100612 if(dist > worstbest) {
613 for (a = 0; a < N; a++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100614 if (dist > best[a].activation) {
615 memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator));
616 best[a].activation = dist;
617 best[a].wordi = c;
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100618 break;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200619 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200620 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100621 worstbest = best[N-1].activation;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200622 }
623 }
Marc Kupietz34020dc2016-02-25 08:44:19 +0100624
Marc Kupietz000ad862016-02-26 14:59:12 +0100625 nbs = malloc(sizeof(knn));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100626 nbs->best = best;
Marc Kupietz000ad862016-02-26 14:59:12 +0100627 nbs->length = N;
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100628end:
Marc Kupietz000ad862016-02-26 14:59:12 +0100629 pthread_exit(nbs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200630}
631
Marc Kupietze0e42132017-11-24 16:44:34 +0100632int cmp_activation (const void * a, const void * b) {
633 float fb = ((collocator *)a)->activation;
634 float fa = ((collocator *)b)->activation;
635 return (fa > fb) - (fa < fb);
636}
637
638int cmp_probability (const void * a, const void * b) {
639 float fb = ((collocator *)a)->probability;
640 float fa = ((collocator *)b)->probability;
641 return (fa > fb) - (fa < fb);
642}
643
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100644
Marc Kupietzd91212f2017-11-13 10:05:09 +0100645SV *get_neighbours(char *st1, int N, int sort_by, int search_backw, long cutoff, int dedupe) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100646 HV *result = newHV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100647 float *target_sums, vec[max_size];
Marc Kupietza5f60042017-05-04 10:38:12 +0200648 long long old_words;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100649 long a, b, c, d, slice;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100650 knn *para_nbs[MAX_THREADS];
651 knn *syn_nbs[MAX_THREADS];
Marc Kupietz000ad862016-02-26 14:59:12 +0100652 knnpars pars[MAX_THREADS];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100653 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
Marc Kupietz48c29682016-03-19 11:30:43 +0100654 wordlist *wl;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200655 int syn_threads = (M2? window * 2 : 0);
656 int para_threads = num_threads - syn_threads;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100657
Marc Kupietz5deb2f62017-12-01 13:21:14 +0100658 collocator *best = malloc(10*MAX_NEIGHBOURS * sizeof(collocator));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100659
Marc Kupietz000ad862016-02-26 14:59:12 +0100660 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
661
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100662 if(cutoff < 1)
663 cutoff=words;
664
Marc Kupietza2e64502016-04-27 09:53:51 +0200665 wl = getTargetWords(st1, search_backw);
Marc Kupietzf9ac54e2017-11-21 09:22:29 +0100666 if(wl == NULL || wl->length < 1)
Marc Kupietz271e2a42016-03-22 11:37:43 +0100667 goto end;
Marc Kupietz48c29682016-03-19 11:30:43 +0100668
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100669 old_words = cutoff;
Marc Kupietza5f60042017-05-04 10:38:12 +0200670 if(merge_words > 0)
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100671 cutoff = merge_words * 1.25; /* HACK */
672 slice = cutoff / para_threads;
Marc Kupietza5f60042017-05-04 10:38:12 +0200673
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100674 a = posix_memalign((void **) &target_sums, 128, cutoff * sizeof(float));
675 for(a = 0; a < cutoff; a++)
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100676 target_sums[a] = 0;
677
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200678 printf("Starting %d threads\n", para_threads);
679 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100680 for(a=0; a < para_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100681 pars[a].cutoff = cutoff;
Marc Kupietz000ad862016-02-26 14:59:12 +0100682 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100683 pars[a].wl = wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100684 pars[a].N = N;
685 pars[a].from = a*slice;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100686 pars[a].upto = ((a+1)*slice > cutoff? cutoff:(a+1)*slice);
Marc Kupietz000ad862016-02-26 14:59:12 +0100687 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
688 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200689 if(M2) {
690 for(a=0; a < syn_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100691 pars[a + para_threads].cutoff = cutoff;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200692 pars[a + para_threads].target_sums = target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100693 pars[a + para_threads].window_sums = window_sums;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200694 pars[a + para_threads].wl = wl;
695 pars[a + para_threads].N = N;
696 pars[a + para_threads].from = a;
697 pars[a + para_threads].upto = a+1;
698 pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *) &pars[a + para_threads]);
699 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100700 }
701 printf("Waiting for para threads to join\n");
702 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100703 for (a = 0; a < para_threads; a++) pthread_join(pt[a], (void *) &para_nbs[a]);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100704 printf("Para threads joint\n");
705 fflush(stdout);
Marc Kupietz000ad862016-02-26 14:59:12 +0100706
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200707 /* if(!syn_nbs[0]) */
708 /* goto end; */
Marc Kupietz000ad862016-02-26 14:59:12 +0100709
710 for(b=0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100711 best[b].wordi = para_nbs[0]->best[b].wordi;
712 best[b].activation = para_nbs[0]->best[b].activation;
Marc Kupietz000ad862016-02-26 14:59:12 +0100713 }
714
Marc Kupietz271e2a42016-03-22 11:37:43 +0100715 for(a=1; a < para_threads; a++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100716 for(b=0; b < para_nbs[a]->length && para_nbs[a]->best[b].wordi >= 0; b++) {
Marc Kupietza5f60042017-05-04 10:38:12 +0200717 for(c=0; c < N * para_threads; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100718 if(para_nbs[a]->best[b].activation > best[c].activation) {
Marc Kupietz000ad862016-02-26 14:59:12 +0100719 for(d=N-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100720 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz000ad862016-02-26 14:59:12 +0100721 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100722 memcpy(best + c, &para_nbs[a]->best[b], sizeof(collocator));
Marc Kupietz000ad862016-02-26 14:59:12 +0100723 break;
724 }
725 }
726 }
727 }
728
Marc Kupietzd91212f2017-11-13 10:05:09 +0100729 char *chosen[600];
Marc Kupietz271e2a42016-03-22 11:37:43 +0100730 AV* array = newAV();
Marc Kupietzd91212f2017-11-13 10:05:09 +0100731 int i, j;
Marc Kupietza5f60042017-05-04 10:38:12 +0200732 int l1_words=0, l2_words=0;
733 for (a = 0, i = 0; i < N && a < 600; a++) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100734 int filtered=0;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100735 long long c = best[a].wordi;
Marc Kupietzd91212f2017-11-13 10:05:09 +0100736 if (dedupe && i > 0) {
737 for (j=0; j<i; j++)
738 if (strcasestr(&vocab[c * max_w], chosen[j]) ||
739 strcasestr(chosen[j], &vocab[c * max_w])) {
740 printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]);
741 filtered = 1;
742 }
743 if(filtered)
744 continue;
745 }
Marc Kupietza5f60042017-05-04 10:38:12 +0200746 if(merge_words > 0) {
747 if(c >= merge_words) {
748 if(l1_words > N / 2)
749 continue;
750 else
751 l1_words++;
752 } else {
753 if(l2_words > N / 2)
754 continue;
755 else
756 l2_words++;
757 }
758 }
759 fflush(stdout);
760 printf("%s l1:%d l2:%d i:%d a:%ld\n", &vocab[c * max_w], l1_words, l2_words, i, a);
761
Marc Kupietz271e2a42016-03-22 11:37:43 +0100762 HV* hash = newHV();
Marc Kupietza5f60042017-05-04 10:38:12 +0200763 SV* word = newSVpvf(&vocab[c * max_w], 0);
Marc Kupietzd91212f2017-11-13 10:05:09 +0100764 chosen[i] = &vocab[c * max_w];
Marc Kupietz271e2a42016-03-22 11:37:43 +0100765 if(latin_enc == 0) SvUTF8_on(word);
Marc Kupietza5f60042017-05-04 10:38:12 +0200766 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100767 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100768 hv_store(hash, "dist", strlen("dist"), newSVnv(best[a].activation), 0);
769 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100770 AV *vector = newAV();
771 for (b = 0; b < size; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100772 av_push(vector, newSVnv(M[b + best[a].wordi * size]));
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100773 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100774 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
775 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietza5f60042017-05-04 10:38:12 +0200776 i++;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100777 }
778 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0);
779
Marc Kupietz50485ba2016-03-23 09:13:14 +0100780 for(b=0; b < MAX_NEIGHBOURS; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100781 best[b].wordi = -1L;
782 best[b].activation = 0;
783 best[b].probability = 0;
784 best[b].position = 0;
785 best[b].activation_sum = 0;
Marc Kupietz50485ba2016-03-23 09:13:14 +0100786 }
787
Marc Kupietza77acce2017-11-30 16:59:07 +0100788 float total_activation = 0;
789
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200790 if (M2) {
791 printf("Waiting for syn threads to join\n");
792 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100793 for (a = 0; a < syn_threads; a++) pthread_join(pt[a+para_threads], (void *) &syn_nbs[a]);
Marc Kupietza77acce2017-11-30 16:59:07 +0100794 for (a = 0; a <= syn_threads; a++) {
795 total_activation += window_sums[a];
796 printf("window pos: %d, sum: %f\n", a, window_sums[a]);
797 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200798 printf("syn threads joint\n");
799 fflush(stdout);
Marc Kupietz50485ba2016-03-23 09:13:14 +0100800
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200801 for(b=0; b < syn_nbs[0]->length; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100802 memcpy(best + b, &syn_nbs[0]->best[b], sizeof(collocator));
803 best[b].position = -1; // syn_nbs[0]->pos[b];
804 best[b].activation_sum = target_sums[syn_nbs[0]->best[b].wordi];
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100805 best[b].max_activation = 0.0;
806 best[b].conorm = 0.0;
807 best[b].probability = 0.0;
Marc Kupietza77acce2017-11-30 16:59:07 +0100808 best[b].cprobability = syn_nbs[0]->best[b].cprobability;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200809 }
Marc Kupietz30ca4342017-11-22 21:21:20 +0100810
811 float best_window_sum[MAX_NEIGHBOURS];
812 int found_index=0, i=0, j, w;
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100813 for(a=0; a < syn_threads; a++) {
814 for(b=0; b < syn_nbs[a]->length; b++) {
815 for(i=0; i < found_index; i++)
816 if(best[i].wordi == syn_nbs[a]->best[b].wordi)
817 break;
818 if(i >= found_index) {
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100819 best[found_index].max_activation = 0.0;
820 best[found_index].conorm = 0.0;
821 best[found_index].probability = 0.0;
Marc Kupietza77acce2017-11-30 16:59:07 +0100822 best[found_index].cprobability = syn_nbs[a]->best[b].cprobability;
823 best[found_index].activation_sum = target_sums[syn_nbs[a]->best[b].wordi]; // syn_nbs[a]->best[b].activation_sum;
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100824 best[found_index++].wordi = syn_nbs[a]->best[b].wordi;
825 // printf("found: %s\n", &vocab[syn_nbs[a]->index[b] * max_w]);
Marc Kupietz30ca4342017-11-22 21:21:20 +0100826 }
827 }
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100828 }
Marc Kupietza77acce2017-11-30 16:59:07 +0100829 sort_by =0; // ALWAYS AUTO-FOCUS
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100830 if(sort_by != 1 && sort_by != 2) { // sort by auto focus mean
Marc Kupietz30ca4342017-11-22 21:21:20 +0100831 printf("window: %d - syn_threads: %d, %d\n", window, syn_threads, (1 << syn_threads) -1);
Marc Kupietzbd41da32017-11-24 10:26:43 +0100832 int wpos;
Marc Kupietz30ca4342017-11-22 21:21:20 +0100833 for(i=0; i < found_index; i++) {
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100834 best[i].activation = best[i].probability = best[i].conorm = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +0100835 for(w=1; w < (1 << syn_threads); w++) { // loop through all possible windows
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100836 float word_window_sum = 0, word_window_conorm=0, word_activation_sum = 0, total_window_sum = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +0100837 int bits_set = 0;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100838 for(a=0; a < syn_threads; a++) {
Marc Kupietz30ca4342017-11-22 21:21:20 +0100839 if((1 << a) & w) {
Marc Kupietzbd41da32017-11-24 10:26:43 +0100840 wpos = (a >= window? a+1 : a);
841 total_window_sum += window_sums[wpos];
Marc Kupietz30ca4342017-11-22 21:21:20 +0100842 }
843 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100844// printf("%d window-sum %f\n", w, total_window_sum);
845 for(a=0; a < syn_threads; a++) {
846 if((1 << a) & w) {
847 wpos = (a >= window? a+1 : a);
848 bits_set++;
849 for(b=0; b < syn_nbs[a]->length; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100850 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
Marc Kupietza77acce2017-11-30 16:59:07 +0100851// float acti = syn_nbs[a]->best[b].activation / total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100852// word_window_sum += syn_nbs[a]->dist[b] * syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
Marc Kupietzbd41da32017-11-24 10:26:43 +0100853// word_window_sum += syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
854// word_window_sum = (word_window_sum + syn_nbs[a]->norm[b]) - (word_window_sum * syn_nbs[a]->norm[b]); // syn_nbs[a]->norm[b];
Marc Kupietza77acce2017-11-30 16:59:07 +0100855
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100856 word_window_sum += syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
Marc Kupietza77acce2017-11-30 16:59:07 +0100857// word_window_sum += acti - (word_window_sum * acti); syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
858
859 word_window_conorm += syn_nbs[a]->best[b].activation - word_window_conorm * syn_nbs[a]->best[b].activation; // conormalied activation sum
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100860 word_activation_sum += syn_nbs[a]->best[b].activation;
861 if(syn_nbs[a]->best[b].activation > best[i].max_activation)
862 best[i].max_activation = syn_nbs[a]->best[b].activation;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100863 }
864 }
865 }
866// if(bits_set) {
867// word_activation_sum /= bits_set;
868// word_window_sum /= bits_set;
869// }
Marc Kupietza77acce2017-11-30 16:59:07 +0100870
871 word_window_sum /= total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100872
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100873 if(word_window_sum > best[i].probability) {
874 best[i].probability = word_window_sum;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100875 best[i].position = w;
Marc Kupietz30ca4342017-11-22 21:21:20 +0100876 }
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100877
878 if(word_window_conorm > best[i].conorm) {
879 best[i].conorm = word_window_conorm;
880 best[i].activation = word_activation_sum;
881 }
Marc Kupietz30ca4342017-11-22 21:21:20 +0100882 }
883 }
Marc Kupietze0e42132017-11-24 16:44:34 +0100884 qsort(best, found_index, sizeof(collocator), cmp_probability);
Marc Kupietz30ca4342017-11-22 21:21:20 +0100885// for(i=0; i < found_index; i++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100886// printf("found: %s - sum: %f - window: %d\n", &vocab[best[i].wordi * max_w], best[i].activation, best[i].position);
Marc Kupietz30ca4342017-11-22 21:21:20 +0100887// }
888
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100889 } else if(sort_by == 1) { // responsiveness any window position
890 int wpos;
891 for(i=0; i < found_index; i++) {
892 float word_window_sum = 0, word_activation_sum = 0, total_window_sum = 0;
893 for(a=0; a < syn_threads; a++) {
894 wpos = (a >= window? a+1 : a);
895 for(b=0; b < syn_nbs[a]->length; b++)
896 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
897 best[i].probability += syn_nbs[a]->best[b].probability;
898 if(syn_nbs[a]->best[b].activation > 0.25)
899 best[i].position |= 1 << wpos;
900 if(syn_nbs[a]->best[b].activation > best[i].activation) {
901 best[i].activation = syn_nbs[a]->best[b].activation;
902 }
903 }
904 }
905 }
906 qsort(best, found_index, sizeof(collocator), cmp_activation);
907 } else if(sort_by == 2) { // single window position
Marc Kupietz30ca4342017-11-22 21:21:20 +0100908 for(a=1; a < syn_threads; a++) {
909 for(b=0; b < syn_nbs[a]->length; b++) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200910 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100911 if(syn_nbs[a]->best[b].activation > best[c].activation) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200912 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100913 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200914 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100915 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
916 best[c].position = 1 << (-syn_nbs[a]->best[b].position+window - (syn_nbs[a]->best[b].position < 0 ? 1:0));
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200917 break;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100918 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200919 }
920 }
921 }
922 } else { // sort by mean p
923 for(a=1; a < syn_threads; a++) {
924 for(b=0; b < syn_nbs[a]->length; b++) {
925 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100926 if(target_sums[syn_nbs[a]->best[b].wordi] > best[c].activation_sum) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200927 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100928 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200929 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100930 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
931 best[c].position = (1 << 2*window) - 1; // syn_nbs[a]->pos[b];
932 best[c].activation_sum = target_sums[syn_nbs[a]->best[b].wordi];
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200933 break;
934 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100935 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100936 }
937 }
938 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200939 array = newAV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100940 for (a = 0, i=0; a < MAX_NEIGHBOURS && best[a].wordi >= 0; a++) {
941 long long c = best[a].wordi;
Marc Kupietza77acce2017-11-30 16:59:07 +0100942/*
Marc Kupietzd91212f2017-11-13 10:05:09 +0100943 if (dedupe) {
944 int filtered=0;
945 for (j=0; j<i; j++)
946 if (strcasestr(&vocab[c * max_w], chosen[j]) ||
947 strcasestr(chosen[j], &vocab[c * max_w])) {
Marc Kupietza77acce2017-11-30 16:59:07 +0100948 printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]);
949 filtered = 1;
950 }
Marc Kupietzd91212f2017-11-13 10:05:09 +0100951 if(filtered)
952 continue;
953 }
Marc Kupietza77acce2017-11-30 16:59:07 +0100954*/
Marc Kupietzd91212f2017-11-13 10:05:09 +0100955 chosen[i++]=&vocab[c * max_w];
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200956 HV* hash = newHV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100957 SV* word = newSVpvf(&vocab[best[a].wordi * max_w], 0);
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200958 if(latin_enc == 0) SvUTF8_on(word);
959 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100960 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100961 hv_store(hash, "conorm", strlen("conorm"), newSVnv(best[a].conorm), 0);
962 hv_store(hash, "prob", strlen("prob"), newSVnv(best[a].probability), 0);
Marc Kupietza77acce2017-11-30 16:59:07 +0100963 hv_store(hash, "cprob", strlen("cprob"), newSVnv(best[a].cprobability), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100964 hv_store(hash, "max", strlen("max"), newSVnv(best[a].max_activation), 0); // newSVnv(target_sums[best[a].wordi]), 0);
Marc Kupietza77acce2017-11-30 16:59:07 +0100965 hv_store(hash, "overall", strlen("overall"), newSVnv(best[a].activation_sum/total_activation), 0); // newSVnv(target_sums[best[a].wordi]), 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100966 hv_store(hash, "pos", strlen("pos"), newSVnv(best[a].position), 0);
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200967 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietz271e2a42016-03-22 11:37:43 +0100968 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200969 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100970 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100971end:
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100972 words = old_words;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100973 free(best);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100974 return newRV_noinc((SV*)result);
Marc Kupietz000ad862016-02-26 14:59:12 +0100975}
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100976
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200977int dump_vecs(char *fname) {
978 long i, j;
979 FILE *f;
980 /* if(words>200000) */
981 /* words=200000; */
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100982
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200983 if((f=fopen(fname, "w")) == NULL) {
984 fprintf(stderr, "cannot open %s for writing\n", fname);
985 return(-1);
986 }
987 fprintf(f, "%lld %lld\n", words, size);
988 for (i=0; i < words; i++) {
989 fprintf(f, "%s ", &vocab[i * max_w]);
990 for(j=0; j < size - 1; j++)
991 fprintf(f, "%f ", M[i*size + j]);
992 fprintf(f, "%f\n", M[i*size + j]);
993 }
994 fclose(f);
995 return(0);
996}
Marc Kupietzdc22b982015-10-09 09:19:34 +0200997