blob: d580925a5841eede0be72488d46d8ccbb8b59148 [file] [log] [blame]
Marc Kupietzdc22b982015-10-09 09:19:34 +02001#!/usr/local/bin/perl
2use Inline C;
Marc Kupietze243efd2018-01-11 22:19:24 +01003use Inline C => Config => CLEAN_AFTER_BUILD => 0, BUILD_NOISY => 1, ccflags => $Config{ccflags}." -I/vol/work/kupietz/Work2/kl/trunk/CollocatorDB -L/vol/work/kupietz/Work2/kl/trunk/CollocatorDB -Wall -O4", libs => "-shared -lpthread -lcollocatordb -lrt -lsnappy -lz -lbz2 -llz4 -lzstd -lrocksdb";
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;
Marc Kupietz66bfd952017-12-11 09:59:45 +010014
Marc Kupietzffef9302017-11-07 15:58:01 +010015app->static->paths->[0] = getcwd;
16
Marc Kupietzd4227392016-03-01 16:45:12 +010017plugin 'Log::Access';
Marc Kupietzb3422c12017-07-04 14:12:11 +020018plugin "RequestBase";
Marc Kupietzdc22b982015-10-09 09:19:34 +020019
Marc Kupietza5b90152016-03-15 17:39:19 +010020our $opt_i = 0; # latin1-input?
21our $opt_l = undef;
22our $opt_p = 5676;
Marc Kupietza2e64502016-04-27 09:53:51 +020023our $opt_m;
Marc Kupietz6ed81872016-04-27 14:04:04 +020024our $opt_M;
Marc Kupietz43ee87e2016-04-25 10:50:08 +020025our $opt_n = '';
26our $opt_d;
Marc Kupietz5c3887d2016-04-28 08:53:35 +020027our $opt_G;
Marc Kupietza5b90152016-03-15 17:39:19 +010028
Marc Kupietz6ed81872016-04-27 14:04:04 +020029my %marked;
Marc Kupietz793413b2016-04-02 21:48:57 +020030my $training_args="";
Marc Kupietza2e64502016-04-27 09:53:51 +020031my $mergedEnd=0;
Marc Kupietz15987412017-11-07 15:56:58 +010032my %cache;
Marc Kupietz793413b2016-04-02 21:48:57 +020033
Marc Kupietza5f60042017-05-04 10:38:12 +020034getopts('d:Gil:p:m:n:M:');
Marc Kupietz6ed81872016-04-27 14:04:04 +020035
36if($opt_M) {
Marc Kupietzed930212016-04-27 15:42:38 +020037 open my $handle, '<:encoding(UTF-8)', $opt_M
38 or die "Can't open '$opt_M' for reading: $!";
39 while(<$handle>) {
Marc Kupietz6ed81872016-04-27 14:04:04 +020040 foreach my $mw (split /\s+/) {
41 $marked{$mw}=1
42 }
43 }
Marc Kupietzed930212016-04-27 15:42:38 +020044 close($handle);
Marc Kupietz6ed81872016-04-27 14:04:04 +020045}
Marc Kupietza5b90152016-03-15 17:39:19 +010046
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010047# -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 +010048if(!$ARGV[0]) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010049 init_net("vectors15.bin", $opt_n, ($opt_i? 1 : 0));
Marc Kupietz2cb667e2016-03-10 09:44:12 +010050} else {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010051 init_net($ARGV[0], $opt_n, ($opt_i? 1 : 0));
Marc Kupietz793413b2016-04-02 21:48:57 +020052 if(open(FILE, "$ARGV[0].args")) {
53 $training_args = <FILE>;
54 }
55 close(FILE);
Marc Kupietz2cb667e2016-03-10 09:44:12 +010056}
Marc Kupietzdc22b982015-10-09 09:19:34 +020057
Marc Kupietza2e64502016-04-27 09:53:51 +020058if($opt_m) {
59 $mergedEnd = mergeVectors($opt_m);
60}
61
Marc Kupietz6ed81872016-04-27 14:04:04 +020062
Marc Kupietz43ee87e2016-04-25 10:50:08 +020063if($opt_d) { # -d: dump vecs and exit
64 dump_vecs($opt_d);
65 exit;
66}
67
Marc Kupietza5b90152016-03-15 17:39:19 +010068my $daemon = Mojo::Server::Daemon->new(
69 app => app,
70 listen => ['http://'.($opt_l ? $opt_l : '*').":$opt_p"]
71);
72
Marc Kupietz5c3887d2016-04-28 08:53:35 +020073if($opt_G) {
74 print "Filtering garbage\n";
75 filter_garbage();
76}
77
Marc Kupietz554aff52017-11-09 14:42:09 +010078get '*/js/*' => sub {
Marc Kupietzffef9302017-11-07 15:58:01 +010079 my $c = shift;
80 my $url = $c->req->url;
81 $url =~ s@/derekovecs@@g;
82 $c->app->log->info("GET: " . $url);
83 $c->reply->static($url);
84};
85
Marc Kupietz66bfd952017-12-11 09:59:45 +010086post '/derekovecs/getVecsByRanks' => sub {
87 my $self = shift;
88 my $vec = getVecs($self->req->json);
89 $self->render(json => $vec);
90};
91
Marc Kupietz65a71252018-01-24 09:49:28 +010092any '/derekovecs/getClassicCollocators' => sub {
Marc Kupietze243efd2018-01-11 22:19:24 +010093 my $self = shift;
Marc Kupietz65a71252018-01-24 09:49:28 +010094 $self->render(data => getClassicCollocators($self->param("w") ? $self->param("w") : $self->req->json), format=>'json');
Marc Kupietze243efd2018-01-11 22:19:24 +010095};
96
97post '/getClassicCollocators' => sub {
98 my $self = shift;
99 $self->render(data => getClassicCollocators($self->req->json), format=>'json');
100};
101
Marc Kupietzdf3d4b52017-11-29 16:57:27 +0100102get '*/img/*' => sub {
103 my $c = shift;
104 my $url = $c->req->url;
105 $url =~ s@/derekovecs@@g;
106 $c->app->log->info("GET: " . $url);
107 $c->reply->static($url);
108};
109
Marc Kupietzdc22b982015-10-09 09:19:34 +0200110get '/' => sub {
111 my $c = shift;
Marc Kupietza5f60042017-05-04 10:38:12 +0200112 $c->app->log->info("get: ".$c->req->url->to_abs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200113 my $word=$c->param('word');
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100114 my $no_nbs=$c->param('n') || 100;
115 my $no_iterations=$c->param('N') || 2000;
Marc Kupietzd4227392016-03-01 16:45:12 +0100116 my $perplexity=$c->param('perplexity') || 20;
Marc Kupietzc4d62f82016-03-01 11:04:24 +0100117 my $epsilon=$c->param('epsilon') || 5;
Marc Kupietzd7aea722016-03-02 11:59:12 +0100118 my $som=$c->param('som') || 0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200119 my $searchBaseVocabFirst=$c->param('sbf') || 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100120 my $sort=$c->param('sort') || 0;
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100121 my $csv=$c->param('csv') || 0;
Marc Kupietzb613b052016-04-28 14:11:59 +0200122 my $json=$c->param('json') || 0;
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +0100123 my $cutoff=$c->param('cutoff') || 500000;
Marc Kupietzd91212f2017-11-13 10:05:09 +0100124 my $dedupe=$c->param('dedupe') || 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100125 my $res;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100126 my @lists;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100127 my @collocations;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100128 if(defined($word) && $word !~ /^\s*$/) {
129 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100130 $word =~ s/\s+/ /g;
131 for my $w (split(' *\| *', $word)) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100132 if ($cache{$w.$cutoff.$no_nbs.$sort.$dedupe}) {
Marc Kupietz15987412017-11-07 15:56:58 +0100133 $c->app->log->info("Getting $w results from cache");
Marc Kupietzd91212f2017-11-13 10:05:09 +0100134 $res = $cache{$w.$cutoff.$no_nbs.$sort.$dedupe}
Marc Kupietza5b90152016-03-15 17:39:19 +0100135 } else {
Marc Kupietz15987412017-11-07 15:56:58 +0100136 $c->app->log->info('Looking for neighbours of '.$w);
137 if($opt_i) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100138 $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe);
Marc Kupietz15987412017-11-07 15:56:58 +0100139 } else {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100140 $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe);
Marc Kupietz15987412017-11-07 15:56:58 +0100141 }
Marc Kupietz2dd2dd72017-12-01 22:08:14 +0100142 $cache{$w.$cutoff.$no_nbs.$sort.$dedupe} = $res;
Marc Kupietza5b90152016-03-15 17:39:19 +0100143 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100144 push(@lists, $res->{paradigmatic});
Marc Kupietz15987412017-11-07 15:56:58 +0100145 }
146 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100147 $word =~ s/ *\| */ | /g;
Marc Kupietzb613b052016-04-28 14:11:59 +0200148 if($json) {
149 return $c->render(json => {word => $word, list => \@lists, collocators=>$res->{syntagmatic}});
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100150 } elsif($csv) {
151 my $csv_data="";
152 for (my $i=0; $i <= $no_nbs; $i++) {
153 $csv_data .= $res->{paradigmatic}->[$i]->{word} . ", ";
154 }
155 for (my $i=0; $i < $no_nbs; $i++) {
156 $csv_data .= $res->{syntagmatic}->[$i]->{word} . ", ";
157 }
158 chop $csv_data;
159 chop $csv_data;
160 $csv_data .= "\n";
161 return $c->render(text=>$csv_data);
Marc Kupietzb613b052016-04-28 14:11:59 +0200162 } else {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100163 $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 +0200164 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200165};
166
Marc Kupietz30ca4342017-11-22 21:21:20 +0100167helper(bitvec2window => sub {
168 my ($self, $n) = @_;
169 my $str = unpack("B32", pack("N", $n));
170 $str =~ s/^\d{22}//;
171 $str =~ s/^(\d{5})/$1x/;
172 $str =~ s/0/·/g;
173 $str =~ s/1/+/g;
174 return $str;
175 });
176
Marc Kupietza5b90152016-03-15 17:39:19 +0100177$daemon->run; # app->start;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200178
179exit;
180
181__END__
182
183__C__
184#include <stdio.h>
185#include <string.h>
186#include <math.h>
187#include <malloc.h>
188#include <stdlib.h> //strlen
Marc Kupietzf0809762016-02-26 10:13:47 +0100189#include <sys/mman.h>
Marc Kupietz000ad862016-02-26 14:59:12 +0100190#include <pthread.h>
Marc Kupietze243efd2018-01-11 22:19:24 +0100191#include <collocatordb.h>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200192
193#define max_size 2000
194#define max_w 50
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100195#define MAX_NEIGHBOURS 1000
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100196#define MAX_WORDS -1
Marc Kupietz000ad862016-02-26 14:59:12 +0100197#define MAX_THREADS 100
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100198#define MAX_CC 50
199#define EXP_TABLE_SIZE 1000
200#define MAX_EXP 6
Marc Kupietz271e2a42016-03-22 11:37:43 +0100201#define MIN_RESP 0.50
Marc Kupietzdc22b982015-10-09 09:19:34 +0200202
203//the thread function
204void *connection_handler(void *);
Marc Kupietz000ad862016-02-26 14:59:12 +0100205
206typedef struct {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100207 long long wordi;
208 long position;
209 float activation;
Marc Kupietz4116b432017-12-06 14:15:32 +0100210 float average;
Marc Kupietza77acce2017-11-30 16:59:07 +0100211 float cprobability; // column wise probability
Marc Kupietz4116b432017-12-06 14:15:32 +0100212 float cprobability_sum;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100213 float probability;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100214 float activation_sum;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100215 float max_activation;
Marc Kupietz4116b432017-12-06 14:15:32 +0100216 float heat[16];
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100217} collocator;
218
219typedef struct {
220 collocator *best;
Marc Kupietz80abb442016-03-23 21:04:08 +0100221 int length;
Marc Kupietz000ad862016-02-26 14:59:12 +0100222} knn;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100223
Marc Kupietz000ad862016-02-26 14:59:12 +0100224typedef struct {
Marc Kupietz48c29682016-03-19 11:30:43 +0100225 long long wordi[MAX_NEIGHBOURS];
226 char sep[MAX_NEIGHBOURS];
227 int length;
228} wordlist;
229
230typedef struct {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100231 long cutoff;
Marc Kupietz48c29682016-03-19 11:30:43 +0100232 wordlist *wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100233 char *token;
234 int N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100235 long from;
Marc Kupietz000ad862016-02-26 14:59:12 +0100236 unsigned long upto;
Marc Kupietzc55c8872017-12-01 23:27:10 +0100237 collocator *best;
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100238 float *target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100239 float *window_sums;
Marc Kupietz000ad862016-02-26 14:59:12 +0100240} knnpars;
241
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200242float *M, *M2=0L, *syn1neg_window, *expTable;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100243float *window_sums;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200244char *vocab;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200245char *garbage = NULL;
Marc Kupietze243efd2018-01-11 22:19:24 +0100246COLLOCATORDB *cdb = NULL;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100247
Marc Kupietza2e64502016-04-27 09:53:51 +0200248long long words, size, merged_end;
Marc Kupietza5f60042017-05-04 10:38:12 +0200249long long merge_words = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100250int num_threads=20;
Marc Kupietza5b90152016-03-15 17:39:19 +0100251int latin_enc=0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100252int window;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200253
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100254int init_net(char *file_name, char *net_name, int latin) {
Marc Kupietz67c20282016-02-26 09:42:00 +0100255 FILE *f, *binvecs, *binwords;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100256 int binwords_fd, binvecs_fd, net_fd, i;
Marc Kupietz82b02672016-02-26 12:32:25 +0100257 long long a, b, c, d, cn;
258 float len;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200259 double val;
Marc Kupietz82b02672016-02-26 12:32:25 +0100260
Marc Kupietz67c20282016-02-26 09:42:00 +0100261 char binvecs_fname[256], binwords_fname[256];
262 strcpy(binwords_fname, file_name);
263 strcat(binwords_fname, ".words");
264 strcpy(binvecs_fname, file_name);
265 strcat(binvecs_fname, ".vecs");
Marc Kupietzdc22b982015-10-09 09:19:34 +0200266
Marc Kupietza5b90152016-03-15 17:39:19 +0100267 latin_enc = latin;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200268 f = fopen(file_name, "rb");
269 if (f == NULL) {
270 printf("Input file %s not found\n", file_name);
271 return -1;
272 }
273 fscanf(f, "%lld", &words);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100274 if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200275 fscanf(f, "%lld", &size);
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100276 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) {
277 printf("Converting %s to memory mappable structures\n", file_name);
Marc Kupietzf0809762016-02-26 10:13:47 +0100278 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
279 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
280 if (M == NULL) {
281 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
282 return -1;
283 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200284 if(strstr(file_name, ".txt")) {
285 for (b = 0; b < words; b++) {
286 a = 0;
287 while (1) {
288 vocab[b * max_w + a] = fgetc(f);
289 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
290 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
291 }
292 vocab[b * max_w + a] = 0;
293 len = 0;
294 for (a = 0; a < size; a++) {
295 fscanf(f, "%lf", &val);
296 M[a + b * size] = val;
297 len += val * val;
298 }
299 len = sqrt(len);
300 for (a = 0; a < size; a++) M[a + b * size] /= len;
301 }
302 } else {
303 for (b = 0; b < words; b++) {
304 a = 0;
305 while (1) {
306 vocab[b * max_w + a] = fgetc(f);
307 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
308 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
309 }
310 vocab[b * max_w + a] = 0;
311 fread(&M[b * size], sizeof(float), size, f);
312 len = 0;
313 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
314 len = sqrt(len);
315 for (a = 0; a < size; a++) M[a + b * size] /= len;
316 }
317 }
Marc Kupietz67c20282016-02-26 09:42:00 +0100318 if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) {
319 fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs);
320 fclose(binvecs);
321 fwrite(vocab, sizeof(char), (long long)words * max_w, binwords);
322 fclose(binwords);
323 }
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100324 }
325 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
326 M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0);
327 vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0);
328 if (M == MAP_FAILED || vocab == MAP_FAILED) {
329 close(binvecs_fd);
330 close(binwords_fd);
331 fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname);
332 exit(-1);
333 }
334 } else {
335 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
336 exit(-1);
Marc Kupietz67c20282016-02-26 09:42:00 +0100337 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200338 fclose(f);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100339
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200340 if(net_name && strlen(net_name) > 0) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100341 if( (net_fd = open(net_name, O_RDONLY)) >= 0) {
342 window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2;
343 // lseek(net_fd, sizeof(float) * words * size, SEEK_SET);
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100344 // munmap(M, sizeof(float) * words * size);
345 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 +0200346 if (M2 == MAP_FAILED) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100347 close(net_fd);
348 fprintf(stderr, "Cannot mmap %s\n", net_name);
349 exit(-1);
350 }
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100351 syn1neg_window = M2 + words * size;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100352 } else {
353 fprintf(stderr, "Cannot open %s\n", net_name);
354 exit(-1);
355 }
356 fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window);
Marc Kupietze243efd2018-01-11 22:19:24 +0100357
358 char collocatordb_name[2048];
359 strcpy(collocatordb_name, net_name);
360 char *ext = rindex(collocatordb_name, '.');
361 if(ext) {
362 strcpy(ext, ".rocksdb");
363 if(access(collocatordb_name, R_OK) == 0) {
364 *ext = 0;
365 fprintf(stderr, "Opening collocator DB %s\n", collocatordb_name);
366 cdb = open_collocatordb(collocatordb_name);
367 }
368 }
369 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100370
371 expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float));
372 for (i = 0; i < EXP_TABLE_SIZE; i++) {
373 expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table
374 expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1)
375 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100376 window_sums = malloc(sizeof(float) * (window+1) * 2);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200377 return 0;
378}
379
Marc Kupietza2e64502016-04-27 09:53:51 +0200380long mergeVectors(char *file_name){
381 FILE *f, *binvecs, *binwords;
382 int binwords_fd, binvecs_fd, net_fd, i;
383 long long a, b, c, d, cn;
384 float len;
385 float *merge_vecs;
386 char *merge_vocab;
Marc Kupietza5f60042017-05-04 10:38:12 +0200387 /* long long merge_words, merge_size; */
388 long long merge_size;
Marc Kupietza2e64502016-04-27 09:53:51 +0200389
390 char binvecs_fname[256], binwords_fname[256];
391 strcpy(binwords_fname, file_name);
392 strcat(binwords_fname, ".words");
393 strcpy(binvecs_fname, file_name);
394 strcat(binvecs_fname, ".vecs");
395
396 f = fopen(file_name, "rb");
397 if (f == NULL) {
398 printf("Input file %s not found\n", file_name);
399 exit -1;
400 }
401 fscanf(f, "%lld", &merge_words);
402 fscanf(f, "%lld", &merge_size);
403 if(merge_size != size){
404 fprintf(stderr, "vectors must have the same length\n");
405 exit(-1);
406 }
407 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
408 merge_vecs = malloc(sizeof(float) * (words + merge_words) * size);
409 merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w);
410 if (merge_vecs == NULL || merge_vocab == NULL) {
411 close(binvecs_fd);
412 close(binwords_fd);
413 fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname);
414 exit(-1);
415 }
416 read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float));
417 read(binwords_fd, merge_vocab, merge_words * max_w);
418 } else {
419 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
420 exit(-1);
421 }
422 printf("Successfully reallocated memory\nMerging...\n");
423 fflush(stdout);
424 memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float));
425 memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w);
426 munmap(M, words * size * sizeof(float));
427 munmap(vocab, words * max_w);
428 M = merge_vecs;
429 vocab = merge_vocab;
430 merged_end = merge_words;
431 words += merge_words;
432 fclose(f);
433 printf("merged_end: %lld, words: %lld\n", merged_end, words);
434 return((long) merged_end);
435}
436
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200437void filter_garbage() {
438 long i;
Marc Kupietzab591a82016-04-28 14:08:49 +0200439 unsigned char *w, previous, c;
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200440 garbage = malloc(words);
441 memset(garbage, 0, words);
442 for (i = 0; i < words; i++) {
443 w = vocab + i * max_w;
444 previous = 0;
Marc Kupietzab591a82016-04-28 14:08:49 +0200445 while((c = *w++) && !garbage[i]) {
446 if( ((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) ||
447 (previous == '-' && (c & 32)) ||
Marc Kupietz33e3aa12017-11-09 16:19:38 +0100448 (previous == 0xc2 && (c == 0xa4 || c == 0xb6 )) ||
449 c == '<'
Marc Kupietzab591a82016-04-28 14:08:49 +0200450 ) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200451 garbage[i]=1;
452 continue;
453 }
454 previous = c;
455 }
456 }
457 return;
458}
459
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100460void *getCollocators(void *args) {
461 knnpars *pars = args;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100462 int N = pars->N;
463 int cc = pars->wl->wordi[0];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100464 knn *nbs = NULL;
465 long window_layer_size = size * window * 2;
466 long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target;
467 float f, max_f, maxmax_f;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100468 float *target_sums, worstbest, wpos_sum;
469 collocator *best;
Marc Kupietzd5642582016-03-19 22:23:13 +0100470
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200471 if(M2 == NULL || cc == -1)
Marc Kupietzd5642582016-03-19 22:23:13 +0100472 return NULL;
473
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100474 a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100475 best = malloc(N * sizeof(collocator));
Marc Kupietz271e2a42016-03-22 11:37:43 +0100476 worstbest = MIN_RESP;
477
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100478 for (b = 0; b < pars->cutoff; b++)
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100479 target_sums[b]=0;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100480 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100481 best[b].wordi = -1;
482 best[b].probability = 1;
483 best[b].activation = worstbest;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100484 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100485
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100486 d = cc;
487 maxmax_f = -1;
488 maxmax_target = 0;
489
Marc Kupietz271e2a42016-03-22 11:37:43 +0100490 for (a = pars->from; a < pars->upto; a++) {
491 if(a >= window)
492 a++;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100493 wpos_sum = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100494 printf("window pos: %ld\n", a);
495 if (a != window) {
496 max_f = -1;
497 window_offset = a * size;
498 if (a > window)
499 window_offset -= size;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100500 for(target = 0; target < pars->cutoff; target ++) {
501 if(garbage && garbage[target]) continue;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100502 if(target == d)
503 continue;
504 f = 0;
505 for (c = 0; c < size; c++)
Marc Kupietz10bec2b2016-03-23 09:41:31 +0100506 f += M2[d* size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100507 if (f < -MAX_EXP)
508 continue;
509 else if (f > MAX_EXP)
510 continue;
511 else
512 f = expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100513 wpos_sum += f;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100514
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100515 target_sums[target] += f;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100516 if(f > worstbest) {
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100517 for (b = 0; b < N; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100518 if (f > best[b].activation) {
519 memmove(best + b + 1, best + b, (N - b -1) * sizeof(collocator));
520 best[b].activation = f;
521 best[b].wordi = target;
522 best[b].position = window-a;
Marc Kupietz33679a32016-03-22 08:49:39 +0100523 break;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100524 }
525 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100526 if(b == N - 1)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100527 worstbest = best[N-1].activation;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100528 }
529 }
530 printf("%d %.2f\n", max_target, max_f);
531 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
532 if(max_f > maxmax_f) {
533 maxmax_f = max_f;
534 maxmax_target = max_target;
535 }
Marc Kupietz33679a32016-03-22 08:49:39 +0100536 for (b = 0; b < N; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100537 if(best[b].position == window-a)
Marc Kupietza77acce2017-11-30 16:59:07 +0100538 best[b].cprobability = best[b].activation / wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100539 } else {
540 printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]);
541 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100542 pars->window_sums[a] = wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100543 }
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100544 for (b = 0; b < pars->cutoff; b++)
Marc Kupietza77acce2017-11-30 16:59:07 +0100545 pars->target_sums[b] += target_sums[b]; //(target_sums[b] / wpos_sum ) / (window * 2);
546 printf("Target-Summe von 0: %f\n", pars->target_sums[150298]);
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100547 free(target_sums);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100548 for(b=0; b<N && best[b].wordi >= 0; b++);; // THIS LOOP IS NEEDED (b...)
549// 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 +0100550// printf("\n");
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100551 nbs = malloc(sizeof(knn));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100552 nbs->best = best;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100553 nbs->length = b-1;
554 pthread_exit(nbs);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100555}
556
Marc Kupietz30ca4342017-11-22 21:21:20 +0100557
Marc Kupietz66bfd952017-12-11 09:59:45 +0100558AV *getVecs(AV *array) {
559 int i, b;
560 AV *result = newAV();
561 for (i=0; i<=av_len(array); i++) {
562 SV** elem = av_fetch(array, i, 0);
563 if (elem != NULL) {
564 long j = (long) SvNV(*elem);
565 AV *vector = newAV();
566 for (b = 0; b < size; b++) {
567 av_push(vector, newSVnv(M[b + j * size]));
568 }
569 av_push(result, newRV_noinc(vector));
570 }
571 }
572 return result;
573}
574
Marc Kupietze243efd2018-01-11 22:19:24 +0100575char *getClassicCollocators(long node) {
576 char *res = (cdb? strdup(get_collocators_as_json(cdb, node)) : "[]");
577 return res;
578}
579
Marc Kupietza2e64502016-04-27 09:53:51 +0200580wordlist *getTargetWords(char *st1, int search_backw) {
Marc Kupietz48c29682016-03-19 11:30:43 +0100581 wordlist *wl = malloc(sizeof(wordlist));
582 char st[100][max_size], sep[100];
583 long a, b=0, c=0, cn=0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200584 int unmerged;
585
Marc Kupietzdc22b982015-10-09 09:19:34 +0200586 while (1) {
587 st[cn][b] = st1[c];
588 b++;
589 c++;
590 st[cn][b] = 0;
591 if (st1[c] == 0) break;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100592 if (st1[c] == ' ' || st1[c] == '-') {
593 sep[cn++] = st1[c];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200594 b = 0;
595 c++;
596 }
597 }
598 cn++;
599 for (a = 0; a < cn; a++) {
Marc Kupietza2e64502016-04-27 09:53:51 +0200600 if(search_backw) {
601 for (b = words - 1; b >= 0; b--) if (!strcmp(&vocab[b * max_w], st[a])) break;
602 } else {
603 for (b = 0; b < words; b++) if (!strcmp(&vocab[b * max_w], st[a])) break;
604 }
Marc Kupietz34a3ee92016-02-27 22:43:16 +0100605 if (b == words) b = -1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100606 wl->wordi[a] = b;
607 fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", st[a], wl->wordi[a]);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200608 if (b == -1) {
Marc Kupietze8da3062016-02-25 08:37:53 +0100609 fprintf(stderr, "Out of dictionary word!\n");
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100610 cn--;
Marc Kupietzf9ac54e2017-11-21 09:22:29 +0100611 free(wl);
612 return NULL;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200613 }
614 }
Marc Kupietz48c29682016-03-19 11:30:43 +0100615 wl->length=cn;
616 return(wl);
617}
618
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100619void *_get_neighbours(void *arg) {
620 knnpars *pars = arg;
Marc Kupietz48c29682016-03-19 11:30:43 +0100621 char *st1 = pars->token;
622 int N = pars->N;
623 long from = pars -> from;
624 unsigned long upto = pars -> upto;
625 char file_name[max_size], st[100][max_size], *sep;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100626 float dist, len, vec[max_size];
627 long long a, b, c, d, cn, *bi;
Marc Kupietz48c29682016-03-19 11:30:43 +0100628 char ch;
629 knn *nbs = NULL;
630 wordlist *wl = pars->wl;
631
Marc Kupietzc55c8872017-12-01 23:27:10 +0100632 collocator *best = pars->best;
Marc Kupietz48c29682016-03-19 11:30:43 +0100633
634 float worstbest=-1;
635
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100636 for (a = 0; a < N; a++) best[a].activation = 0;
Marc Kupietz48c29682016-03-19 11:30:43 +0100637 a = 0;
638 bi = wl->wordi;
639 cn = wl->length;
640 sep = wl->sep;
641 b = bi[0];
642 c = 0;
Marc Kupietz000ad862016-02-26 14:59:12 +0100643 if (b == -1) {
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100644 N = 0;
645 goto end;
646 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200647 for (a = 0; a < size; a++) vec[a] = 0;
648 for (b = 0; b < cn; b++) {
649 if (bi[b] == -1) continue;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100650 if(b>0 && sep[b-1] == '-')
651 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
652 else
653 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200654 }
655 len = 0;
656 for (a = 0; a < size; a++) len += vec[a] * vec[a];
657 len = sqrt(len);
658 for (a = 0; a < size; a++) vec[a] /= len;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100659 for (a = 0; a < N; a++) best[a].activation = -1;
Marc Kupietz000ad862016-02-26 14:59:12 +0100660 for (c = from; c < upto; c++) {
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200661 if(garbage && garbage[c]) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200662 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +0100663// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +0100664// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
665// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200666 dist = 0;
667 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100668 if(dist > worstbest) {
669 for (a = 0; a < N; a++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100670 if (dist > best[a].activation) {
671 memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator));
672 best[a].activation = dist;
673 best[a].wordi = c;
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100674 break;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200675 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200676 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100677 worstbest = best[N-1].activation;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200678 }
679 }
Marc Kupietz34020dc2016-02-25 08:44:19 +0100680
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100681end:
Marc Kupietz000ad862016-02-26 14:59:12 +0100682 pthread_exit(nbs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200683}
684
Marc Kupietze0e42132017-11-24 16:44:34 +0100685int cmp_activation (const void * a, const void * b) {
686 float fb = ((collocator *)a)->activation;
687 float fa = ((collocator *)b)->activation;
688 return (fa > fb) - (fa < fb);
689}
690
691int cmp_probability (const void * a, const void * b) {
692 float fb = ((collocator *)a)->probability;
693 float fa = ((collocator *)b)->probability;
694 return (fa > fb) - (fa < fb);
695}
696
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100697
Marc Kupietzd91212f2017-11-13 10:05:09 +0100698SV *get_neighbours(char *st1, int N, int sort_by, int search_backw, long cutoff, int dedupe) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100699 HV *result = newHV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100700 float *target_sums, vec[max_size];
Marc Kupietza5f60042017-05-04 10:38:12 +0200701 long long old_words;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100702 long a, b, c, d, slice;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100703 knn *para_nbs[MAX_THREADS];
704 knn *syn_nbs[MAX_THREADS];
Marc Kupietz000ad862016-02-26 14:59:12 +0100705 knnpars pars[MAX_THREADS];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100706 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
Marc Kupietz48c29682016-03-19 11:30:43 +0100707 wordlist *wl;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200708 int syn_threads = (M2? window * 2 : 0);
709 int para_threads = num_threads - syn_threads;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100710
Marc Kupietzc55c8872017-12-01 23:27:10 +0100711 collocator *best;
712 posix_memalign((void **) &best, 128, 10 * N * sizeof(collocator));
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +0100713 memset(best, 0, 10 * N * sizeof(collocator));
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100714
Marc Kupietz000ad862016-02-26 14:59:12 +0100715 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
716
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100717 if(cutoff < 1)
718 cutoff=words;
719
Marc Kupietza2e64502016-04-27 09:53:51 +0200720 wl = getTargetWords(st1, search_backw);
Marc Kupietzf9ac54e2017-11-21 09:22:29 +0100721 if(wl == NULL || wl->length < 1)
Marc Kupietz271e2a42016-03-22 11:37:43 +0100722 goto end;
Marc Kupietz48c29682016-03-19 11:30:43 +0100723
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100724 old_words = cutoff;
Marc Kupietza5f60042017-05-04 10:38:12 +0200725 if(merge_words > 0)
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100726 cutoff = merge_words * 1.25; /* HACK */
727 slice = cutoff / para_threads;
Marc Kupietza5f60042017-05-04 10:38:12 +0200728
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100729 a = posix_memalign((void **) &target_sums, 128, cutoff * sizeof(float));
730 for(a = 0; a < cutoff; a++)
Marc Kupietzce3d4c62016-03-23 16:11:25 +0100731 target_sums[a] = 0;
732
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200733 printf("Starting %d threads\n", para_threads);
734 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100735 for(a=0; a < para_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100736 pars[a].cutoff = cutoff;
Marc Kupietz000ad862016-02-26 14:59:12 +0100737 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100738 pars[a].wl = wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100739 pars[a].N = N;
Marc Kupietzc55c8872017-12-01 23:27:10 +0100740 pars[a].best = &best[N*a];
Marc Kupietz000ad862016-02-26 14:59:12 +0100741 pars[a].from = a*slice;
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100742 pars[a].upto = ((a+1)*slice > cutoff? cutoff:(a+1)*slice);
Marc Kupietz000ad862016-02-26 14:59:12 +0100743 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
744 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200745 if(M2) {
746 for(a=0; a < syn_threads; a++) {
Marc Kupietz2c79c5e2017-11-09 16:18:40 +0100747 pars[a + para_threads].cutoff = cutoff;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200748 pars[a + para_threads].target_sums = target_sums;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100749 pars[a + para_threads].window_sums = window_sums;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200750 pars[a + para_threads].wl = wl;
751 pars[a + para_threads].N = N;
752 pars[a + para_threads].from = a;
753 pars[a + para_threads].upto = a+1;
754 pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *) &pars[a + para_threads]);
755 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100756 }
757 printf("Waiting for para threads to join\n");
758 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100759 for (a = 0; a < para_threads; a++) pthread_join(pt[a], (void *) &para_nbs[a]);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100760 printf("Para threads joint\n");
761 fflush(stdout);
Marc Kupietz000ad862016-02-26 14:59:12 +0100762
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200763 /* if(!syn_nbs[0]) */
764 /* goto end; */
Marc Kupietz000ad862016-02-26 14:59:12 +0100765
Marc Kupietzc55c8872017-12-01 23:27:10 +0100766 qsort(best, N*para_threads, sizeof(collocator), cmp_activation);
Marc Kupietz000ad862016-02-26 14:59:12 +0100767
Marc Kupietz000ad862016-02-26 14:59:12 +0100768
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100769 long long chosen[MAX_NEIGHBOURS];
770 printf("N: %ld\n", N);
771
Marc Kupietz271e2a42016-03-22 11:37:43 +0100772 AV* array = newAV();
Marc Kupietzd91212f2017-11-13 10:05:09 +0100773 int i, j;
Marc Kupietza5f60042017-05-04 10:38:12 +0200774 int l1_words=0, l2_words=0;
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100775
776 for (a = 0, i = 0; i < N && a < N*para_threads; a++) {
Marc Kupietzd91212f2017-11-13 10:05:09 +0100777 int filtered=0;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100778 long long c = best[a].wordi;
Marc Kupietzd91212f2017-11-13 10:05:09 +0100779 if (dedupe && i > 0) {
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100780 for (j=0; j<i && !filtered; j++)
781 if (strcasestr(&vocab[c * max_w], &vocab[chosen[j] * max_w]) ||
782 strcasestr(&vocab[chosen[j] * max_w], &vocab[c * max_w])) {
783 printf("filtering %s %s\n", &vocab[chosen[j] * max_w], &vocab[c * max_w]);
Marc Kupietzd91212f2017-11-13 10:05:09 +0100784 filtered = 1;
785 }
786 if(filtered)
787 continue;
788 }
Marc Kupietza5f60042017-05-04 10:38:12 +0200789 if(merge_words > 0) {
790 if(c >= merge_words) {
791 if(l1_words > N / 2)
792 continue;
793 else
794 l1_words++;
795 } else {
796 if(l2_words > N / 2)
797 continue;
798 else
799 l2_words++;
800 }
801 }
Marc Kupietza5f60042017-05-04 10:38:12 +0200802 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 +0100803 fflush(stdout);
Marc Kupietza5f60042017-05-04 10:38:12 +0200804
Marc Kupietz271e2a42016-03-22 11:37:43 +0100805 HV* hash = newHV();
Marc Kupietza5f60042017-05-04 10:38:12 +0200806 SV* word = newSVpvf(&vocab[c * max_w], 0);
Marc Kupietzd0d3e912017-12-01 22:09:43 +0100807 chosen[i] = c;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100808 if(latin_enc == 0) SvUTF8_on(word);
Marc Kupietza5f60042017-05-04 10:38:12 +0200809 fflush(stdout);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100810 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100811 hv_store(hash, "dist", strlen("dist"), newSVnv(best[a].activation), 0);
812 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +0100813 AV *vector = newAV();
814 for (b = 0; b < size; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100815 av_push(vector, newSVnv(M[b + best[a].wordi * size]));
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100816 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100817 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
818 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietza5f60042017-05-04 10:38:12 +0200819 i++;
Marc Kupietz271e2a42016-03-22 11:37:43 +0100820 }
821 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0);
822
Marc Kupietz50485ba2016-03-23 09:13:14 +0100823 for(b=0; b < MAX_NEIGHBOURS; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100824 best[b].wordi = -1L;
825 best[b].activation = 0;
826 best[b].probability = 0;
827 best[b].position = 0;
828 best[b].activation_sum = 0;
Marc Kupietz50485ba2016-03-23 09:13:14 +0100829 }
830
Marc Kupietza77acce2017-11-30 16:59:07 +0100831 float total_activation = 0;
832
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200833 if (M2) {
834 printf("Waiting for syn threads to join\n");
835 fflush(stdout);
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100836 for (a = 0; a < syn_threads; a++) pthread_join(pt[a+para_threads], (void *) &syn_nbs[a]);
Marc Kupietza77acce2017-11-30 16:59:07 +0100837 for (a = 0; a <= syn_threads; a++) {
838 total_activation += window_sums[a];
839 printf("window pos: %d, sum: %f\n", a, window_sums[a]);
840 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200841 printf("syn threads joint\n");
842 fflush(stdout);
Marc Kupietz50485ba2016-03-23 09:13:14 +0100843
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200844 for(b=0; b < syn_nbs[0]->length; b++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100845 memcpy(best + b, &syn_nbs[0]->best[b], sizeof(collocator));
846 best[b].position = -1; // syn_nbs[0]->pos[b];
847 best[b].activation_sum = target_sums[syn_nbs[0]->best[b].wordi];
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100848 best[b].max_activation = 0.0;
Marc Kupietz4116b432017-12-06 14:15:32 +0100849 best[b].average = 0.0;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100850 best[b].probability = 0.0;
Marc Kupietza77acce2017-11-30 16:59:07 +0100851 best[b].cprobability = syn_nbs[0]->best[b].cprobability;
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200852 }
Marc Kupietz30ca4342017-11-22 21:21:20 +0100853
854 float best_window_sum[MAX_NEIGHBOURS];
855 int found_index=0, i=0, j, w;
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100856 for(a=0; a < syn_threads; a++) {
857 for(b=0; b < syn_nbs[a]->length; b++) {
858 for(i=0; i < found_index; i++)
859 if(best[i].wordi == syn_nbs[a]->best[b].wordi)
860 break;
861 if(i >= found_index) {
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100862 best[found_index].max_activation = 0.0;
Marc Kupietz4116b432017-12-06 14:15:32 +0100863 best[found_index].average = 0.0;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100864 best[found_index].probability = 0.0;
Marc Kupietza77acce2017-11-30 16:59:07 +0100865 best[found_index].cprobability = syn_nbs[a]->best[b].cprobability;
866 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 +0100867 best[found_index++].wordi = syn_nbs[a]->best[b].wordi;
868 // printf("found: %s\n", &vocab[syn_nbs[a]->index[b] * max_w]);
Marc Kupietz30ca4342017-11-22 21:21:20 +0100869 }
870 }
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100871 }
Marc Kupietza77acce2017-11-30 16:59:07 +0100872 sort_by =0; // ALWAYS AUTO-FOCUS
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100873 if(sort_by != 1 && sort_by != 2) { // sort by auto focus mean
Marc Kupietz30ca4342017-11-22 21:21:20 +0100874 printf("window: %d - syn_threads: %d, %d\n", window, syn_threads, (1 << syn_threads) -1);
Marc Kupietzbd41da32017-11-24 10:26:43 +0100875 int wpos;
Marc Kupietz4116b432017-12-06 14:15:32 +0100876 int bits_set = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +0100877 for(i=0; i < found_index; i++) {
Marc Kupietz4116b432017-12-06 14:15:32 +0100878 best[i].activation = best[i].probability = best[i].average = best[i].cprobability_sum = 0;
Marc Kupietz30ca4342017-11-22 21:21:20 +0100879 for(w=1; w < (1 << syn_threads); w++) { // loop through all possible windows
Marc Kupietz4116b432017-12-06 14:15:32 +0100880 float word_window_sum = 0, word_window_average=0, word_cprobability_sum=0, word_activation_sum = 0, total_window_sum = 0;
881 bits_set = 0;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100882 for(a=0; a < syn_threads; a++) {
Marc Kupietz30ca4342017-11-22 21:21:20 +0100883 if((1 << a) & w) {
Marc Kupietzbd41da32017-11-24 10:26:43 +0100884 wpos = (a >= window? a+1 : a);
885 total_window_sum += window_sums[wpos];
Marc Kupietz30ca4342017-11-22 21:21:20 +0100886 }
887 }
Marc Kupietzbd41da32017-11-24 10:26:43 +0100888// printf("%d window-sum %f\n", w, total_window_sum);
889 for(a=0; a < syn_threads; a++) {
890 if((1 << a) & w) {
891 wpos = (a >= window? a+1 : a);
892 bits_set++;
893 for(b=0; b < syn_nbs[a]->length; b++)
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100894 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
Marc Kupietza77acce2017-11-30 16:59:07 +0100895// float acti = syn_nbs[a]->best[b].activation / total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100896// 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 +0100897// word_window_sum += syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
898// 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 +0100899
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100900 word_window_sum += syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
Marc Kupietza77acce2017-11-30 16:59:07 +0100901// word_window_sum += acti - (word_window_sum * acti); syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
902
Marc Kupietz4116b432017-12-06 14:15:32 +0100903 word_window_average += syn_nbs[a]->best[b].activation; // - word_window_average * syn_nbs[a]->best[b].activation; // conormalied activation sum
904 word_cprobability_sum += syn_nbs[a]->best[b].cprobability - word_cprobability_sum * syn_nbs[a]->best[b].cprobability; // conormalied column probability sum
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100905 word_activation_sum += syn_nbs[a]->best[b].activation;
906 if(syn_nbs[a]->best[b].activation > best[i].max_activation)
907 best[i].max_activation = syn_nbs[a]->best[b].activation;
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +0100908 if(syn_nbs[a]->best[b].activation > best[i].heat[wpos] )
Marc Kupietz728b8ed2017-12-02 11:13:49 +0100909 best[i].heat[wpos] = syn_nbs[a]->best[b].activation;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100910 }
911 }
912 }
Marc Kupietz4116b432017-12-06 14:15:32 +0100913 if(bits_set) {
914 word_window_average /= bits_set;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100915// word_activation_sum /= bits_set;
916// word_window_sum /= bits_set;
Marc Kupietz4116b432017-12-06 14:15:32 +0100917 }
Marc Kupietza77acce2017-11-30 16:59:07 +0100918
919 word_window_sum /= total_window_sum;
Marc Kupietzbd41da32017-11-24 10:26:43 +0100920
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100921 if(word_window_sum > best[i].probability) {
Marc Kupietz4116b432017-12-06 14:15:32 +0100922// best[i].position = w;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100923 best[i].probability = word_window_sum;
Marc Kupietz30ca4342017-11-22 21:21:20 +0100924 }
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100925
Marc Kupietz4116b432017-12-06 14:15:32 +0100926 if(word_cprobability_sum > best[i].cprobability_sum) {
927 best[i].position = w;
928 best[i].cprobability_sum = word_cprobability_sum;
Marc Kupietzd64f3f22017-11-30 12:07:42 +0100929 }
Marc Kupietz4116b432017-12-06 14:15:32 +0100930
931 best[i].average = word_window_average;
932// best[i].activation = word_activation_sum;
933 }
Marc Kupietz30ca4342017-11-22 21:21:20 +0100934 }
Marc Kupietze0e42132017-11-24 16:44:34 +0100935 qsort(best, found_index, sizeof(collocator), cmp_probability);
Marc Kupietz30ca4342017-11-22 21:21:20 +0100936// for(i=0; i < found_index; i++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100937// 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 +0100938// }
939
Marc Kupietz580ebdf2017-11-29 21:18:38 +0100940 } else if(sort_by == 1) { // responsiveness any window position
941 int wpos;
942 for(i=0; i < found_index; i++) {
943 float word_window_sum = 0, word_activation_sum = 0, total_window_sum = 0;
944 for(a=0; a < syn_threads; a++) {
945 wpos = (a >= window? a+1 : a);
946 for(b=0; b < syn_nbs[a]->length; b++)
947 if(best[i].wordi == syn_nbs[a]->best[b].wordi) {
948 best[i].probability += syn_nbs[a]->best[b].probability;
949 if(syn_nbs[a]->best[b].activation > 0.25)
950 best[i].position |= 1 << wpos;
951 if(syn_nbs[a]->best[b].activation > best[i].activation) {
952 best[i].activation = syn_nbs[a]->best[b].activation;
953 }
954 }
955 }
956 }
957 qsort(best, found_index, sizeof(collocator), cmp_activation);
958 } else if(sort_by == 2) { // single window position
Marc Kupietz30ca4342017-11-22 21:21:20 +0100959 for(a=1; a < syn_threads; a++) {
960 for(b=0; b < syn_nbs[a]->length; b++) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200961 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100962 if(syn_nbs[a]->best[b].activation > best[c].activation) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200963 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100964 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200965 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100966 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
967 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 +0200968 break;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100969 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200970 }
971 }
972 }
973 } else { // sort by mean p
974 for(a=1; a < syn_threads; a++) {
975 for(b=0; b < syn_nbs[a]->length; b++) {
976 for(c=0; c < MAX_NEIGHBOURS; c++) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100977 if(target_sums[syn_nbs[a]->best[b].wordi] > best[c].activation_sum) {
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200978 for(d=MAX_NEIGHBOURS-1; d>c; d--) {
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100979 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200980 }
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100981 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
982 best[c].position = (1 << 2*window) - 1; // syn_nbs[a]->pos[b];
983 best[c].activation_sum = target_sums[syn_nbs[a]->best[b].wordi];
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200984 break;
985 }
Marc Kupietz271e2a42016-03-22 11:37:43 +0100986 }
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100987 }
988 }
989 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +0200990 array = newAV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +0100991 for (a = 0, i=0; a < MAX_NEIGHBOURS && best[a].wordi >= 0; a++) {
992 long long c = best[a].wordi;
Marc Kupietza77acce2017-11-30 16:59:07 +0100993/*
Marc Kupietzd91212f2017-11-13 10:05:09 +0100994 if (dedupe) {
995 int filtered=0;
996 for (j=0; j<i; j++)
997 if (strcasestr(&vocab[c * max_w], chosen[j]) ||
998 strcasestr(chosen[j], &vocab[c * max_w])) {
Marc Kupietza77acce2017-11-30 16:59:07 +0100999 printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]);
1000 filtered = 1;
1001 }
Marc Kupietzd91212f2017-11-13 10:05:09 +01001002 if(filtered)
1003 continue;
1004 }
Marc Kupietza77acce2017-11-30 16:59:07 +01001005*/
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001006 chosen[i++]=c;
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001007 HV* hash = newHV();
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001008 SV* word = newSVpvf(&vocab[best[a].wordi * max_w], 0);
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001009 AV* heat = newAV();
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001010 if(latin_enc == 0) SvUTF8_on(word);
1011 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001012 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
Marc Kupietz4116b432017-12-06 14:15:32 +01001013 hv_store(hash, "average", strlen("average"), newSVnv(best[a].average), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001014 hv_store(hash, "prob", strlen("prob"), newSVnv(best[a].probability), 0);
Marc Kupietz4116b432017-12-06 14:15:32 +01001015 hv_store(hash, "cprob", strlen("cprob"), newSVnv(best[a].cprobability_sum), 0);
Marc Kupietzd64f3f22017-11-30 12:07:42 +01001016 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 +01001017 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 +01001018 hv_store(hash, "pos", strlen("pos"), newSVnv(best[a].position), 0);
Marc Kupietzb6c615d2017-12-02 10:38:20 +01001019 best[a].heat[5]=0;
1020 for(i=10; i >= 0; i--) av_push(heat, newSVnv(best[a].heat[i]));
1021 hv_store(hash, "heat", strlen("heat"), newRV_noinc((SV*)heat), 0);
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001022 av_push(array, newRV_noinc((SV*)hash));
Marc Kupietz271e2a42016-03-22 11:37:43 +01001023 }
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001024 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz271e2a42016-03-22 11:37:43 +01001025 }
Marc Kupietz000ad862016-02-26 14:59:12 +01001026end:
Marc Kupietz580ebdf2017-11-29 21:18:38 +01001027 words = old_words;
Marc Kupietzc8fdf3c2017-11-24 15:32:19 +01001028 free(best);
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001029 return newRV_noinc((SV*)result);
Marc Kupietz000ad862016-02-26 14:59:12 +01001030}
Marc Kupietz7bc85fd2016-02-24 11:42:41 +01001031
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001032int dump_vecs(char *fname) {
1033 long i, j;
1034 FILE *f;
1035 /* if(words>200000) */
1036 /* words=200000; */
Marc Kupietz6b2975c2016-03-18 21:59:33 +01001037
Marc Kupietz43ee87e2016-04-25 10:50:08 +02001038 if((f=fopen(fname, "w")) == NULL) {
1039 fprintf(stderr, "cannot open %s for writing\n", fname);
1040 return(-1);
1041 }
1042 fprintf(f, "%lld %lld\n", words, size);
1043 for (i=0; i < words; i++) {
1044 fprintf(f, "%s ", &vocab[i * max_w]);
1045 for(j=0; j < size - 1; j++)
1046 fprintf(f, "%f ", M[i*size + j]);
1047 fprintf(f, "%f\n", M[i*size + j]);
1048 }
1049 fclose(f);
1050 return(0);
1051}
Marc Kupietzdc22b982015-10-09 09:19:34 +02001052