blob: 4aff19dcd0c1f3b545ef356c1f5f0bf830f85fc3 [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 Kupietzb6c615d2017-12-02 10:38:20 +0100197 float heat[16];
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100198} collocator;
199
200typedef struct {
201 collocator *best;
Marc Kupietz80abb442016-03-23 21:04:08 +0100202 int length;
Marc Kupietz000ad862016-02-26 14:59:12 +0100203} knn;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100204
Marc Kupietz000ad862016-02-26 14:59:12 +0100205typedef struct {
Marc Kupietz48c29682016-03-19 11:30:43 +0100206 long long wordi[MAX_NEIGHBOURS];
207 char sep[MAX_NEIGHBOURS];
208 int length;
209} wordlist;
210
211typedef struct {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100212 long cutoff;
Marc Kupietz48c29682016-03-19 11:30:43 +0100213 wordlist *wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100214 char *token;
215 int N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100216 long from;
Marc Kupietz000ad862016-02-26 14:59:12 +0100217 unsigned long upto;
Marc Kupietzc55c8872017-12-01 23:27:10 +0100218 collocator *best;
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100219 float *target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100220 float *window_sums;
Marc Kupietz000ad862016-02-26 14:59:12 +0100221} knnpars;
222
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200223float *M, *M2=0L, *syn1neg_window, *expTable;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100224float *window_sums;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200225char *vocab;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200226char *garbage = NULL;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100227
Marc Kupietza2e64502016-04-27 09:53:51 +0200228long long words, size, merged_end;
Marc Kupietza5f60042017-05-04 10:38:12 +0200229long long merge_words = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100230int num_threads=20;
Marc Kupietza5b90152016-03-15 17:39:19 +0100231int latin_enc=0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100232int window;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200233
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100234int init_net(char *file_name, char *net_name, int latin) {
Marc Kupietz67c20282016-02-26 09:42:00 +0100235 FILE *f, *binvecs, *binwords;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100236 int binwords_fd, binvecs_fd, net_fd, i;
Marc Kupietz82b02672016-02-26 12:32:25 +0100237 long long a, b, c, d, cn;
238 float len;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200239 double val;
Marc Kupietz82b02672016-02-26 12:32:25 +0100240
Marc Kupietz67c20282016-02-26 09:42:00 +0100241 char binvecs_fname[256], binwords_fname[256];
242 strcpy(binwords_fname, file_name);
243 strcat(binwords_fname, ".words");
244 strcpy(binvecs_fname, file_name);
245 strcat(binvecs_fname, ".vecs");
Marc Kupietzdc22b982015-10-09 09:19:34 +0200246
Marc Kupietza5b90152016-03-15 17:39:19 +0100247 latin_enc = latin;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200248 f = fopen(file_name, "rb");
249 if (f == NULL) {
250 printf("Input file %s not found\n", file_name);
251 return -1;
252 }
253 fscanf(f, "%lld", &words);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100254 if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200255 fscanf(f, "%lld", &size);
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100256 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) {
257 printf("Converting %s to memory mappable structures\n", file_name);
Marc Kupietzf0809762016-02-26 10:13:47 +0100258 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
259 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
260 if (M == NULL) {
261 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
262 return -1;
263 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200264 if(strstr(file_name, ".txt")) {
265 for (b = 0; b < words; b++) {
266 a = 0;
267 while (1) {
268 vocab[b * max_w + a] = fgetc(f);
269 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
270 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
271 }
272 vocab[b * max_w + a] = 0;
273 len = 0;
274 for (a = 0; a < size; a++) {
275 fscanf(f, "%lf", &val);
276 M[a + b * size] = val;
277 len += val * val;
278 }
279 len = sqrt(len);
280 for (a = 0; a < size; a++) M[a + b * size] /= len;
281 }
282 } else {
283 for (b = 0; b < words; b++) {
284 a = 0;
285 while (1) {
286 vocab[b * max_w + a] = fgetc(f);
287 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
288 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
289 }
290 vocab[b * max_w + a] = 0;
291 fread(&M[b * size], sizeof(float), size, f);
292 len = 0;
293 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
294 len = sqrt(len);
295 for (a = 0; a < size; a++) M[a + b * size] /= len;
296 }
297 }
Marc Kupietz67c20282016-02-26 09:42:00 +0100298 if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) {
299 fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs);
300 fclose(binvecs);
301 fwrite(vocab, sizeof(char), (long long)words * max_w, binwords);
302 fclose(binwords);
303 }
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100304 }
305 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
306 M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0);
307 vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0);
308 if (M == MAP_FAILED || vocab == MAP_FAILED) {
309 close(binvecs_fd);
310 close(binwords_fd);
311 fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname);
312 exit(-1);
313 }
314 } else {
315 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
316 exit(-1);
Marc Kupietz67c20282016-02-26 09:42:00 +0100317 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200318 fclose(f);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100319
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200320 if(net_name && strlen(net_name) > 0) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100321 if( (net_fd = open(net_name, O_RDONLY)) >= 0) {
322 window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2;
323 // lseek(net_fd, sizeof(float) * words * size, SEEK_SET);
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100324 // munmap(M, sizeof(float) * words * size);
325 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 +0200326 if (M2 == MAP_FAILED) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100327 close(net_fd);
328 fprintf(stderr, "Cannot mmap %s\n", net_name);
329 exit(-1);
330 }
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100331 syn1neg_window = M2 + words * size;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100332 } else {
333 fprintf(stderr, "Cannot open %s\n", net_name);
334 exit(-1);
335 }
336 fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window);
337 }
338
339 expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float));
340 for (i = 0; i < EXP_TABLE_SIZE; i++) {
341 expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table
342 expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1)
343 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100344 window_sums = malloc(sizeof(float) * (window+1) * 2);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200345 return 0;
346}
347
Marc Kupietza2e64502016-04-27 09:53:51 +0200348long mergeVectors(char *file_name){
349 FILE *f, *binvecs, *binwords;
350 int binwords_fd, binvecs_fd, net_fd, i;
351 long long a, b, c, d, cn;
352 float len;
353 float *merge_vecs;
354 char *merge_vocab;
Marc Kupietza5f60042017-05-04 10:38:12 +0200355 /* long long merge_words, merge_size; */
356 long long merge_size;
Marc Kupietza2e64502016-04-27 09:53:51 +0200357
358 char binvecs_fname[256], binwords_fname[256];
359 strcpy(binwords_fname, file_name);
360 strcat(binwords_fname, ".words");
361 strcpy(binvecs_fname, file_name);
362 strcat(binvecs_fname, ".vecs");
363
364 f = fopen(file_name, "rb");
365 if (f == NULL) {
366 printf("Input file %s not found\n", file_name);
367 exit -1;
368 }
369 fscanf(f, "%lld", &merge_words);
370 fscanf(f, "%lld", &merge_size);
371 if(merge_size != size){
372 fprintf(stderr, "vectors must have the same length\n");
373 exit(-1);
374 }
375 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
376 merge_vecs = malloc(sizeof(float) * (words + merge_words) * size);
377 merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w);
378 if (merge_vecs == NULL || merge_vocab == NULL) {
379 close(binvecs_fd);
380 close(binwords_fd);
381 fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname);
382 exit(-1);
383 }
384 read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float));
385 read(binwords_fd, merge_vocab, merge_words * max_w);
386 } else {
387 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
388 exit(-1);
389 }
390 printf("Successfully reallocated memory\nMerging...\n");
391 fflush(stdout);
392 memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float));
393 memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w);
394 munmap(M, words * size * sizeof(float));
395 munmap(vocab, words * max_w);
396 M = merge_vecs;
397 vocab = merge_vocab;
398 merged_end = merge_words;
399 words += merge_words;
400 fclose(f);
401 printf("merged_end: %lld, words: %lld\n", merged_end, words);
402 return((long) merged_end);
403}
404
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200405void filter_garbage() {
406 long i;
Marc Kupietzab591a82016-04-28 14:08:49 +0200407 unsigned char *w, previous, c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200408 garbage = malloc(words);
409 memset(garbage, 0, words);
410 for (i = 0; i < words; i++) {
411 w = vocab + i * max_w;
412 previous = 0;
Marc Kupietzab591a82016-04-28 14:08:49 +0200413 while((c = *w++) && !garbage[i]) {
414 if( ((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) ||
415 (previous == '-' && (c & 32)) ||
Marc Kupietz33e3aa12017-11-09 16:19:38 +0100416 (previous == 0xc2 && (c == 0xa4 || c == 0xb6 )) ||
417 c == '<'
Marc Kupietzab591a82016-04-28 14:08:49 +0200418 ) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200419 garbage[i]=1;
420 continue;
421 }
422 previous = c;
423 }
424 }
425 return;
426}
427
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100428void *getCollocators(void *args) {
429 knnpars *pars = args;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100430 int N = pars->N;
431 int cc = pars->wl->wordi[0];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100432 knn *nbs = NULL;
433 long window_layer_size = size * window * 2;
434 long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target;
435 float f, max_f, maxmax_f;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100436 float *target_sums, worstbest, wpos_sum;
437 collocator *best;
Marc Kupietzd5642582016-03-19 22:23:13 +0100438
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200439 if(M2 == NULL || cc == -1)
Marc Kupietzd5642582016-03-19 22:23:13 +0100440 return NULL;
441
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100442 a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100443 best = malloc(N * sizeof(collocator));
Marc Kupietz271e2a42016-03-22 11:37:43 +0100444 worstbest = MIN_RESP;
445
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100446 for (b = 0; b < pars->cutoff; b++)
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100447 target_sums[b]=0;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100448 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100449 best[b].wordi = -1;
450 best[b].probability = 1;
451 best[b].activation = worstbest;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100452 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100453
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100454 d = cc;
455 maxmax_f = -1;
456 maxmax_target = 0;
457
Marc Kupietz271e2a42016-03-22 11:37:43 +0100458 for (a = pars->from; a < pars->upto; a++) {
459 if(a >= window)
460 a++;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100461 wpos_sum = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100462 printf("window pos: %ld\n", a);
463 if (a != window) {
464 max_f = -1;
465 window_offset = a * size;
466 if (a > window)
467 window_offset -= size;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100468 for(target = 0; target < pars->cutoff; target ++) {
469 if(garbage && garbage[target]) continue;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100470 if(target == d)
471 continue;
472 f = 0;
473 for (c = 0; c < size; c++)
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100474 f += M2[d* size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100475 if (f < -MAX_EXP)
476 continue;
477 else if (f > MAX_EXP)
478 continue;
479 else
480 f = expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100481 wpos_sum += f;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100482
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100483 target_sums[target] += f;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100484 if(f > worstbest) {
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100485 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100486 if (f > best[b].activation) {
487 memmove(best + b + 1, best + b, (N - b -1) * sizeof(collocator));
488 best[b].activation = f;
489 best[b].wordi = target;
490 best[b].position = window-a;
Marc Kupietz33679a32016-03-22 08:49:39 +0100491 break;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100492 }
493 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100494 if(b == N - 1)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100495 worstbest = best[N-1].activation;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100496 }
497 }
498 printf("%d %.2f\n", max_target, max_f);
499 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
500 if(max_f > maxmax_f) {
501 maxmax_f = max_f;
502 maxmax_target = max_target;
503 }
Marc Kupietz33679a32016-03-22 08:49:39 +0100504 for (b = 0; b < N; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100505 if(best[b].position == window-a)
Marc Kupietza77acce2017-11-30 16:59:07 +0100506 best[b].cprobability = best[b].activation / wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100507 } else {
508 printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]);
509 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100510 pars->window_sums[a] = wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100511 }
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100512 for (b = 0; b < pars->cutoff; b++)
Marc Kupietza77acce2017-11-30 16:59:07 +0100513 pars->target_sums[b] += target_sums[b]; //(target_sums[b] / wpos_sum ) / (window * 2);
514 printf("Target-Summe von 0: %f\n", pars->target_sums[150298]);
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100515 free(target_sums);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100516 for(b=0; b<N && best[b].wordi >= 0; b++);; // THIS LOOP IS NEEDED (b...)
517// 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 +0100518// printf("\n");
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100519 nbs = malloc(sizeof(knn));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100520 nbs->best = best;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100521 nbs->length = b-1;
522 pthread_exit(nbs);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100523}
524
Marc Kupietz30ca4342017-11-22 21:21:20 +0100525
Marc Kupietza2e64502016-04-27 09:53:51 +0200526wordlist *getTargetWords(char *st1, int search_backw) {
Marc Kupietz48c29682016-03-19 11:30:43 +0100527 wordlist *wl = malloc(sizeof(wordlist));
528 char st[100][max_size], sep[100];
529 long a, b=0, c=0, cn=0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200530 int unmerged;
531
Marc Kupietzdc22b982015-10-09 09:19:34 +0200532 while (1) {
533 st[cn][b] = st1[c];
534 b++;
535 c++;
536 st[cn][b] = 0;
537 if (st1[c] == 0) break;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100538 if (st1[c] == ' ' || st1[c] == '-') {
539 sep[cn++] = st1[c];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200540 b = 0;
541 c++;
542 }
543 }
544 cn++;
545 for (a = 0; a < cn; a++) {
Marc Kupietza2e64502016-04-27 09:53:51 +0200546 if(search_backw) {
547 for (b = words - 1; b >= 0; b--) if (!strcmp(&vocab[b * max_w], st[a])) break;
548 } else {
549 for (b = 0; b < words; b++) if (!strcmp(&vocab[b * max_w], st[a])) break;
550 }
Marc Kupietz34a3ee92016-02-27 22:43:16 +0100551 if (b == words) b = -1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100552 wl->wordi[a] = b;
553 fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", st[a], wl->wordi[a]);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200554 if (b == -1) {
Marc Kupietze8da3062016-02-25 08:37:53 +0100555 fprintf(stderr, "Out of dictionary word!\n");
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100556 cn--;
Marc Kupietzf9ac54e2017-11-21 09:22:29 +0100557 free(wl);
558 return NULL;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200559 }
560 }
Marc Kupietz48c29682016-03-19 11:30:43 +0100561 wl->length=cn;
562 return(wl);
563}
564
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100565void *_get_neighbours(void *arg) {
566 knnpars *pars = arg;
Marc Kupietz48c29682016-03-19 11:30:43 +0100567 char *st1 = pars->token;
568 int N = pars->N;
569 long from = pars -> from;
570 unsigned long upto = pars -> upto;
571 char file_name[max_size], st[100][max_size], *sep;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100572 float dist, len, vec[max_size];
573 long long a, b, c, d, cn, *bi;
Marc Kupietz48c29682016-03-19 11:30:43 +0100574 char ch;
575 knn *nbs = NULL;
576 wordlist *wl = pars->wl;
577
Marc Kupietzc55c8872017-12-01 23:27:10 +0100578 collocator *best = pars->best;
Marc Kupietz48c29682016-03-19 11:30:43 +0100579
580 float worstbest=-1;
581
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100582 for (a = 0; a < N; a++) best[a].activation = 0;
Marc Kupietz48c29682016-03-19 11:30:43 +0100583 a = 0;
584 bi = wl->wordi;
585 cn = wl->length;
586 sep = wl->sep;
587 b = bi[0];
588 c = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100589 if (b == -1) {
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100590 N = 0;
591 goto end;
592 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200593 for (a = 0; a < size; a++) vec[a] = 0;
594 for (b = 0; b < cn; b++) {
595 if (bi[b] == -1) continue;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100596 if(b>0 && sep[b-1] == '-')
597 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
598 else
599 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200600 }
601 len = 0;
602 for (a = 0; a < size; a++) len += vec[a] * vec[a];
603 len = sqrt(len);
604 for (a = 0; a < size; a++) vec[a] /= len;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100605 for (a = 0; a < N; a++) best[a].activation = -1;
Marc Kupietz000ad862016-02-26 14:59:12 +0100606 for (c = from; c < upto; c++) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200607 if(garbage && garbage[c]) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200608 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +0100609// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +0100610// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
611// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200612 dist = 0;
613 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100614 if(dist > worstbest) {
615 for (a = 0; a < N; a++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100616 if (dist > best[a].activation) {
617 memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator));
618 best[a].activation = dist;
619 best[a].wordi = c;
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100620 break;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200621 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200622 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100623 worstbest = best[N-1].activation;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200624 }
625 }
Marc Kupietz34020dc2016-02-25 08:44:19 +0100626
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100627end:
Marc Kupietz000ad862016-02-26 14:59:12 +0100628 pthread_exit(nbs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200629}
630
Marc Kupietze0e42132017-11-24 16:44:34 +0100631int cmp_activation (const void * a, const void * b) {
632 float fb = ((collocator *)a)->activation;
633 float fa = ((collocator *)b)->activation;
634 return (fa > fb) - (fa < fb);
635}
636
637int cmp_probability (const void * a, const void * b) {
638 float fb = ((collocator *)a)->probability;
639 float fa = ((collocator *)b)->probability;
640 return (fa > fb) - (fa < fb);
641}
642
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100643
Marc Kupietzd91212f2017-11-13 10:05:09 +0100644SV *get_neighbours(char *st1, int N, int sort_by, int search_backw, long cutoff, int dedupe) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100645 HV *result = newHV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100646 float *target_sums, vec[max_size];
Marc Kupietza5f60042017-05-04 10:38:12 +0200647 long long old_words;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100648 long a, b, c, d, slice;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100649 knn *para_nbs[MAX_THREADS];
650 knn *syn_nbs[MAX_THREADS];
Marc Kupietz000ad862016-02-26 14:59:12 +0100651 knnpars pars[MAX_THREADS];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100652 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
Marc Kupietz48c29682016-03-19 11:30:43 +0100653 wordlist *wl;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200654 int syn_threads = (M2? window * 2 : 0);
655 int para_threads = num_threads - syn_threads;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100656
Marc Kupietzc55c8872017-12-01 23:27:10 +0100657 collocator *best;
658 posix_memalign((void **) &best, 128, 10 * N * 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;
Marc Kupietzc55c8872017-12-01 23:27:10 +0100685 pars[a].best = &best[N*a];
Marc Kupietz000ad862016-02-26 14:59:12 +0100686 pars[a].from = a*slice;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100687 pars[a].upto = ((a+1)*slice > cutoff? cutoff:(a+1)*slice);
Marc Kupietz000ad862016-02-26 14:59:12 +0100688 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
689 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200690 if(M2) {
691 for(a=0; a < syn_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100692 pars[a + para_threads].cutoff = cutoff;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200693 pars[a + para_threads].target_sums = target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100694 pars[a + para_threads].window_sums = window_sums;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200695 pars[a + para_threads].wl = wl;
696 pars[a + para_threads].N = N;
697 pars[a + para_threads].from = a;
698 pars[a + para_threads].upto = a+1;
699 pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *) &pars[a + para_threads]);
700 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100701 }
702 printf("Waiting for para threads to join\n");
703 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100704 for (a = 0; a < para_threads; a++) pthread_join(pt[a], (void *) &para_nbs[a]);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100705 printf("Para threads joint\n");
706 fflush(stdout);
Marc Kupietz000ad862016-02-26 14:59:12 +0100707
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200708 /* if(!syn_nbs[0]) */
709 /* goto end; */
Marc Kupietz000ad862016-02-26 14:59:12 +0100710
Marc Kupietzc55c8872017-12-01 23:27:10 +0100711 qsort(best, N*para_threads, sizeof(collocator), cmp_activation);
Marc Kupietz000ad862016-02-26 14:59:12 +0100712
Marc Kupietz000ad862016-02-26 14:59:12 +0100713
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100714 long long chosen[MAX_NEIGHBOURS];
715 printf("N: %ld\n", N);
716
Marc Kupietz271e2a42016-03-22 11:37:43 +0100717 AV* array = newAV();
Marc Kupietzd91212f2017-11-13 10:05:09 +0100718 int i, j;
Marc Kupietza5f60042017-05-04 10:38:12 +0200719 int l1_words=0, l2_words=0;
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100720
721 for (a = 0, i = 0; i < N && a < N*para_threads; a++) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100722 int filtered=0;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100723 long long c = best[a].wordi;
Marc Kupietzd91212f2017-11-13 10:05:09 +0100724 if (dedupe && i > 0) {
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100725 for (j=0; j<i && !filtered; j++)
726 if (strcasestr(&vocab[c * max_w], &vocab[chosen[j] * max_w]) ||
727 strcasestr(&vocab[chosen[j] * max_w], &vocab[c * max_w])) {
728 printf("filtering %s %s\n", &vocab[chosen[j] * max_w], &vocab[c * max_w]);
Marc Kupietzd91212f2017-11-13 10:05:09 +0100729 filtered = 1;
730 }
731 if(filtered)
732 continue;
733 }
Marc Kupietza5f60042017-05-04 10:38:12 +0200734 if(merge_words > 0) {
735 if(c >= merge_words) {
736 if(l1_words > N / 2)
737 continue;
738 else
739 l1_words++;
740 } else {
741 if(l2_words > N / 2)
742 continue;
743 else
744 l2_words++;
745 }
746 }
Marc Kupietza5f60042017-05-04 10:38:12 +0200747 printf("%s l1:%d l2:%d i:%d a:%ld\n", &vocab[c * max_w], l1_words, l2_words, i, a);
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100748 fflush(stdout);
Marc Kupietza5f60042017-05-04 10:38:12 +0200749
Marc Kupietz271e2a42016-03-22 11:37:43 +0100750 HV* hash = newHV();
Marc Kupietza5f60042017-05-04 10:38:12 +0200751 SV* word = newSVpvf(&vocab[c * max_w], 0);
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100752 chosen[i] = c;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100753 if(latin_enc == 0) SvUTF8_on(word);
Marc Kupietza5f60042017-05-04 10:38:12 +0200754 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100755 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100756 hv_store(hash, "dist", strlen("dist"), newSVnv(best[a].activation), 0);
757 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100758 AV *vector = newAV();
759 for (b = 0; b < size; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100760 av_push(vector, newSVnv(M[b + best[a].wordi * size]));
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100761 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100762 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
763 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietza5f60042017-05-04 10:38:12 +0200764 i++;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100765 }
766 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0);
767
Marc Kupietz50485ba2016-03-23 09:13:14 +0100768 for(b=0; b < MAX_NEIGHBOURS; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100769 best[b].wordi = -1L;
770 best[b].activation = 0;
771 best[b].probability = 0;
772 best[b].position = 0;
773 best[b].activation_sum = 0;
Marc Kupietz50485ba2016-03-23 09:13:14 +0100774 }
775
Marc Kupietza77acce2017-11-30 16:59:07 +0100776 float total_activation = 0;
777
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200778 if (M2) {
779 printf("Waiting for syn threads to join\n");
780 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100781 for (a = 0; a < syn_threads; a++) pthread_join(pt[a+para_threads], (void *) &syn_nbs[a]);
Marc Kupietza77acce2017-11-30 16:59:07 +0100782 for (a = 0; a <= syn_threads; a++) {
783 total_activation += window_sums[a];
784 printf("window pos: %d, sum: %f\n", a, window_sums[a]);
785 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200786 printf("syn threads joint\n");
787 fflush(stdout);
Marc Kupietz50485ba2016-03-23 09:13:14 +0100788
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200789 for(b=0; b < syn_nbs[0]->length; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100790 memcpy(best + b, &syn_nbs[0]->best[b], sizeof(collocator));
791 best[b].position = -1; // syn_nbs[0]->pos[b];
792 best[b].activation_sum = target_sums[syn_nbs[0]->best[b].wordi];
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100793 best[b].max_activation = 0.0;
794 best[b].conorm = 0.0;
795 best[b].probability = 0.0;
Marc Kupietza77acce2017-11-30 16:59:07 +0100796 best[b].cprobability = syn_nbs[0]->best[b].cprobability;
Marc Kupietzb6c615d2017-12-02 10:38:20 +0100797 memset(best[b].heat, 0, sizeof(float) * 16);
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200798 }
Marc Kupietz30ca4342017-11-22 21:21:20 +0100799
800 float best_window_sum[MAX_NEIGHBOURS];
801 int found_index=0, i=0, j, w;
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100802 for(a=0; a < syn_threads; a++) {
803 for(b=0; b < syn_nbs[a]->length; b++) {
804 for(i=0; i < found_index; i++)
805 if(best[i].wordi == syn_nbs[a]->best[b].wordi)
806 break;
807 if(i >= found_index) {
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100808 best[found_index].max_activation = 0.0;
809 best[found_index].conorm = 0.0;
810 best[found_index].probability = 0.0;
Marc Kupietza77acce2017-11-30 16:59:07 +0100811 best[found_index].cprobability = syn_nbs[a]->best[b].cprobability;
812 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 +0100813 best[found_index++].wordi = syn_nbs[a]->best[b].wordi;
814 // printf("found: %s\n", &vocab[syn_nbs[a]->index[b] * max_w]);
Marc Kupietz30ca4342017-11-22 21:21:20 +0100815 }
816 }
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100817 }
Marc Kupietza77acce2017-11-30 16:59:07 +0100818 sort_by =0; // ALWAYS AUTO-FOCUS
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100819 if(sort_by != 1 && sort_by != 2) { // sort by auto focus mean
Marc Kupietz30ca4342017-11-22 21:21:20 +0100820 printf("window: %d - syn_threads: %d, %d\n", window, syn_threads, (1 << syn_threads) -1);
Marc Kupietzbd41da32017-11-24 10:26:43 +0100821 int wpos;
Marc Kupietz30ca4342017-11-22 21:21:20 +0100822 for(i=0; i < found_index; i++) {
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100823 best[i].activation = best[i].probability = best[i].conorm = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +0100824 for(w=1; w < (1 << syn_threads); w++) { // loop through all possible windows
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100825 float word_window_sum = 0, word_window_conorm=0, word_activation_sum = 0, total_window_sum = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +0100826 int bits_set = 0;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100827 for(a=0; a < syn_threads; a++) {
Marc Kupietz30ca4342017-11-22 21:21:20 +0100828 if((1 << a) & w) {
Marc Kupietzbd41da32017-11-24 10:26:43 +0100829 wpos = (a >= window? a+1 : a);
830 total_window_sum += window_sums[wpos];
Marc Kupietz30ca4342017-11-22 21:21:20 +0100831 }
832 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100833// printf("%d window-sum %f\n", w, total_window_sum);
834 for(a=0; a < syn_threads; a++) {
835 if((1 << a) & w) {
836 wpos = (a >= window? a+1 : a);
837 bits_set++;
838 for(b=0; b < syn_nbs[a]->length; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100839 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
Marc Kupietza77acce2017-11-30 16:59:07 +0100840// float acti = syn_nbs[a]->best[b].activation / total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100841// 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 +0100842// word_window_sum += syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
843// 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 +0100844
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100845 word_window_sum += syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
Marc Kupietza77acce2017-11-30 16:59:07 +0100846// word_window_sum += acti - (word_window_sum * acti); syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
847
848 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 +0100849 word_activation_sum += syn_nbs[a]->best[b].activation;
850 if(syn_nbs[a]->best[b].activation > best[i].max_activation)
851 best[i].max_activation = syn_nbs[a]->best[b].activation;
Marc Kupietz728b8ed2017-12-02 11:13:49 +0100852 if(best[i].heat[wpos] == 0 )
853 best[i].heat[wpos] = syn_nbs[a]->best[b].activation;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100854 }
855 }
856 }
857// if(bits_set) {
858// word_activation_sum /= bits_set;
859// word_window_sum /= bits_set;
860// }
Marc Kupietza77acce2017-11-30 16:59:07 +0100861
862 word_window_sum /= total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100863
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100864 if(word_window_sum > best[i].probability) {
865 best[i].probability = word_window_sum;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100866 best[i].position = w;
Marc Kupietz30ca4342017-11-22 21:21:20 +0100867 }
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100868
869 if(word_window_conorm > best[i].conorm) {
870 best[i].conorm = word_window_conorm;
871 best[i].activation = word_activation_sum;
872 }
Marc Kupietz30ca4342017-11-22 21:21:20 +0100873 }
874 }
Marc Kupietze0e42132017-11-24 16:44:34 +0100875 qsort(best, found_index, sizeof(collocator), cmp_probability);
Marc Kupietz30ca4342017-11-22 21:21:20 +0100876// for(i=0; i < found_index; i++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100877// 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 +0100878// }
879
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100880 } else if(sort_by == 1) { // responsiveness any window position
881 int wpos;
882 for(i=0; i < found_index; i++) {
883 float word_window_sum = 0, word_activation_sum = 0, total_window_sum = 0;
884 for(a=0; a < syn_threads; a++) {
885 wpos = (a >= window? a+1 : a);
886 for(b=0; b < syn_nbs[a]->length; b++)
887 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
888 best[i].probability += syn_nbs[a]->best[b].probability;
889 if(syn_nbs[a]->best[b].activation > 0.25)
890 best[i].position |= 1 << wpos;
891 if(syn_nbs[a]->best[b].activation > best[i].activation) {
892 best[i].activation = syn_nbs[a]->best[b].activation;
893 }
894 }
895 }
896 }
897 qsort(best, found_index, sizeof(collocator), cmp_activation);
898 } else if(sort_by == 2) { // single window position
Marc Kupietz30ca4342017-11-22 21:21:20 +0100899 for(a=1; a < syn_threads; a++) {
900 for(b=0; b < syn_nbs[a]->length; b++) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200901 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100902 if(syn_nbs[a]->best[b].activation > best[c].activation) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200903 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100904 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200905 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100906 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
907 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 +0200908 break;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100909 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200910 }
911 }
912 }
913 } else { // sort by mean p
914 for(a=1; a < syn_threads; a++) {
915 for(b=0; b < syn_nbs[a]->length; b++) {
916 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100917 if(target_sums[syn_nbs[a]->best[b].wordi] > best[c].activation_sum) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200918 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100919 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200920 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100921 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
922 best[c].position = (1 << 2*window) - 1; // syn_nbs[a]->pos[b];
923 best[c].activation_sum = target_sums[syn_nbs[a]->best[b].wordi];
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200924 break;
925 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100926 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100927 }
928 }
929 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200930 array = newAV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100931 for (a = 0, i=0; a < MAX_NEIGHBOURS && best[a].wordi >= 0; a++) {
932 long long c = best[a].wordi;
Marc Kupietza77acce2017-11-30 16:59:07 +0100933/*
Marc Kupietzd91212f2017-11-13 10:05:09 +0100934 if (dedupe) {
935 int filtered=0;
936 for (j=0; j<i; j++)
937 if (strcasestr(&vocab[c * max_w], chosen[j]) ||
938 strcasestr(chosen[j], &vocab[c * max_w])) {
Marc Kupietza77acce2017-11-30 16:59:07 +0100939 printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]);
940 filtered = 1;
941 }
Marc Kupietzd91212f2017-11-13 10:05:09 +0100942 if(filtered)
943 continue;
944 }
Marc Kupietza77acce2017-11-30 16:59:07 +0100945*/
Marc Kupietzb6c615d2017-12-02 10:38:20 +0100946 chosen[i++]=c;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200947 HV* hash = newHV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100948 SV* word = newSVpvf(&vocab[best[a].wordi * max_w], 0);
Marc Kupietzb6c615d2017-12-02 10:38:20 +0100949 AV* heat = newAV();
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200950 if(latin_enc == 0) SvUTF8_on(word);
951 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100952 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100953 hv_store(hash, "conorm", strlen("conorm"), newSVnv(best[a].conorm), 0);
954 hv_store(hash, "prob", strlen("prob"), newSVnv(best[a].probability), 0);
Marc Kupietza77acce2017-11-30 16:59:07 +0100955 hv_store(hash, "cprob", strlen("cprob"), newSVnv(best[a].cprobability), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100956 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 +0100957 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 +0100958 hv_store(hash, "pos", strlen("pos"), newSVnv(best[a].position), 0);
Marc Kupietzb6c615d2017-12-02 10:38:20 +0100959 best[a].heat[5]=0;
960 for(i=10; i >= 0; i--) av_push(heat, newSVnv(best[a].heat[i]));
961 hv_store(hash, "heat", strlen("heat"), newRV_noinc((SV*)heat), 0);
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200962 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietz271e2a42016-03-22 11:37:43 +0100963 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200964 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100965 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100966end:
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100967 words = old_words;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100968 free(best);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100969 return newRV_noinc((SV*)result);
Marc Kupietz000ad862016-02-26 14:59:12 +0100970}
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100971
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200972int dump_vecs(char *fname) {
973 long i, j;
974 FILE *f;
975 /* if(words>200000) */
976 /* words=200000; */
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100977
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200978 if((f=fopen(fname, "w")) == NULL) {
979 fprintf(stderr, "cannot open %s for writing\n", fname);
980 return(-1);
981 }
982 fprintf(f, "%lld %lld\n", words, size);
983 for (i=0; i < words; i++) {
984 fprintf(f, "%s ", &vocab[i * max_w]);
985 for(j=0; j < size - 1; j++)
986 fprintf(f, "%f ", M[i*size + j]);
987 fprintf(f, "%f\n", M[i*size + j]);
988 }
989 fclose(f);
990 return(0);
991}
Marc Kupietzdc22b982015-10-09 09:19:34 +0200992