blob: 3791ade2c02b531b96c78740b1cac49ce5f6786a [file] [log] [blame]
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001#include <collocatordb.h>
Marc Kupietz969cab92019-08-05 11:13:42 +02002#include <malloc.h>
3#include <math.h>
4#include <pthread.h>
5#include <stdio.h>
Marc Kupietzc0d41872021-02-25 16:33:22 +01006#include <stdlib.h>
Marc Kupietz969cab92019-08-05 11:13:42 +02007#include <string.h>
8#include <sys/mman.h>
Marc Kupietzf11d20c2019-08-02 15:42:04 +02009
10#define max_size 2000
11#define max_w 50
12#define MAX_NEIGHBOURS 1000
13#define MAX_WORDS -1
14#define MAX_THREADS 100
15#define MAX_CC 50
16#define EXP_TABLE_SIZE 1000
17#define MAX_EXP 6
18#define MIN_RESP 0.50
19
20//the thread function
21void *connection_handler(void *);
22
23typedef struct {
Marc Kupietz969cab92019-08-05 11:13:42 +020024 long long wordi;
25 long position;
26 float activation;
27 float average;
28 float cprobability; // column wise probability
29 float cprobability_sum;
30 float probability;
31 float activation_sum;
32 float max_activation;
33 float heat[16];
Marc Kupietzf11d20c2019-08-02 15:42:04 +020034} collocator;
35
36typedef struct {
Marc Kupietz969cab92019-08-05 11:13:42 +020037 collocator *best;
38 int length;
Marc Kupietzf11d20c2019-08-02 15:42:04 +020039} knn;
Marc Kupietz969cab92019-08-05 11:13:42 +020040
Marc Kupietzf11d20c2019-08-02 15:42:04 +020041typedef struct {
42 long long wordi[MAX_NEIGHBOURS];
43 char sep[MAX_NEIGHBOURS];
44 int length;
45} wordlist;
46
47typedef struct {
48 long cutoff;
49 wordlist *wl;
Marc Kupietz969cab92019-08-05 11:13:42 +020050 char *token;
51 int N;
52 long from;
53 unsigned long upto;
Marc Kupietzf11d20c2019-08-02 15:42:04 +020054 collocator *best;
55 float *target_sums;
56 float *window_sums;
57 float threshold;
58} knnpars;
59
60typedef struct {
61 uint32_t index;
62 float value;
63} sparse_t;
64
65typedef struct {
66 uint32_t len;
67 sparse_t nbr[100];
68} profile_t;
69
Marc Kupietz969cab92019-08-05 11:13:42 +020070float *M, *M2 = 0L, *syn1neg_window, *expTable;
Marc Kupietzf11d20c2019-08-02 15:42:04 +020071float *window_sums;
72char *vocab;
73char *garbage = NULL;
74COLLOCATORDB *cdb = NULL;
75profile_t *sprofiles = NULL;
76size_t sprofiles_qty = 0;
77
78long long words, size, merged_end;
79long long merge_words = 0;
Marc Kupietz969cab92019-08-05 11:13:42 +020080int num_threads = 20;
81int latin_enc = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +020082int window;
83
84/* load collocation profiles if file exists */
85int load_sprofiles(char *vecsname) {
86 char *basename = strdup(vecsname);
87 char *pos = strstr(basename, ".vecs");
Marc Kupietz969cab92019-08-05 11:13:42 +020088 if (pos)
89 *pos = 0;
90
Marc Kupietzf11d20c2019-08-02 15:42:04 +020091 char binsprofiles_fname[256];
92 strcpy(binsprofiles_fname, basename);
Marc Kupietz969cab92019-08-05 11:13:42 +020093 strcat(binsprofiles_fname, ".sprofiles.bin");
Marc Kupietzf11d20c2019-08-02 15:42:04 +020094 FILE *fp = fopen(binsprofiles_fname, "rb");
95 if (fp == NULL) {
96 printf("Collocation profiles %s not found. No problem.\n", binsprofiles_fname);
97 return 0;
98 }
99 fseek(fp, 0L, SEEK_END);
100 size_t sz = ftell(fp);
101 fclose(fp);
102
103 int fd = open(binsprofiles_fname, O_RDONLY);
Marc Kupietz969cab92019-08-05 11:13:42 +0200104 sprofiles = mmap(0, sz, PROT_READ, MAP_SHARED, fd, 0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200105 if (sprofiles == MAP_FAILED) {
106 close(fd);
107 fprintf(stderr, "Cannot mmap %s\n", binsprofiles_fname);
108 sprofiles = NULL;
109 return 0;
Marc Kupietz969cab92019-08-05 11:13:42 +0200110 } else {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200111 sprofiles_qty = sz / sizeof(profile_t);
112 fprintf(stderr, "Successfully mmaped %s containing similar profiles for %ld word forms.\n", binsprofiles_fname, sprofiles_qty);
113 }
114 return 1;
115}
116
Marc Kupietzc0d41872021-02-25 16:33:22 +0100117char *removeExtension(char* myStr) {
118 char *retStr;
119 char *lastExt;
120 if (myStr == NULL) return NULL;
121 if ((retStr = malloc (strlen (myStr) + 1)) == NULL) return NULL;
122 strcpy (retStr, myStr);
123 lastExt = strrchr (retStr, '.');
124 if (lastExt != NULL)
125 *lastExt = '\0';
126 return retStr;
127}
128
Marc Kupietz0efe49b2020-04-06 18:30:22 +0200129int init_net(char *file_name, char *net_name, int latin, int do_open_cdb) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200130 FILE *f, *binvecs, *binwords;
Marc Kupietz969cab92019-08-05 11:13:42 +0200131 int binwords_fd, binvecs_fd, net_fd, i;
132 long long a, b, c, d, cn;
133 float len;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200134 double val;
135
Marc Kupietzc0d41872021-02-25 16:33:22 +0100136 char binvecs_fname[1024], binwords_fname[1024];
137
138 if (strstr(file_name, ".txt")) {
139 strcpy(binwords_fname, removeExtension(file_name));
140 } else {
141 strcpy(binwords_fname, file_name);
142 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200143 strcat(binwords_fname, ".words");
144 strcpy(binvecs_fname, file_name);
145 strcat(binvecs_fname, ".vecs");
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200146
147 latin_enc = latin;
148 f = fopen(file_name, "rb");
149 if (f == NULL) {
150 printf("Input file %s not found\n", file_name);
151 return -1;
152 }
153 fscanf(f, "%lld", &words);
Marc Kupietz969cab92019-08-05 11:13:42 +0200154 if (MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200155 fscanf(f, "%lld", &size);
Marc Kupietz969cab92019-08-05 11:13:42 +0200156 if ((binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200157 printf("Converting %s to memory mappable structures\n", file_name);
Marc Kupietz969cab92019-08-05 11:13:42 +0200158 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
159 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
160 if (M == NULL) {
161 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
162 return -1;
163 }
164 if (strstr(file_name, ".txt")) {
Marc Kupietzc0d41872021-02-25 16:33:22 +0100165 printf("%lld words in ascii vector file with vector size %lld\n", words, size);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200166 for (b = 0; b < words; b++) {
167 a = 0;
168 while (1) {
169 vocab[b * max_w + a] = fgetc(f);
170 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
171 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
172 }
173 vocab[b * max_w + a] = 0;
174 len = 0;
175 for (a = 0; a < size; a++) {
176 fscanf(f, "%lf", &val);
177 M[a + b * size] = val;
178 len += val * val;
Marc Kupietz969cab92019-08-05 11:13:42 +0200179 }
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200180 len = sqrt(len);
181 for (a = 0; a < size; a++) M[a + b * size] /= len;
182 }
183 } else {
184 for (b = 0; b < words; b++) {
185 a = 0;
186 while (1) {
187 vocab[b * max_w + a] = fgetc(f);
188 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
189 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
190 }
191 vocab[b * max_w + a] = 0;
192 fread(&M[b * size], sizeof(float), size, f);
193 len = 0;
194 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
195 len = sqrt(len);
196 for (a = 0; a < size; a++) M[a + b * size] /= len;
197 }
198 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200199 if ((binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) {
200 fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs);
201 fclose(binvecs);
202 fwrite(vocab, sizeof(char), (long long)words * max_w, binwords);
203 fclose(binwords);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200204 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200205 }
206 if ((binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
207 M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0);
208 vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0);
209 if (M == MAP_FAILED || vocab == MAP_FAILED) {
210 close(binvecs_fd);
211 close(binwords_fd);
212 fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname);
213 exit(-1);
214 }
215 } else {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200216 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
217 exit(-1);
Marc Kupietz969cab92019-08-05 11:13:42 +0200218 }
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200219 fclose(f);
220
Marc Kupietz969cab92019-08-05 11:13:42 +0200221 if (net_name && strlen(net_name) > 0) {
222 if ((net_fd = open(net_name, O_RDONLY)) >= 0) {
223 window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200224 // lseek(net_fd, sizeof(float) * words * size, SEEK_SET);
225 // munmap(M, sizeof(float) * words * size);
226 M2 = mmap(0, sizeof(float) * words * size + sizeof(float) * 2 * window * size * words, PROT_READ, MAP_SHARED, net_fd, 0);
227 if (M2 == MAP_FAILED) {
228 close(net_fd);
229 fprintf(stderr, "Cannot mmap %s\n", net_name);
230 exit(-1);
231 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200232 syn1neg_window = M2 + words * size;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200233 } else {
234 fprintf(stderr, "Cannot open %s\n", net_name);
235 exit(-1);
236 }
237 fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window);
238
Marc Kupietz0efe49b2020-04-06 18:30:22 +0200239 if (do_open_cdb) {
240 char collocatordb_name[2048];
241 strcpy(collocatordb_name, net_name);
242 char *ext = rindex(collocatordb_name, '.');
243 if (ext) {
244 strcpy(ext, ".rocksdb");
245 if (access(collocatordb_name, R_OK) == 0) {
246 *ext = 0;
247 fprintf(stderr, "Opening collocator DB %s\n", collocatordb_name);
248 cdb = open_collocatordb(collocatordb_name);
Marc Kupietzc0d41872021-02-25 16:33:22 +0100249 } else {
250 fprintf(stderr, "Cannot open collocator DB %s\n", collocatordb_name);
Marc Kupietz0efe49b2020-04-06 18:30:22 +0200251 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200252 }
253 }
254 }
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200255
Marc Kupietz969cab92019-08-05 11:13:42 +0200256 expTable = (float *)malloc((EXP_TABLE_SIZE + 1) * sizeof(float));
257 for (i = 0; i < EXP_TABLE_SIZE; i++) {
258 expTable[i] = exp((i / (float)EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table
259 expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1)
260 }
261 window_sums = malloc(sizeof(float) * (window + 1) * 2);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200262
263 return 0;
264}
265
Marc Kupietz969cab92019-08-05 11:13:42 +0200266long mergeVectors(char *file_name) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200267 FILE *f, *binvecs, *binwords;
Marc Kupietz969cab92019-08-05 11:13:42 +0200268 int binwords_fd, binvecs_fd, net_fd, i;
269 long long a, b, c, d, cn;
270 float len;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200271 float *merge_vecs;
272 char *merge_vocab;
Marc Kupietz969cab92019-08-05 11:13:42 +0200273 /* long long merge_words, merge_size; */
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200274 long long merge_size;
275
Marc Kupietz969cab92019-08-05 11:13:42 +0200276 char binvecs_fname[256], binwords_fname[256];
Marc Kupietzc0d41872021-02-25 16:33:22 +0100277
278
Marc Kupietz969cab92019-08-05 11:13:42 +0200279 strcpy(binwords_fname, file_name);
280 strcat(binwords_fname, ".words");
281 strcpy(binvecs_fname, file_name);
282 strcat(binvecs_fname, ".vecs");
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200283
284 f = fopen(file_name, "rb");
285 if (f == NULL) {
286 printf("Input file %s not found\n", file_name);
Marc Kupietz969cab92019-08-05 11:13:42 +0200287 exit - 1;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200288 }
289 fscanf(f, "%lld", &merge_words);
290 fscanf(f, "%lld", &merge_size);
Marc Kupietz969cab92019-08-05 11:13:42 +0200291 if (merge_size != size) {
292 fprintf(stderr, "vectors must have the same length\n");
293 exit(-1);
294 }
295 if ((binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
296 merge_vecs = malloc(sizeof(float) * (words + merge_words) * size);
297 merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200298 if (merge_vecs == NULL || merge_vocab == NULL) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200299 close(binvecs_fd);
300 close(binwords_fd);
301 fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname);
302 exit(-1);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200303 }
304 read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float));
305 read(binwords_fd, merge_vocab, merge_words * max_w);
Marc Kupietz969cab92019-08-05 11:13:42 +0200306 } else {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200307 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
308 exit(-1);
Marc Kupietz969cab92019-08-05 11:13:42 +0200309 }
310 printf("Successfully reallocated memory\nMerging...\n");
311 fflush(stdout);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200312 memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float));
313 memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w);
314 munmap(M, words * size * sizeof(float));
315 munmap(vocab, words * max_w);
316 M = merge_vecs;
317 vocab = merge_vocab;
318 merged_end = merge_words;
319 words += merge_words;
320 fclose(f);
Marc Kupietz969cab92019-08-05 11:13:42 +0200321 printf("merged_end: %lld, words: %lld\n", merged_end, words);
322 //printBiggestMergedDifferences();
323 return ((long)merged_end);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200324}
325
326void filter_garbage() {
327 long i;
328 unsigned char *w, previous, c;
329 garbage = malloc(words);
330 memset(garbage, 0, words);
331 for (i = 0; i < words; i++) {
332 w = vocab + i * max_w;
333 previous = 0;
Marc Kupietz969cab92019-08-05 11:13:42 +0200334 if (strncmp("quot", w, 4) == 0) {
335 garbage[i] = 1;
336 // printf("Gargabe: %s\n", vocab + i * max_w);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200337 } else {
Marc Kupietz969cab92019-08-05 11:13:42 +0200338 while ((c = *w++) && !garbage[i]) {
339 if (((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) ||
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200340 (previous == '-' && (c & 32)) ||
Marc Kupietz969cab92019-08-05 11:13:42 +0200341 (previous == 0xc2 && (c == 0xa4 || c == 0xb6)) ||
342 (previous == 'q' && c == 'u' && *(w) == 'o' && *(w + 1) == 't') || /* quot */
343 c == '<') {
344 garbage[i] = 1;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200345 continue;
346 }
347 previous = c;
348 }
349 }
350 }
351 return;
352}
353
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200354knn *simpleGetCollocators(int word, int number, long cutoff, int *result) {
355 knnpars *pars = calloc(sizeof(knnpars), 1);
356 float *target_sums;
Marc Kupietz969cab92019-08-05 11:13:42 +0200357 float *window_sums = malloc(sizeof(float) * (window + 1) * 2);
358 pars->cutoff = (cutoff ? cutoff : 300000);
359 long a = posix_memalign((void **)&target_sums, 128, pars->cutoff * sizeof(float));
360 for (a = 0; a < cutoff; a++)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200361 target_sums[a] = 0;
362 pars->target_sums = target_sums;
363 pars->window_sums = window_sums;
Marc Kupietz969cab92019-08-05 11:13:42 +0200364 pars->N = (number ? number : 20);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200365 pars->from = 0;
Marc Kupietz969cab92019-08-05 11:13:42 +0200366 pars->upto = window * 2 - 1;
367 knn *syn_nbs = NULL; // = (knn*) getCollocators(pars);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200368 free(pars);
369 free(window_sums);
370 free(target_sums);
371 return syn_nbs;
372}
373
374void *getCollocators(void *args) {
375 knnpars *pars = args;
Marc Kupietz969cab92019-08-05 11:13:42 +0200376 int N = pars->N;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200377
378 int cc = pars->wl->wordi[0];
Marc Kupietz969cab92019-08-05 11:13:42 +0200379 knn *nbs = NULL;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200380 long window_layer_size = size * window * 2;
Marc Kupietz969cab92019-08-05 11:13:42 +0200381 long a, b, c, d, e, window_offset, target, max_target = 0, maxmax_target;
382 float f, max_f, maxmax_f;
383 float *target_sums = NULL, worstbest, wpos_sum;
384 collocator *best;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200385
Marc Kupietz969cab92019-08-05 11:13:42 +0200386 if (M2 == NULL || cc == -1)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200387 return NULL;
388
Marc Kupietz969cab92019-08-05 11:13:42 +0200389 a = posix_memalign((void **)&target_sums, 128, pars->cutoff * sizeof(float));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200390 memset(target_sums, 0, pars->cutoff * sizeof(float));
Marc Kupietz969cab92019-08-05 11:13:42 +0200391 best = malloc((N > 200 ? N : 200) * sizeof(collocator));
392 memset(best, 0, (N > 200 ? N : 200) * sizeof(collocator));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200393 worstbest = pars->threshold;
394
395 for (b = 0; b < pars->cutoff; b++)
Marc Kupietz969cab92019-08-05 11:13:42 +0200396 target_sums[b] = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200397 for (b = 0; b < N; b++) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200398 best[b].wordi = -1;
399 best[b].probability = 1;
400 best[b].activation = worstbest;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200401 }
402
403 d = cc;
404 maxmax_f = -1;
405 maxmax_target = 0;
406
407 for (a = pars->from; a < pars->upto; a++) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200408 if (a >= window)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200409 a++;
410 wpos_sum = 0;
411 printf("window pos: %ld\n", a);
412 if (a != window) {
413 max_f = -1;
414 window_offset = a * size;
415 if (a > window)
416 window_offset -= size;
Marc Kupietz969cab92019-08-05 11:13:42 +0200417 for (target = 0; target < pars->cutoff; target++) {
418 if (garbage && garbage[target]) continue;
419 if (target == d)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200420 continue;
421 f = 0;
422 for (c = 0; c < size; c++)
Marc Kupietz969cab92019-08-05 11:13:42 +0200423 f += M2[d * size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200424 if (f < -MAX_EXP)
425 continue;
426 else if (f > MAX_EXP)
427 continue;
428 else
Marc Kupietz969cab92019-08-05 11:13:42 +0200429 f = expTable[(int)((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200430 wpos_sum += f;
431
432 target_sums[target] += f;
Marc Kupietz969cab92019-08-05 11:13:42 +0200433 if (f > worstbest) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200434 for (b = 0; b < N; b++) {
435 if (f > best[b].activation) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200436 memmove(best + b + 1, best + b, (N - b - 1) * sizeof(collocator));
437 best[b].activation = f;
438 best[b].wordi = target;
439 best[b].position = window - a;
440 break;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200441 }
442 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200443 if (b == N - 1)
444 worstbest = best[N - 1].activation;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200445 }
446 }
447 printf("%d %.2f\n", max_target, max_f);
448 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
Marc Kupietz969cab92019-08-05 11:13:42 +0200449 if (max_f > maxmax_f) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200450 maxmax_f = max_f;
451 maxmax_target = max_target;
452 }
453 for (b = 0; b < N; b++)
Marc Kupietz969cab92019-08-05 11:13:42 +0200454 if (best[b].position == window - a)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200455 best[b].cprobability = best[b].activation / wpos_sum;
456 } else {
Marc Kupietz969cab92019-08-05 11:13:42 +0200457 printf("\x1b[1m%s\x1b[0m ", &vocab[d * max_w]);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200458 }
459 pars->window_sums[a] = wpos_sum;
460 }
461 for (b = 0; b < pars->cutoff; b++)
Marc Kupietz969cab92019-08-05 11:13:42 +0200462 pars->target_sums[b] += target_sums[b]; //(target_sums[b] / wpos_sum ) / (window * 2);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200463
464 free(target_sums);
Marc Kupietz969cab92019-08-05 11:13:42 +0200465 for (b = 0; b < N && best[b].wordi >= 0; b++)
466 ;
467 ; // THIS LOOP IS NEEDED (b...)
468 // printf("%d: best syn: %s %.2f %.5f\n", b, &vocab[best[b].wordi*max_w], best[b].activation, best[b].probability);
469 // printf("\n");
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200470 nbs = malloc(sizeof(knn));
Marc Kupietz969cab92019-08-05 11:13:42 +0200471 nbs->best = best;
472 nbs->length = b - 1;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200473 pthread_exit(nbs);
474}
475
Marc Kupietz0efe49b2020-04-06 18:30:22 +0200476float getOutputWeight(int hidden, long target, int window_position) {
477 const long window_layer_size = size * window * 2;
478 int a;
479
480 if (window_position == 0 || window_position > window || window_position < -window) {
481 fprintf(stderr, "window_position: %d - assert: -%d <= window_position <= %d && window_position != 0 failed.\n", window_position, window, window);
482 exit(-1);
483 }
484
485 if (hidden >= size) {
486 fprintf(stderr, "hidden: %d - assert: hidden < %d failed.\n", hidden, size);
487 exit(-1);
488 }
489
490 if (target >= words) {
491 fprintf(stderr, "target: %ld - assert: target < %ld failed.\n", target, words);
492 exit(-1);
493 }
494
495 a = window_position + window;
496 if (a > window) {
497 --a;
498 }
499 long window_offset = a * size;
500 return syn1neg_window[target * window_layer_size + window_offset + hidden];
501}
502
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200503AV *getVecs(AV *array) {
504 int i, b;
505 AV *result = newAV();
Marc Kupietz969cab92019-08-05 11:13:42 +0200506 for (i = 0; i <= av_len(array); i++) {
507 SV **elem = av_fetch(array, i, 0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200508 if (elem != NULL) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200509 long j = (long)SvNV(*elem);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200510 AV *vector = newAV();
511 for (b = 0; b < size; b++) {
512 av_push(vector, newSVnv(M[b + j * size]));
513 }
514 av_push(result, newRV_noinc(vector));
515 }
516 }
517 return result;
518}
519
520char *getSimilarProfiles(long node) {
521 int i;
522 char buffer[120000];
523 char pair_buffer[2048];
Marc Kupietz969cab92019-08-05 11:13:42 +0200524 buffer[0] = '[';
525 buffer[1] = 0;
526 if (node >= sprofiles_qty) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200527 printf("Not available in precomputed profile\n");
Marc Kupietz969cab92019-08-05 11:13:42 +0200528 return (strdup("[{\"w\":\"not available\", \"v\":0}]\n"));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200529 }
530
531 printf("******* %s ******\n", &vocab[max_w * node]);
Marc Kupietz969cab92019-08-05 11:13:42 +0200532
533 for (i = 0; i < 100 && i < sprofiles[node].len; i++) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200534 sprintf(pair_buffer, "{\"w\":\"%s\", \"v\":%f},", &vocab[max_w * (sprofiles[node].nbr[i].index)], sprofiles[node].nbr[i].value);
535 strcat(buffer, pair_buffer);
536 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200537 buffer[strlen(buffer) - 1] = ']';
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200538 strcat(buffer, "\n");
539 printf(buffer);
Marc Kupietz969cab92019-08-05 11:13:42 +0200540 return (strdup(buffer));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200541}
542
543char *getClassicCollocators(long node) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200544 char *res = (cdb ? strdup(get_collocators_as_json(cdb, node)) : "[]");
545 return res;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200546}
547
548wordlist *getTargetWords(char *st1, int search_backw) {
549 wordlist *wl = malloc(sizeof(wordlist));
550 char st[100][max_size], sep[100];
Marc Kupietz969cab92019-08-05 11:13:42 +0200551 long a, b = 0, c = 0, cn = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200552 int unmerged;
553
554 while (1) {
555 st[cn][b] = st1[c];
556 b++;
557 c++;
558 st[cn][b] = 0;
559 if (st1[c] == 0) break;
Marc Kupietzc0d41872021-02-25 16:33:22 +0100560 if (st1[c] == ' ' /*|| st1[c] == '-'*/) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200561 sep[cn++] = st1[c];
562 b = 0;
563 c++;
564 }
565 }
566 cn++;
567 for (a = 0; a < cn; a++) {
568 if (search_backw) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200569 for (b = words - 1; b >= (merge_words ? merge_words : 0) && strcmp(&vocab[b * max_w], st[a]) != 0; b--)
570 ;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200571 } else {
Marc Kupietz969cab92019-08-05 11:13:42 +0200572 for (b = 0; b < (merge_words ? merge_words : words) && strcmp(&vocab[b * max_w], st[a]) != 0; b++)
573 ;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200574 }
575 if (b == words) b = -1;
576 wl->wordi[a] = b;
577 if (b == -1) {
578 fprintf(stderr, "Out of dictionary word!\n");
579 cn--;
580 } else {
Marc Kupietz969cab92019-08-05 11:13:42 +0200581 fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", &vocab[wl->wordi[a] * max_w], wl->wordi[a]);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200582 }
583 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200584 wl->length = cn;
585 return (wl);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200586}
587
Marc Kupietzcb43e492019-12-03 10:07:53 +0100588long getWordNumber(char *word) {
589 wordlist *wl = getTargetWords(word, 0);
590 if(wl->length > 0)
591 return(wl->wordi[0]);
592 return(0);
593}
594
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200595float get_distance(long b, long c) {
596 long a;
597 float dist = 0;
598 for (a = 0; a < size; a++) dist += M[a + c * size] * M[a + b * size];
599 return dist;
600}
601
Marc Kupietz969cab92019-08-05 11:13:42 +0200602char *getBiggestMergedDifferences() {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200603 static char *result = NULL;
604 float dist, len, vec[max_size];
605 long long a, b, c, d, cn, *bi;
606 char ch;
607 knn *nbs = NULL;
608 int N = 1000;
609
Marc Kupietz969cab92019-08-05 11:13:42 +0200610 if (merged_end == 0)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200611 result = "[]";
Marc Kupietz969cab92019-08-05 11:13:42 +0200612
613 if (result != NULL)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200614 return result;
615
616 printf("Looking for biggest distances between main and merged vectors ...\n");
617 collocator *best;
618 best = malloc(N * sizeof(collocator));
619 memset(best, 0, N * sizeof(collocator));
620
Marc Kupietz969cab92019-08-05 11:13:42 +0200621 float worstbest = 1000000;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200622
623 for (a = 0; a < N; a++) best[a].activation = worstbest;
624
625 for (c = 0; c < 500000; c++) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200626 if (garbage && garbage[c]) continue;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200627 a = 0;
628 dist = 0;
Marc Kupietz969cab92019-08-05 11:13:42 +0200629 for (a = 0; a < size; a++) dist += M[a + c * size] * M[a + (c + merged_end) * size];
630 if (dist < worstbest) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200631 for (a = 0; a < N; a++) {
632 if (dist < best[a].activation) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200633 memmove(best + a + 1, best + a, (N - a - 1) * sizeof(collocator));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200634 best[a].activation = dist;
635 best[a].wordi = c;
636 break;
637 }
638 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200639 worstbest = best[N - 1].activation;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200640 }
641 }
642
Marc Kupietz969cab92019-08-05 11:13:42 +0200643 result = malloc(N * max_w);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200644 char *p = result;
Marc Kupietz969cab92019-08-05 11:13:42 +0200645 *p++ = '[';
646 *p = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200647 for (a = 0; a < N; a++) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200648 p += sprintf(p, "{\"rank\":%d,\"word\":\"%s\",\"dist\":%.3f},", a, &vocab[best[a].wordi * max_w], 1 - best[a].activation);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200649 }
650 *--p = ']';
Marc Kupietz969cab92019-08-05 11:13:42 +0200651 return (result);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200652}
653
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200654float cos_similarity(long b, long c) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200655 float dist = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200656 long a;
Marc Kupietz969cab92019-08-05 11:13:42 +0200657 for (a = 0; a < size; a++) dist += M[b * size + a] * M[c * size + a];
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200658 return dist;
659}
660
661char *cos_similarity_as_json(char *w1, char *w2) {
662 wordlist *a, *b;
663 float res;
664 a = getTargetWords(w1, 0);
665 b = getTargetWords(w2, 0);
Marc Kupietz969cab92019-08-05 11:13:42 +0200666 if (a == NULL || b == NULL || a->length != 1 || b->length != 1)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200667 res = -1;
668 else
669 res = cos_similarity(a->wordi[0], b->wordi[0]);
670 fprintf(stderr, "a: %lld b: %lld res:%f\n", a->wordi[0], b->wordi[0], res);
671 char *json = malloc(16);
672 sprintf(json, "%.5f", res);
673 return json;
674}
675
676void *_get_neighbours(void *arg) {
677 knnpars *pars = arg;
Marc Kupietz969cab92019-08-05 11:13:42 +0200678 char *st1 = pars->token;
679 int N = pars->N;
680 long from = pars->from;
681 unsigned long upto = pars->upto;
682 char file_name[max_size], st[100][max_size], *sep;
683 float dist, len, vec[max_size];
684 long long a, b, c, d, cn, *bi;
685 char ch;
686 knn *nbs = NULL;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200687 wordlist *wl = pars->wl;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200688
Marc Kupietz969cab92019-08-05 11:13:42 +0200689 collocator *best = pars->best;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200690
Marc Kupietz969cab92019-08-05 11:13:42 +0200691 float worstbest = -1;
692
693 for (a = 0; a < N; a++) best[a].activation = 0;
694 a = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200695 bi = wl->wordi;
Marc Kupietz969cab92019-08-05 11:13:42 +0200696 cn = wl->length;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200697 sep = wl->sep;
Marc Kupietz969cab92019-08-05 11:13:42 +0200698 b = bi[0];
699 c = 0;
700 if (b == -1) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200701 N = 0;
Marc Kupietz969cab92019-08-05 11:13:42 +0200702 goto end;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200703 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200704 for (a = 0; a < size; a++) vec[a] = 0;
705 for (b = 0; b < cn; b++) {
706 if (bi[b] == -1) continue;
707 if (b > 0 && sep[b - 1] == '-')
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200708 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
709 else
710 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietz969cab92019-08-05 11:13:42 +0200711 }
712 len = 0;
713 for (a = 0; a < size; a++) len += vec[a] * vec[a];
714 len = sqrt(len);
715 for (a = 0; a < size; a++) vec[a] /= len;
716 for (a = 0; a < N; a++) best[a].activation = -1;
717 for (c = from; c < upto; c++) {
718 if (garbage && garbage[c]) continue;
719 a = 0;
720 // do not skip taget word
721 // for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
722 // if (a == 1) continue;
723 dist = 0;
724 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
725 if (dist > worstbest) {
726 for (a = 0; a < N; a++) {
727 if (dist > best[a].activation) {
728 memmove(best + a + 1, best + a, (N - a - 1) * sizeof(collocator));
729 best[a].activation = dist;
730 best[a].wordi = c;
731 break;
732 }
733 }
734 worstbest = best[N - 1].activation;
735 }
736 }
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200737
738end:
Marc Kupietz969cab92019-08-05 11:13:42 +0200739 pthread_exit(nbs);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200740}
741
Marc Kupietz969cab92019-08-05 11:13:42 +0200742int cmp_activation(const void *a, const void *b) {
743 float fb = ((collocator *)a)->activation;
744 float fa = ((collocator *)b)->activation;
745 return (fa > fb) - (fa < fb);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200746}
747
Marc Kupietz969cab92019-08-05 11:13:42 +0200748int cmp_probability(const void *a, const void *b) {
749 float fb = ((collocator *)a)->probability;
750 float fa = ((collocator *)b)->probability;
751 return (fa > fb) - (fa < fb);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200752}
753
Marc Kupietz969cab92019-08-05 11:13:42 +0200754char *getPosWiseW2VCollocatorsAsTsv(char *word, long maxPerPos, long cutoff, float threshold) {
755 HV *result = newHV();
756 float *target_sums = NULL, vec[max_size];
757 long long old_words;
758 long a, b, c, d;
759 knn *para_nbs[MAX_THREADS];
760 knn *syn_nbs[MAX_THREADS];
761 knnpars pars[MAX_THREADS];
762 pthread_t *pt = (pthread_t *)malloc((num_threads + 1) * sizeof(pthread_t));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200763 wordlist *wl;
Marc Kupietz969cab92019-08-05 11:13:42 +0200764 int syn_threads = (M2 ? window * 2 : 0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200765 int search_backw = 0;
766 collocator *best = NULL;
Marc Kupietz969cab92019-08-05 11:13:42 +0200767 posix_memalign((void **)&best, 128, 10 * (maxPerPos >= 200 ? maxPerPos : 200) * sizeof(collocator));
768 memset(best, 0, (maxPerPos >= 200 ? maxPerPos : 200) * sizeof(collocator));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200769
Marc Kupietz969cab92019-08-05 11:13:42 +0200770 if (cutoff < 1 || cutoff > words)
771 cutoff = words;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200772
773 wl = getTargetWords(word, search_backw);
Marc Kupietz969cab92019-08-05 11:13:42 +0200774 if (wl == NULL || wl->length < 1)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200775 return "";
776
Marc Kupietz969cab92019-08-05 11:13:42 +0200777 a = posix_memalign((void **)&target_sums, 128, cutoff * sizeof(float));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200778 memset(target_sums, 0, cutoff * sizeof(float));
779
780 printf("Starting %d threads\n", syn_threads);
781 fflush(stdout);
Marc Kupietz969cab92019-08-05 11:13:42 +0200782 for (a = 0; a < syn_threads; a++) {
783 pars[a].cutoff = cutoff;
784 pars[a].target_sums = target_sums;
785 pars[a].window_sums = window_sums;
786 pars[a].wl = wl;
787 pars[a].N = maxPerPos;
788 pars[a].threshold = threshold;
789 pars[a].from = a;
790 pars[a].upto = a + 1;
791 pthread_create(&pt[a], NULL, getCollocators, (void *)&pars[a]);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200792 }
793 printf("Waiting for syn threads to join\n");
794 fflush(stdout);
Marc Kupietz969cab92019-08-05 11:13:42 +0200795 for (a = 0; a < syn_threads; a++) pthread_join(pt[a], (void *)&syn_nbs[a]);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200796 printf("Syn threads joint\n");
797 fflush(stdout);
Marc Kupietz969cab92019-08-05 11:13:42 +0200798 result = malloc(maxPerPos * 80 * syn_threads);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200799 char *p = result;
800 *p = 0;
Marc Kupietz969cab92019-08-05 11:13:42 +0200801 for (a = syn_threads - 1; a >= 0; a--) {
802 for (b = 0; b < syn_nbs[a]->length; b++) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200803 p += sprintf(p, "%ld\t%s\t%f\n", syn_nbs[a]->best[b].position, &vocab[syn_nbs[a]->best[b].wordi * max_w], syn_nbs[a]->best[b].activation);
804 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200805 }
806 return (result);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200807}
808
809SV *get_neighbours(char *st1, int N, int sort_by, int search_backw, long cutoff, int dedupe, int no_similar_profiles) {
810 HV *result = newHV();
Marc Kupietz969cab92019-08-05 11:13:42 +0200811 float *target_sums = NULL, vec[max_size];
812 long long old_words;
813 long a, b, c, d, slice;
814 knn *para_nbs[MAX_THREADS];
815 knn *syn_nbs[MAX_THREADS];
816 knnpars pars[MAX_THREADS];
817 pthread_t *pt = (pthread_t *)malloc((num_threads + 1) * sizeof(pthread_t));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200818 wordlist *wl;
Marc Kupietz969cab92019-08-05 11:13:42 +0200819 int syn_threads = (M2 ? window * 2 : 0);
820 int para_threads = (no_similar_profiles ? 0 : num_threads - syn_threads);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200821
822 collocator *best = NULL;
Marc Kupietz969cab92019-08-05 11:13:42 +0200823 posix_memalign((void **)&best, 128, 10 * (N >= 200 ? N : 200) * sizeof(collocator));
824 memset(best, 0, (N >= 200 ? N : 200) * sizeof(collocator));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200825
Marc Kupietz969cab92019-08-05 11:13:42 +0200826 if (N > MAX_NEIGHBOURS) N = MAX_NEIGHBOURS;
827
828 if (cutoff < 1 || cutoff > words)
829 cutoff = words;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200830
831 wl = getTargetWords(st1, search_backw);
Marc Kupietz969cab92019-08-05 11:13:42 +0200832 if (wl == NULL || wl->length < 1)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200833 goto end;
834
Marc Kupietz969cab92019-08-05 11:13:42 +0200835 old_words = cutoff;
836 slice = cutoff / para_threads;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200837
Marc Kupietz969cab92019-08-05 11:13:42 +0200838 a = posix_memalign((void **)&target_sums, 128, cutoff * sizeof(float));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200839 memset(target_sums, 0, cutoff * sizeof(float));
840
Marc Kupietzc0d41872021-02-25 16:33:22 +0100841 printf("Starting %d threads for paradigmatic search\n", para_threads);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200842 fflush(stdout);
Marc Kupietz969cab92019-08-05 11:13:42 +0200843 for (a = 0; a < para_threads; a++) {
844 pars[a].cutoff = cutoff;
845 pars[a].token = st1;
846 pars[a].wl = wl;
847 pars[a].N = N;
848 pars[a].best = &best[N * a];
849 if (merge_words == 0 || search_backw == 0) {
850 pars[a].from = a * slice;
851 pars[a].upto = ((a + 1) * slice > cutoff ? cutoff : (a + 1) * slice);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200852 } else {
853 pars[a].from = merge_words + a * slice;
Marc Kupietz969cab92019-08-05 11:13:42 +0200854 pars[a].upto = merge_words + ((a + 1) * slice > cutoff ? cutoff : (a + 1) * slice);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200855 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200856 printf("From: %ld, Upto: %ld\n", pars[a].from, pars[a].upto);
857 pthread_create(&pt[a], NULL, _get_neighbours, (void *)&pars[a]);
858 }
859 if (M2) {
860 for (a = 0; a < syn_threads; a++) {
861 pars[a + para_threads].cutoff = cutoff;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200862 pars[a + para_threads].target_sums = target_sums;
863 pars[a + para_threads].window_sums = window_sums;
864 pars[a + para_threads].wl = wl;
865 pars[a + para_threads].N = N;
866 pars[a + para_threads].threshold = MIN_RESP;
867 pars[a + para_threads].from = a;
Marc Kupietz969cab92019-08-05 11:13:42 +0200868 pars[a + para_threads].upto = a + 1;
869 pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *)&pars[a + para_threads]);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200870 }
871 }
872 printf("Waiting for para threads to join\n");
873 fflush(stdout);
Marc Kupietz969cab92019-08-05 11:13:42 +0200874 for (a = 0; a < para_threads; a++) pthread_join(pt[a], (void *)&para_nbs[a]);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200875 printf("Para threads joint\n");
876 fflush(stdout);
877
Marc Kupietz969cab92019-08-05 11:13:42 +0200878 /* if(!syn_nbs[0]) */
879 /* goto end; */
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200880
Marc Kupietz969cab92019-08-05 11:13:42 +0200881 qsort(best, N * para_threads, sizeof(collocator), cmp_activation);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200882
883 long long chosen[MAX_NEIGHBOURS];
884 printf("N: %ld\n", N);
885
Marc Kupietz969cab92019-08-05 11:13:42 +0200886 AV *array = newAV();
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200887 int i, j;
Marc Kupietz969cab92019-08-05 11:13:42 +0200888 int l1_words = 0, l2_words = 0;
889
890 for (a = 0, i = 0; i < N && a < N * para_threads; a++) {
891 int filtered = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200892 long long c = best[a].wordi;
893 if ((merge_words && dedupe && i > 1) || (!merge_words && dedupe && i > 0)) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200894 for (j = 0; j < i && !filtered; j++)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200895 if (strcasestr(&vocab[c * max_w], &vocab[chosen[j] * max_w]) ||
896 strcasestr(&vocab[chosen[j] * max_w], &vocab[c * max_w])) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200897 printf("filtering %s %s\n", &vocab[chosen[j] * max_w], &vocab[c * max_w]);
898 filtered = 1;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200899 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200900 if (filtered)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200901 continue;
902 }
903
Marc Kupietz969cab92019-08-05 11:13:42 +0200904 if (0 && merge_words > 0) {
905 if (c >= merge_words) {
906 if (l1_words > N / 2)
907 continue;
908 else
909 l1_words++;
910 } else {
911 if (l2_words > N / 2)
912 continue;
913 else
914 l2_words++;
915 }
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200916 }
917
Marc Kupietz969cab92019-08-05 11:13:42 +0200918 // printf("%s l1:%d l2:%d i:%d a:%ld\n", &vocab[c * max_w], l1_words, l2_words, i, a);
919 // fflush(stdout);
920 HV *hash = newHV();
921 SV *word = newSVpvf(&vocab[c * max_w], 0);
922 chosen[i] = c;
923 if (latin_enc == 0) SvUTF8_on(word);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200924 fflush(stdout);
Marc Kupietz969cab92019-08-05 11:13:42 +0200925 hv_store(hash, "word", strlen("word"), word, 0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200926 hv_store(hash, "dist", strlen("dist"), newSVnv(best[a].activation), 0);
927 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
928 AV *vector = newAV();
929 for (b = 0; b < size; b++) {
930 av_push(vector, newSVnv(M[b + best[a].wordi * size]));
931 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200932 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV *)vector), 0);
933 av_push(array, newRV_noinc((SV *)hash));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200934 i++;
935 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200936 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV *)array), 0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200937
Marc Kupietz969cab92019-08-05 11:13:42 +0200938 for (b = 0; b < MAX_NEIGHBOURS; b++) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200939 best[b].wordi = -1L;
940 best[b].activation = 0;
941 best[b].probability = 0;
942 best[b].position = 0;
943 best[b].activation_sum = 0;
Marc Kupietz969cab92019-08-05 11:13:42 +0200944 memset(best[b].heat, 0, sizeof(float) * 16);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200945 }
946
Marc Kupietz969cab92019-08-05 11:13:42 +0200947 float total_activation = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200948
949 if (M2) {
950 printf("Waiting for syn threads to join\n");
951 fflush(stdout);
Marc Kupietz969cab92019-08-05 11:13:42 +0200952 for (a = 0; a < syn_threads; a++) pthread_join(pt[a + para_threads], (void *)&syn_nbs[a]);
953 for (a = 0; a <= syn_threads; a++) {
954 if (a == window) continue;
955 total_activation += window_sums[a];
956 printf("window pos: %d, sum: %f\n", a, window_sums[a]);
957 }
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200958 printf("syn threads joint\n");
959 fflush(stdout);
960
Marc Kupietz969cab92019-08-05 11:13:42 +0200961 for (b = 0; b < syn_nbs[0]->length; b++) {
962 memcpy(best + b, &syn_nbs[0]->best[b], sizeof(collocator));
963 best[b].position = -1; // syn_nbs[0]->pos[b];
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200964 best[b].activation_sum = target_sums[syn_nbs[0]->best[b].wordi];
Marc Kupietz969cab92019-08-05 11:13:42 +0200965 best[b].max_activation = 0.0;
966 best[b].average = 0.0;
967 best[b].probability = 0.0;
968 best[b].cprobability = syn_nbs[0]->best[b].cprobability;
969 memset(best[b].heat, 0, sizeof(float) * 16);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200970 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200971
972 float best_window_sum[MAX_NEIGHBOURS];
973 int found_index = 0, i = 0, j, w;
974 for (a = 0; a < syn_threads; a++) {
975 for (b = 0; b < syn_nbs[a]->length; b++) {
976 for (i = 0; i < found_index; i++)
977 if (best[i].wordi == syn_nbs[a]->best[b].wordi)
978 break;
979 if (i >= found_index) {
980 best[found_index].max_activation = 0.0;
981 best[found_index].average = 0.0;
982 best[found_index].probability = 0.0;
983 memset(best[found_index].heat, 0, sizeof(float) * 16);
984 best[found_index].cprobability = syn_nbs[a]->best[b].cprobability;
985 best[found_index].activation_sum = target_sums[syn_nbs[a]->best[b].wordi]; // syn_nbs[a]->best[b].activation_sum;
986 best[found_index++].wordi = syn_nbs[a]->best[b].wordi;
987 // printf("found: %s\n", &vocab[syn_nbs[a]->index[b] * max_w]);
988 }
989 }
990 }
991 sort_by = 0; // ALWAYS AUTO-FOCUS
992 if (sort_by != 1 && sort_by != 2) { // sort by auto focus mean
993 printf("window: %d - syn_threads: %d, %d\n", window, syn_threads, (1 << syn_threads) - 1);
994 int wpos;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200995 int bits_set = 0;
Marc Kupietz969cab92019-08-05 11:13:42 +0200996 for (i = 0; i < found_index; i++) {
997 best[i].activation = best[i].probability = best[i].average = best[i].cprobability_sum = 0;
998 for (w = 1; w < (1 << syn_threads); w++) { // loop through all possible windows
999 float word_window_sum = 0, word_window_average = 0, word_cprobability_sum = 0, word_activation_sum = 0, total_window_sum = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001000 bits_set = 0;
Marc Kupietz969cab92019-08-05 11:13:42 +02001001 for (a = 0; a < syn_threads; a++) {
1002 if ((1 << a) & w) {
1003 wpos = (a >= window ? a + 1 : a);
1004 total_window_sum += window_sums[wpos];
1005 }
1006 }
1007 // printf("%d window-sum %f\n", w, total_window_sum);
1008 for (a = 0; a < syn_threads; a++) {
1009 if ((1 << a) & w) {
1010 wpos = (a >= window ? a + 1 : a);
1011 bits_set++;
1012 for (b = 0; b < syn_nbs[a]->length; b++)
1013 if (best[i].wordi == syn_nbs[a]->best[b].wordi) {
1014 // float acti = syn_nbs[a]->best[b].activation / total_window_sum;
1015 // word_window_sum += syn_nbs[a]->dist[b] * syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1016 // word_window_sum += syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1017 // 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 Kupietzf11d20c2019-08-02 15:42:04 +02001018
Marc Kupietz969cab92019-08-05 11:13:42 +02001019 word_window_sum += syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1020 // word_window_sum += acti - (word_window_sum * acti); syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001021
Marc Kupietz969cab92019-08-05 11:13:42 +02001022 word_window_average += syn_nbs[a]->best[b].activation; // - word_window_average * syn_nbs[a]->best[b].activation; // conormalied activation sum
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001023 word_cprobability_sum += syn_nbs[a]->best[b].cprobability - word_cprobability_sum * syn_nbs[a]->best[b].cprobability; // conormalied column probability sum
Marc Kupietz969cab92019-08-05 11:13:42 +02001024 word_activation_sum += syn_nbs[a]->best[b].activation;
1025 if (syn_nbs[a]->best[b].activation > best[i].max_activation)
1026 best[i].max_activation = syn_nbs[a]->best[b].activation;
1027 if (syn_nbs[a]->best[b].activation > best[i].heat[wpos])
1028 best[i].heat[wpos] = syn_nbs[a]->best[b].activation;
1029 }
1030 }
1031 }
1032 if (bits_set) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001033 word_window_average /= bits_set;
Marc Kupietz969cab92019-08-05 11:13:42 +02001034 // word_activation_sum /= bits_set;
1035 // word_window_sum /= bits_set;
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001036 }
1037
Marc Kupietz969cab92019-08-05 11:13:42 +02001038 word_window_sum /= total_window_sum;
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001039
Marc Kupietz969cab92019-08-05 11:13:42 +02001040 if (word_window_sum > best[i].probability) {
1041 // best[i].position = w;
1042 best[i].probability = word_window_sum;
1043 }
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001044
Marc Kupietz969cab92019-08-05 11:13:42 +02001045 if (word_cprobability_sum > best[i].cprobability_sum) {
1046 best[i].position = w;
1047 best[i].cprobability_sum = word_cprobability_sum;
1048 }
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001049
Marc Kupietz969cab92019-08-05 11:13:42 +02001050 best[i].average = word_window_average;
1051 // best[i].activation = word_activation_sum;
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001052 }
Marc Kupietz969cab92019-08-05 11:13:42 +02001053 }
1054 qsort(best, found_index, sizeof(collocator), cmp_probability);
1055 // for(i=0; i < found_index; i++) {
1056 // printf("found: %s - sum: %f - window: %d\n", &vocab[best[i].wordi * max_w], best[i].activation, best[i].position);
1057 // }
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001058
Marc Kupietz969cab92019-08-05 11:13:42 +02001059 } else if (sort_by == 1) { // responsiveness any window position
1060 int wpos;
1061 for (i = 0; i < found_index; i++) {
1062 float word_window_sum = 0, word_activation_sum = 0, total_window_sum = 0;
1063 for (a = 0; a < syn_threads; a++) {
1064 wpos = (a >= window ? a + 1 : a);
1065 for (b = 0; b < syn_nbs[a]->length; b++)
1066 if (best[i].wordi == syn_nbs[a]->best[b].wordi) {
1067 best[i].probability += syn_nbs[a]->best[b].probability;
1068 if (syn_nbs[a]->best[b].activation > 0.25)
1069 best[i].position |= 1 << wpos;
1070 if (syn_nbs[a]->best[b].activation > best[i].activation) {
1071 best[i].activation = syn_nbs[a]->best[b].activation;
1072 }
1073 }
1074 }
1075 }
1076 qsort(best, found_index, sizeof(collocator), cmp_activation);
1077 } else if (sort_by == 2) { // single window position
1078 for (a = 1; a < syn_threads; a++) {
1079 for (b = 0; b < syn_nbs[a]->length; b++) {
1080 for (c = 0; c < MAX_NEIGHBOURS; c++) {
1081 if (syn_nbs[a]->best[b].activation > best[c].activation) {
1082 for (d = MAX_NEIGHBOURS - 1; d > c; d--) {
1083 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001084 }
1085 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
Marc Kupietz969cab92019-08-05 11:13:42 +02001086 best[c].position = 1 << (-syn_nbs[a]->best[b].position + window - (syn_nbs[a]->best[b].position < 0 ? 1 : 0));
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001087 break;
1088 }
1089 }
1090 }
1091 }
Marc Kupietz969cab92019-08-05 11:13:42 +02001092 } else { // sort by mean p
1093 for (a = 1; a < syn_threads; a++) {
1094 for (b = 0; b < syn_nbs[a]->length; b++) {
1095 for (c = 0; c < MAX_NEIGHBOURS; c++) {
1096 if (target_sums[syn_nbs[a]->best[b].wordi] > best[c].activation_sum) {
1097 for (d = MAX_NEIGHBOURS - 1; d > c; d--) {
1098 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001099 }
1100 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
Marc Kupietz969cab92019-08-05 11:13:42 +02001101 best[c].position = (1 << 2 * window) - 1; // syn_nbs[a]->pos[b];
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001102 best[c].activation_sum = target_sums[syn_nbs[a]->best[b].wordi];
1103 break;
1104 }
1105 }
1106 }
1107 }
1108 }
1109 array = newAV();
Marc Kupietz969cab92019-08-05 11:13:42 +02001110 for (a = 0, i = 0; a < MAX_NEIGHBOURS && best[a].wordi >= 0; a++) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001111 long long c = best[a].wordi;
Marc Kupietz969cab92019-08-05 11:13:42 +02001112 /*
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001113 if (dedupe) {
1114 int filtered=0;
1115 for (j=0; j<i; j++)
1116 if (strcasestr(&vocab[c * max_w], chosen[j]) ||
1117 strcasestr(chosen[j], &vocab[c * max_w])) {
1118 printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]);
1119 filtered = 1;
1120 }
1121 if(filtered)
1122 continue;
1123 }
1124*/
Marc Kupietz969cab92019-08-05 11:13:42 +02001125 chosen[i++] = c;
1126 HV *hash = newHV();
1127 SV *word = newSVpvf(&vocab[best[a].wordi * max_w], 0);
1128 AV *heat = newAV();
1129 if (latin_enc == 0) SvUTF8_on(word);
1130 hv_store(hash, "word", strlen("word"), word, 0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001131 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
1132 hv_store(hash, "average", strlen("average"), newSVnv(best[a].average), 0);
1133 hv_store(hash, "prob", strlen("prob"), newSVnv(best[a].probability), 0);
1134 hv_store(hash, "cprob", strlen("cprob"), newSVnv(best[a].cprobability_sum), 0);
Marc Kupietz969cab92019-08-05 11:13:42 +02001135 hv_store(hash, "max", strlen("max"), newSVnv(best[a].max_activation), 0); // newSVnv(target_sums[best[a].wordi]), 0);
1136 hv_store(hash, "overall", strlen("overall"), newSVnv(best[a].activation_sum / total_activation), 0); // newSVnv(target_sums[best[a].wordi]), 0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001137 hv_store(hash, "pos", strlen("pos"), newSVnv(best[a].position), 0);
Marc Kupietz969cab92019-08-05 11:13:42 +02001138 best[a].heat[5] = 0;
1139 for (i = 10; i >= 0; i--) av_push(heat, newSVnv(best[a].heat[i]));
1140 hv_store(hash, "heat", strlen("heat"), newRV_noinc((SV *)heat), 0);
1141 av_push(array, newRV_noinc((SV *)hash));
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001142 }
Marc Kupietz969cab92019-08-05 11:13:42 +02001143 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV *)array), 0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001144 }
1145end:
1146 // words = old_words; // why was this here?
Marc Kupietz969cab92019-08-05 11:13:42 +02001147 free(best);
1148 return newRV_noinc((SV *)result);
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001149}
1150
1151int dump_vecs(char *fname) {
Marc Kupietz969cab92019-08-05 11:13:42 +02001152 long i, j;
1153 FILE *f;
1154 /* if(words>100000)
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001155 words=100000;
1156*/
Marc Kupietz969cab92019-08-05 11:13:42 +02001157 if ((f = fopen(fname, "w")) == NULL) {
1158 fprintf(stderr, "cannot open %s for writing\n", fname);
1159 return (-1);
1160 }
1161 fprintf(f, "%lld %lld\n", words, size);
1162 for (i = 0; i < words; i++) {
1163 fprintf(f, "%s ", &vocab[i * max_w]);
1164 for (j = 0; j < size - 1; j++)
1165 fprintf(f, "%f ", M[i * size + j]);
1166 fprintf(f, "%f\n", M[i * size + j]);
1167 }
1168 fclose(f);
1169 return (0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001170}
1171
1172int dump_for_numpy(char *fname) {
Marc Kupietz969cab92019-08-05 11:13:42 +02001173 long i, j;
1174 FILE *f;
Marc Kupietzc0d41872021-02-25 16:33:22 +01001175 int max = words; // 300000;
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001176
Marc Kupietz969cab92019-08-05 11:13:42 +02001177 if ((f = fopen(fname, "w")) == NULL) {
1178 fprintf(stderr, "cannot open %s for writing\n", fname);
1179 return (-1);
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001180 }
Marc Kupietz969cab92019-08-05 11:13:42 +02001181 for (i = 0; i < max; i++) {
1182 for (j = 0; j < size - 1; j++)
1183 fprintf(f, "%f\t", M[i * size + j]);
1184 fprintf(f, "%f\n", M[i * size + j]);
1185 printf("%s\r\n", &vocab[i * max_w]);
1186 }
1187 if (merged_end > 0) {
1188 for (i = 0; i < max; i++) {
1189 for (j = 0; j < size - 1; j++)
1190 fprintf(f, "%f\t", M[(merged_end + i) * size + j]);
1191 fprintf(f, "%f\n", M[(merged_end + i) * size + j]);
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001192 printf("_%s\r\n", &vocab[i * max_w]);
1193 }
Marc Kupietz969cab92019-08-05 11:13:42 +02001194 }
1195 fclose(f);
1196 return (0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001197}