blob: 2234c66af8b1fed6defe4b85fcb9c9adc62ba03a [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;
Marc Kupietz59865a92021-03-11 17:16:51 +0100132 long long a, b;
Marc Kupietz969cab92019-08-05 11:13:42 +0200133 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 Kupietz59865a92021-03-11 17:16:51 +0100267 FILE *f;
268 int binwords_fd, binvecs_fd;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200269 float *merge_vecs;
270 char *merge_vocab;
Marc Kupietz969cab92019-08-05 11:13:42 +0200271 /* long long merge_words, merge_size; */
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200272 long long merge_size;
273
Marc Kupietz969cab92019-08-05 11:13:42 +0200274 char binvecs_fname[256], binwords_fname[256];
Marc Kupietzc0d41872021-02-25 16:33:22 +0100275
276
Marc Kupietz969cab92019-08-05 11:13:42 +0200277 strcpy(binwords_fname, file_name);
278 strcat(binwords_fname, ".words");
279 strcpy(binvecs_fname, file_name);
280 strcat(binvecs_fname, ".vecs");
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200281
282 f = fopen(file_name, "rb");
283 if (f == NULL) {
284 printf("Input file %s not found\n", file_name);
Marc Kupietz59865a92021-03-11 17:16:51 +0100285 exit(-1);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200286 }
287 fscanf(f, "%lld", &merge_words);
288 fscanf(f, "%lld", &merge_size);
Marc Kupietz969cab92019-08-05 11:13:42 +0200289 if (merge_size != size) {
290 fprintf(stderr, "vectors must have the same length\n");
291 exit(-1);
292 }
293 if ((binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
294 merge_vecs = malloc(sizeof(float) * (words + merge_words) * size);
295 merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200296 if (merge_vecs == NULL || merge_vocab == NULL) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200297 close(binvecs_fd);
298 close(binwords_fd);
299 fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname);
300 exit(-1);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200301 }
302 read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float));
303 read(binwords_fd, merge_vocab, merge_words * max_w);
Marc Kupietz969cab92019-08-05 11:13:42 +0200304 } else {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200305 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
306 exit(-1);
Marc Kupietz969cab92019-08-05 11:13:42 +0200307 }
308 printf("Successfully reallocated memory\nMerging...\n");
309 fflush(stdout);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200310 memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float));
311 memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w);
312 munmap(M, words * size * sizeof(float));
313 munmap(vocab, words * max_w);
314 M = merge_vecs;
315 vocab = merge_vocab;
316 merged_end = merge_words;
317 words += merge_words;
318 fclose(f);
Marc Kupietz969cab92019-08-05 11:13:42 +0200319 printf("merged_end: %lld, words: %lld\n", merged_end, words);
320 //printBiggestMergedDifferences();
321 return ((long)merged_end);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200322}
323
324void filter_garbage() {
325 long i;
326 unsigned char *w, previous, c;
327 garbage = malloc(words);
328 memset(garbage, 0, words);
329 for (i = 0; i < words; i++) {
Marc Kupietz59865a92021-03-11 17:16:51 +0100330 w = (unsigned char *) vocab + i * max_w;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200331 previous = 0;
Marc Kupietz59865a92021-03-11 17:16:51 +0100332 if (strncmp("quot", (const char *)w, 4) == 0) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200333 garbage[i] = 1;
334 // printf("Gargabe: %s\n", vocab + i * max_w);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200335 } else {
Marc Kupietz969cab92019-08-05 11:13:42 +0200336 while ((c = *w++) && !garbage[i]) {
337 if (((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) ||
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200338 (previous == '-' && (c & 32)) ||
Marc Kupietz969cab92019-08-05 11:13:42 +0200339 (previous == 0xc2 && (c == 0xa4 || c == 0xb6)) ||
340 (previous == 'q' && c == 'u' && *(w) == 'o' && *(w + 1) == 't') || /* quot */
341 c == '<') {
342 garbage[i] = 1;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200343 continue;
344 }
345 previous = c;
346 }
347 }
348 }
349 return;
350}
351
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200352knn *simpleGetCollocators(int word, int number, long cutoff, int *result) {
353 knnpars *pars = calloc(sizeof(knnpars), 1);
Marc Kupietz59865a92021-03-11 17:16:51 +0100354 float *target_sums = NULL;
355 float *my_window_sums = malloc(sizeof(float) * (window + 1) * 2);
Marc Kupietz969cab92019-08-05 11:13:42 +0200356 pars->cutoff = (cutoff ? cutoff : 300000);
Marc Kupietz59865a92021-03-11 17:16:51 +0100357 long a;
Marc Kupietz969cab92019-08-05 11:13:42 +0200358 for (a = 0; a < cutoff; a++)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200359 target_sums[a] = 0;
360 pars->target_sums = target_sums;
Marc Kupietz59865a92021-03-11 17:16:51 +0100361 pars->window_sums = my_window_sums;
Marc Kupietz969cab92019-08-05 11:13:42 +0200362 pars->N = (number ? number : 20);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200363 pars->from = 0;
Marc Kupietz969cab92019-08-05 11:13:42 +0200364 pars->upto = window * 2 - 1;
365 knn *syn_nbs = NULL; // = (knn*) getCollocators(pars);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200366 free(pars);
Marc Kupietz59865a92021-03-11 17:16:51 +0100367 free(my_window_sums);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200368 free(target_sums);
369 return syn_nbs;
370}
371
372void *getCollocators(void *args) {
373 knnpars *pars = args;
Marc Kupietz969cab92019-08-05 11:13:42 +0200374 int N = pars->N;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200375
376 int cc = pars->wl->wordi[0];
Marc Kupietz969cab92019-08-05 11:13:42 +0200377 knn *nbs = NULL;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200378 long window_layer_size = size * window * 2;
Marc Kupietz59865a92021-03-11 17:16:51 +0100379 long a, b, c, d, window_offset, target, max_target = 0, maxmax_target;
Marc Kupietz969cab92019-08-05 11:13:42 +0200380 float f, max_f, maxmax_f;
381 float *target_sums = NULL, worstbest, wpos_sum;
382 collocator *best;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200383
Marc Kupietz969cab92019-08-05 11:13:42 +0200384 if (M2 == NULL || cc == -1)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200385 return NULL;
386
Marc Kupietz969cab92019-08-05 11:13:42 +0200387 a = posix_memalign((void **)&target_sums, 128, pars->cutoff * sizeof(float));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200388 memset(target_sums, 0, pars->cutoff * sizeof(float));
Marc Kupietz969cab92019-08-05 11:13:42 +0200389 best = malloc((N > 200 ? N : 200) * sizeof(collocator));
390 memset(best, 0, (N > 200 ? N : 200) * sizeof(collocator));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200391 worstbest = pars->threshold;
392
393 for (b = 0; b < pars->cutoff; b++)
Marc Kupietz969cab92019-08-05 11:13:42 +0200394 target_sums[b] = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200395 for (b = 0; b < N; b++) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200396 best[b].wordi = -1;
397 best[b].probability = 1;
398 best[b].activation = worstbest;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200399 }
400
401 d = cc;
402 maxmax_f = -1;
403 maxmax_target = 0;
404
405 for (a = pars->from; a < pars->upto; a++) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200406 if (a >= window)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200407 a++;
408 wpos_sum = 0;
409 printf("window pos: %ld\n", a);
410 if (a != window) {
411 max_f = -1;
412 window_offset = a * size;
413 if (a > window)
414 window_offset -= size;
Marc Kupietz969cab92019-08-05 11:13:42 +0200415 for (target = 0; target < pars->cutoff; target++) {
416 if (garbage && garbage[target]) continue;
417 if (target == d)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200418 continue;
419 f = 0;
420 for (c = 0; c < size; c++)
Marc Kupietz969cab92019-08-05 11:13:42 +0200421 f += M2[d * size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200422 if (f < -MAX_EXP)
423 continue;
424 else if (f > MAX_EXP)
425 continue;
426 else
Marc Kupietz969cab92019-08-05 11:13:42 +0200427 f = expTable[(int)((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200428 wpos_sum += f;
429
430 target_sums[target] += f;
Marc Kupietz969cab92019-08-05 11:13:42 +0200431 if (f > worstbest) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200432 for (b = 0; b < N; b++) {
433 if (f > best[b].activation) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200434 memmove(best + b + 1, best + b, (N - b - 1) * sizeof(collocator));
435 best[b].activation = f;
436 best[b].wordi = target;
437 best[b].position = window - a;
438 break;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200439 }
440 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200441 if (b == N - 1)
442 worstbest = best[N - 1].activation;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200443 }
444 }
Marc Kupietz59865a92021-03-11 17:16:51 +0100445 printf("%ld %.2f\n", max_target, max_f);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200446 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
Marc Kupietz969cab92019-08-05 11:13:42 +0200447 if (max_f > maxmax_f) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200448 maxmax_f = max_f;
449 maxmax_target = max_target;
450 }
451 for (b = 0; b < N; b++)
Marc Kupietz969cab92019-08-05 11:13:42 +0200452 if (best[b].position == window - a)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200453 best[b].cprobability = best[b].activation / wpos_sum;
454 } else {
Marc Kupietz969cab92019-08-05 11:13:42 +0200455 printf("\x1b[1m%s\x1b[0m ", &vocab[d * max_w]);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200456 }
457 pars->window_sums[a] = wpos_sum;
458 }
459 for (b = 0; b < pars->cutoff; b++)
Marc Kupietz969cab92019-08-05 11:13:42 +0200460 pars->target_sums[b] += target_sums[b]; //(target_sums[b] / wpos_sum ) / (window * 2);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200461
462 free(target_sums);
Marc Kupietz969cab92019-08-05 11:13:42 +0200463 for (b = 0; b < N && best[b].wordi >= 0; b++)
464 ;
Marc Kupietz59865a92021-03-11 17:16:51 +0100465 // THIS LOOP IS NEEDED (b...)
Marc Kupietz969cab92019-08-05 11:13:42 +0200466 // printf("%d: best syn: %s %.2f %.5f\n", b, &vocab[best[b].wordi*max_w], best[b].activation, best[b].probability);
467 // printf("\n");
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200468 nbs = malloc(sizeof(knn));
Marc Kupietz969cab92019-08-05 11:13:42 +0200469 nbs->best = best;
470 nbs->length = b - 1;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200471 pthread_exit(nbs);
472}
473
Marc Kupietz0efe49b2020-04-06 18:30:22 +0200474float getOutputWeight(int hidden, long target, int window_position) {
475 const long window_layer_size = size * window * 2;
476 int a;
477
478 if (window_position == 0 || window_position > window || window_position < -window) {
479 fprintf(stderr, "window_position: %d - assert: -%d <= window_position <= %d && window_position != 0 failed.\n", window_position, window, window);
480 exit(-1);
481 }
482
483 if (hidden >= size) {
Marc Kupietz59865a92021-03-11 17:16:51 +0100484 fprintf(stderr, "hidden: %d - assert: hidden < %lld failed.\n", hidden, size);
Marc Kupietz0efe49b2020-04-06 18:30:22 +0200485 exit(-1);
486 }
487
488 if (target >= words) {
Marc Kupietz59865a92021-03-11 17:16:51 +0100489 fprintf(stderr, "target: %ld - assert: target < %lld failed.\n", target, words);
Marc Kupietz0efe49b2020-04-06 18:30:22 +0200490 exit(-1);
491 }
492
493 a = window_position + window;
494 if (a > window) {
495 --a;
496 }
497 long window_offset = a * size;
498 return syn1neg_window[target * window_layer_size + window_offset + hidden];
499}
500
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200501AV *getVecs(AV *array) {
502 int i, b;
503 AV *result = newAV();
Marc Kupietz969cab92019-08-05 11:13:42 +0200504 for (i = 0; i <= av_len(array); i++) {
505 SV **elem = av_fetch(array, i, 0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200506 if (elem != NULL) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200507 long j = (long)SvNV(*elem);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200508 AV *vector = newAV();
509 for (b = 0; b < size; b++) {
510 av_push(vector, newSVnv(M[b + j * size]));
511 }
512 av_push(result, newRV_noinc(vector));
513 }
514 }
515 return result;
516}
517
518char *getSimilarProfiles(long node) {
519 int i;
520 char buffer[120000];
521 char pair_buffer[2048];
Marc Kupietz969cab92019-08-05 11:13:42 +0200522 buffer[0] = '[';
523 buffer[1] = 0;
524 if (node >= sprofiles_qty) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200525 printf("Not available in precomputed profile\n");
Marc Kupietz969cab92019-08-05 11:13:42 +0200526 return (strdup("[{\"w\":\"not available\", \"v\":0}]\n"));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200527 }
528
529 printf("******* %s ******\n", &vocab[max_w * node]);
Marc Kupietz969cab92019-08-05 11:13:42 +0200530
531 for (i = 0; i < 100 && i < sprofiles[node].len; i++) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200532 sprintf(pair_buffer, "{\"w\":\"%s\", \"v\":%f},", &vocab[max_w * (sprofiles[node].nbr[i].index)], sprofiles[node].nbr[i].value);
533 strcat(buffer, pair_buffer);
534 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200535 buffer[strlen(buffer) - 1] = ']';
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200536 strcat(buffer, "\n");
Marc Kupietz59865a92021-03-11 17:16:51 +0100537 printf("%s", buffer);
Marc Kupietz969cab92019-08-05 11:13:42 +0200538 return (strdup(buffer));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200539}
540
Marc Kupietzf6080012021-03-12 09:14:42 +0100541char *getCollocationScores(long node, long collocate) {
542 char *res = (cdb ? strdup(get_collocation_scores_as_json(cdb, node, collocate)) : "[]");
543 return res;
544}
545
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200546char *getClassicCollocators(long node) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200547 char *res = (cdb ? strdup(get_collocators_as_json(cdb, node)) : "[]");
548 return res;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200549}
550
551wordlist *getTargetWords(char *st1, int search_backw) {
552 wordlist *wl = malloc(sizeof(wordlist));
Marc Kupietz59865a92021-03-11 17:16:51 +0100553 char st[100][max_size];
Marc Kupietz969cab92019-08-05 11:13:42 +0200554 long a, b = 0, c = 0, cn = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200555
556 while (1) {
557 st[cn][b] = st1[c];
558 b++;
559 c++;
560 st[cn][b] = 0;
561 if (st1[c] == 0) break;
Marc Kupietzc0d41872021-02-25 16:33:22 +0100562 if (st1[c] == ' ' /*|| st1[c] == '-'*/) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200563 b = 0;
564 c++;
565 }
566 }
567 cn++;
568 for (a = 0; a < cn; a++) {
569 if (search_backw) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200570 for (b = words - 1; b >= (merge_words ? merge_words : 0) && strcmp(&vocab[b * max_w], st[a]) != 0; b--)
571 ;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200572 } else {
Marc Kupietz969cab92019-08-05 11:13:42 +0200573 for (b = 0; b < (merge_words ? merge_words : words) && strcmp(&vocab[b * max_w], st[a]) != 0; b++)
574 ;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200575 }
576 if (b == words) b = -1;
577 wl->wordi[a] = b;
578 if (b == -1) {
579 fprintf(stderr, "Out of dictionary word!\n");
580 cn--;
581 } else {
Marc Kupietz969cab92019-08-05 11:13:42 +0200582 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 +0200583 }
584 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200585 wl->length = cn;
586 return (wl);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200587}
588
Marc Kupietzcb43e492019-12-03 10:07:53 +0100589long getWordNumber(char *word) {
590 wordlist *wl = getTargetWords(word, 0);
591 if(wl->length > 0)
592 return(wl->wordi[0]);
593 return(0);
594}
595
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200596float get_distance(long b, long c) {
597 long a;
598 float dist = 0;
599 for (a = 0; a < size; a++) dist += M[a + c * size] * M[a + b * size];
600 return dist;
601}
602
Marc Kupietz969cab92019-08-05 11:13:42 +0200603char *getBiggestMergedDifferences() {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200604 static char *result = NULL;
Marc Kupietz59865a92021-03-11 17:16:51 +0100605 float dist;
606 long long a, c;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200607 int N = 1000;
608
Marc Kupietz969cab92019-08-05 11:13:42 +0200609 if (merged_end == 0)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200610 result = "[]";
Marc Kupietz969cab92019-08-05 11:13:42 +0200611
612 if (result != NULL)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200613 return result;
614
615 printf("Looking for biggest distances between main and merged vectors ...\n");
616 collocator *best;
617 best = malloc(N * sizeof(collocator));
618 memset(best, 0, N * sizeof(collocator));
619
Marc Kupietz969cab92019-08-05 11:13:42 +0200620 float worstbest = 1000000;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200621
622 for (a = 0; a < N; a++) best[a].activation = worstbest;
623
624 for (c = 0; c < 500000; c++) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200625 if (garbage && garbage[c]) continue;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200626 dist = 0;
Marc Kupietz969cab92019-08-05 11:13:42 +0200627 for (a = 0; a < size; a++) dist += M[a + c * size] * M[a + (c + merged_end) * size];
628 if (dist < worstbest) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200629 for (a = 0; a < N; a++) {
630 if (dist < best[a].activation) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200631 memmove(best + a + 1, best + a, (N - a - 1) * sizeof(collocator));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200632 best[a].activation = dist;
633 best[a].wordi = c;
634 break;
635 }
636 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200637 worstbest = best[N - 1].activation;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200638 }
639 }
640
Marc Kupietz969cab92019-08-05 11:13:42 +0200641 result = malloc(N * max_w);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200642 char *p = result;
Marc Kupietz969cab92019-08-05 11:13:42 +0200643 *p++ = '[';
644 *p = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200645 for (a = 0; a < N; a++) {
Marc Kupietz59865a92021-03-11 17:16:51 +0100646 p += sprintf(p, "{\"rank\":%lld,\"word\":\"%s\",\"dist\":%.3f},", a, &vocab[best[a].wordi * max_w], 1 - best[a].activation);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200647 }
648 *--p = ']';
Marc Kupietz969cab92019-08-05 11:13:42 +0200649 return (result);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200650}
651
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200652float cos_similarity(long b, long c) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200653 float dist = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200654 long a;
Marc Kupietz969cab92019-08-05 11:13:42 +0200655 for (a = 0; a < size; a++) dist += M[b * size + a] * M[c * size + a];
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200656 return dist;
657}
658
659char *cos_similarity_as_json(char *w1, char *w2) {
660 wordlist *a, *b;
661 float res;
662 a = getTargetWords(w1, 0);
663 b = getTargetWords(w2, 0);
Marc Kupietz969cab92019-08-05 11:13:42 +0200664 if (a == NULL || b == NULL || a->length != 1 || b->length != 1)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200665 res = -1;
666 else
667 res = cos_similarity(a->wordi[0], b->wordi[0]);
668 fprintf(stderr, "a: %lld b: %lld res:%f\n", a->wordi[0], b->wordi[0], res);
669 char *json = malloc(16);
670 sprintf(json, "%.5f", res);
671 return json;
672}
673
674void *_get_neighbours(void *arg) {
675 knnpars *pars = arg;
Marc Kupietz969cab92019-08-05 11:13:42 +0200676 int N = pars->N;
677 long from = pars->from;
678 unsigned long upto = pars->upto;
Marc Kupietz59865a92021-03-11 17:16:51 +0100679 char *sep;
Marc Kupietz969cab92019-08-05 11:13:42 +0200680 float dist, len, vec[max_size];
Marc Kupietz59865a92021-03-11 17:16:51 +0100681 long long a, b, c, cn, *bi;
Marc Kupietz969cab92019-08-05 11:13:42 +0200682 knn *nbs = NULL;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200683 wordlist *wl = pars->wl;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200684
Marc Kupietz969cab92019-08-05 11:13:42 +0200685 collocator *best = pars->best;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200686
Marc Kupietz969cab92019-08-05 11:13:42 +0200687 float worstbest = -1;
688
689 for (a = 0; a < N; a++) best[a].activation = 0;
690 a = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200691 bi = wl->wordi;
Marc Kupietz969cab92019-08-05 11:13:42 +0200692 cn = wl->length;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200693 sep = wl->sep;
Marc Kupietz969cab92019-08-05 11:13:42 +0200694 b = bi[0];
Marc Kupietz969cab92019-08-05 11:13:42 +0200695 if (b == -1) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200696 goto end;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200697 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200698 for (a = 0; a < size; a++) vec[a] = 0;
699 for (b = 0; b < cn; b++) {
700 if (bi[b] == -1) continue;
701 if (b > 0 && sep[b - 1] == '-')
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200702 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
703 else
704 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietz969cab92019-08-05 11:13:42 +0200705 }
706 len = 0;
707 for (a = 0; a < size; a++) len += vec[a] * vec[a];
708 len = sqrt(len);
709 for (a = 0; a < size; a++) vec[a] /= len;
710 for (a = 0; a < N; a++) best[a].activation = -1;
711 for (c = from; c < upto; c++) {
712 if (garbage && garbage[c]) continue;
713 a = 0;
714 // do not skip taget word
715 // for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
716 // if (a == 1) continue;
717 dist = 0;
718 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
719 if (dist > worstbest) {
720 for (a = 0; a < N; a++) {
721 if (dist > best[a].activation) {
722 memmove(best + a + 1, best + a, (N - a - 1) * sizeof(collocator));
723 best[a].activation = dist;
724 best[a].wordi = c;
725 break;
726 }
727 }
728 worstbest = best[N - 1].activation;
729 }
730 }
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200731
732end:
Marc Kupietz969cab92019-08-05 11:13:42 +0200733 pthread_exit(nbs);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200734}
735
Marc Kupietz969cab92019-08-05 11:13:42 +0200736int cmp_activation(const void *a, const void *b) {
737 float fb = ((collocator *)a)->activation;
738 float fa = ((collocator *)b)->activation;
739 return (fa > fb) - (fa < fb);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200740}
741
Marc Kupietz969cab92019-08-05 11:13:42 +0200742int cmp_probability(const void *a, const void *b) {
743 float fb = ((collocator *)a)->probability;
744 float fa = ((collocator *)b)->probability;
745 return (fa > fb) - (fa < fb);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200746}
747
Marc Kupietz969cab92019-08-05 11:13:42 +0200748char *getPosWiseW2VCollocatorsAsTsv(char *word, long maxPerPos, long cutoff, float threshold) {
749 HV *result = newHV();
Marc Kupietz59865a92021-03-11 17:16:51 +0100750 float *target_sums = NULL;
751 long a, b;
Marc Kupietz969cab92019-08-05 11:13:42 +0200752 knn *para_nbs[MAX_THREADS];
753 knn *syn_nbs[MAX_THREADS];
754 knnpars pars[MAX_THREADS];
755 pthread_t *pt = (pthread_t *)malloc((num_threads + 1) * sizeof(pthread_t));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200756 wordlist *wl;
Marc Kupietz969cab92019-08-05 11:13:42 +0200757 int syn_threads = (M2 ? window * 2 : 0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200758 int search_backw = 0;
759 collocator *best = NULL;
Marc Kupietz969cab92019-08-05 11:13:42 +0200760 posix_memalign((void **)&best, 128, 10 * (maxPerPos >= 200 ? maxPerPos : 200) * sizeof(collocator));
761 memset(best, 0, (maxPerPos >= 200 ? maxPerPos : 200) * sizeof(collocator));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200762
Marc Kupietz969cab92019-08-05 11:13:42 +0200763 if (cutoff < 1 || cutoff > words)
764 cutoff = words;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200765
766 wl = getTargetWords(word, search_backw);
Marc Kupietz969cab92019-08-05 11:13:42 +0200767 if (wl == NULL || wl->length < 1)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200768 return "";
769
Marc Kupietz969cab92019-08-05 11:13:42 +0200770 a = posix_memalign((void **)&target_sums, 128, cutoff * sizeof(float));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200771 memset(target_sums, 0, cutoff * sizeof(float));
772
773 printf("Starting %d threads\n", syn_threads);
774 fflush(stdout);
Marc Kupietz969cab92019-08-05 11:13:42 +0200775 for (a = 0; a < syn_threads; a++) {
776 pars[a].cutoff = cutoff;
777 pars[a].target_sums = target_sums;
778 pars[a].window_sums = window_sums;
779 pars[a].wl = wl;
780 pars[a].N = maxPerPos;
781 pars[a].threshold = threshold;
782 pars[a].from = a;
783 pars[a].upto = a + 1;
784 pthread_create(&pt[a], NULL, getCollocators, (void *)&pars[a]);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200785 }
786 printf("Waiting for syn threads to join\n");
787 fflush(stdout);
Marc Kupietz969cab92019-08-05 11:13:42 +0200788 for (a = 0; a < syn_threads; a++) pthread_join(pt[a], (void *)&syn_nbs[a]);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200789 printf("Syn threads joint\n");
790 fflush(stdout);
Marc Kupietz969cab92019-08-05 11:13:42 +0200791 result = malloc(maxPerPos * 80 * syn_threads);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200792 char *p = result;
793 *p = 0;
Marc Kupietz969cab92019-08-05 11:13:42 +0200794 for (a = syn_threads - 1; a >= 0; a--) {
795 for (b = 0; b < syn_nbs[a]->length; b++) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200796 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);
797 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200798 }
799 return (result);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200800}
801
802SV *get_neighbours(char *st1, int N, int sort_by, int search_backw, long cutoff, int dedupe, int no_similar_profiles) {
803 HV *result = newHV();
Marc Kupietz59865a92021-03-11 17:16:51 +0100804 float *target_sums = NULL;
Marc Kupietz969cab92019-08-05 11:13:42 +0200805 long a, b, c, d, slice;
806 knn *para_nbs[MAX_THREADS];
807 knn *syn_nbs[MAX_THREADS];
808 knnpars pars[MAX_THREADS];
809 pthread_t *pt = (pthread_t *)malloc((num_threads + 1) * sizeof(pthread_t));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200810 wordlist *wl;
Marc Kupietz969cab92019-08-05 11:13:42 +0200811 int syn_threads = (M2 ? window * 2 : 0);
812 int para_threads = (no_similar_profiles ? 0 : num_threads - syn_threads);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200813
814 collocator *best = NULL;
Marc Kupietz969cab92019-08-05 11:13:42 +0200815 posix_memalign((void **)&best, 128, 10 * (N >= 200 ? N : 200) * sizeof(collocator));
816 memset(best, 0, (N >= 200 ? N : 200) * sizeof(collocator));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200817
Marc Kupietz969cab92019-08-05 11:13:42 +0200818 if (N > MAX_NEIGHBOURS) N = MAX_NEIGHBOURS;
819
820 if (cutoff < 1 || cutoff > words)
821 cutoff = words;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200822
823 wl = getTargetWords(st1, search_backw);
Marc Kupietz969cab92019-08-05 11:13:42 +0200824 if (wl == NULL || wl->length < 1)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200825 goto end;
826
Marc Kupietz969cab92019-08-05 11:13:42 +0200827 slice = cutoff / para_threads;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200828
Marc Kupietz969cab92019-08-05 11:13:42 +0200829 a = posix_memalign((void **)&target_sums, 128, cutoff * sizeof(float));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200830 memset(target_sums, 0, cutoff * sizeof(float));
831
Marc Kupietzc0d41872021-02-25 16:33:22 +0100832 printf("Starting %d threads for paradigmatic search\n", para_threads);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200833 fflush(stdout);
Marc Kupietz969cab92019-08-05 11:13:42 +0200834 for (a = 0; a < para_threads; a++) {
835 pars[a].cutoff = cutoff;
836 pars[a].token = st1;
837 pars[a].wl = wl;
838 pars[a].N = N;
839 pars[a].best = &best[N * a];
840 if (merge_words == 0 || search_backw == 0) {
841 pars[a].from = a * slice;
842 pars[a].upto = ((a + 1) * slice > cutoff ? cutoff : (a + 1) * slice);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200843 } else {
844 pars[a].from = merge_words + a * slice;
Marc Kupietz969cab92019-08-05 11:13:42 +0200845 pars[a].upto = merge_words + ((a + 1) * slice > cutoff ? cutoff : (a + 1) * slice);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200846 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200847 printf("From: %ld, Upto: %ld\n", pars[a].from, pars[a].upto);
848 pthread_create(&pt[a], NULL, _get_neighbours, (void *)&pars[a]);
849 }
850 if (M2) {
851 for (a = 0; a < syn_threads; a++) {
852 pars[a + para_threads].cutoff = cutoff;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200853 pars[a + para_threads].target_sums = target_sums;
854 pars[a + para_threads].window_sums = window_sums;
855 pars[a + para_threads].wl = wl;
856 pars[a + para_threads].N = N;
857 pars[a + para_threads].threshold = MIN_RESP;
858 pars[a + para_threads].from = a;
Marc Kupietz969cab92019-08-05 11:13:42 +0200859 pars[a + para_threads].upto = a + 1;
860 pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *)&pars[a + para_threads]);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200861 }
862 }
863 printf("Waiting for para threads to join\n");
864 fflush(stdout);
Marc Kupietz969cab92019-08-05 11:13:42 +0200865 for (a = 0; a < para_threads; a++) pthread_join(pt[a], (void *)&para_nbs[a]);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200866 printf("Para threads joint\n");
867 fflush(stdout);
868
Marc Kupietz969cab92019-08-05 11:13:42 +0200869 /* if(!syn_nbs[0]) */
870 /* goto end; */
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200871
Marc Kupietz969cab92019-08-05 11:13:42 +0200872 qsort(best, N * para_threads, sizeof(collocator), cmp_activation);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200873
874 long long chosen[MAX_NEIGHBOURS];
Marc Kupietz59865a92021-03-11 17:16:51 +0100875 printf("N: %d\n", N);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200876
Marc Kupietz969cab92019-08-05 11:13:42 +0200877 AV *array = newAV();
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200878 int i, j;
Marc Kupietz969cab92019-08-05 11:13:42 +0200879 int l1_words = 0, l2_words = 0;
880
881 for (a = 0, i = 0; i < N && a < N * para_threads; a++) {
882 int filtered = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200883 long long c = best[a].wordi;
884 if ((merge_words && dedupe && i > 1) || (!merge_words && dedupe && i > 0)) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200885 for (j = 0; j < i && !filtered; j++)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200886 if (strcasestr(&vocab[c * max_w], &vocab[chosen[j] * max_w]) ||
887 strcasestr(&vocab[chosen[j] * max_w], &vocab[c * max_w])) {
Marc Kupietz969cab92019-08-05 11:13:42 +0200888 printf("filtering %s %s\n", &vocab[chosen[j] * max_w], &vocab[c * max_w]);
889 filtered = 1;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200890 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200891 if (filtered)
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200892 continue;
893 }
894
Marc Kupietz969cab92019-08-05 11:13:42 +0200895 if (0 && merge_words > 0) {
896 if (c >= merge_words) {
897 if (l1_words > N / 2)
898 continue;
899 else
900 l1_words++;
901 } else {
902 if (l2_words > N / 2)
903 continue;
904 else
905 l2_words++;
906 }
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200907 }
908
Marc Kupietz969cab92019-08-05 11:13:42 +0200909 // printf("%s l1:%d l2:%d i:%d a:%ld\n", &vocab[c * max_w], l1_words, l2_words, i, a);
910 // fflush(stdout);
911 HV *hash = newHV();
912 SV *word = newSVpvf(&vocab[c * max_w], 0);
913 chosen[i] = c;
914 if (latin_enc == 0) SvUTF8_on(word);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200915 fflush(stdout);
Marc Kupietz969cab92019-08-05 11:13:42 +0200916 hv_store(hash, "word", strlen("word"), word, 0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200917 hv_store(hash, "dist", strlen("dist"), newSVnv(best[a].activation), 0);
918 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
919 AV *vector = newAV();
920 for (b = 0; b < size; b++) {
921 av_push(vector, newSVnv(M[b + best[a].wordi * size]));
922 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200923 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV *)vector), 0);
924 av_push(array, newRV_noinc((SV *)hash));
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200925 i++;
926 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200927 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV *)array), 0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200928
Marc Kupietz969cab92019-08-05 11:13:42 +0200929 for (b = 0; b < MAX_NEIGHBOURS; b++) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200930 best[b].wordi = -1L;
931 best[b].activation = 0;
932 best[b].probability = 0;
933 best[b].position = 0;
934 best[b].activation_sum = 0;
Marc Kupietz969cab92019-08-05 11:13:42 +0200935 memset(best[b].heat, 0, sizeof(float) * 16);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200936 }
937
Marc Kupietz969cab92019-08-05 11:13:42 +0200938 float total_activation = 0;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200939
940 if (M2) {
941 printf("Waiting for syn threads to join\n");
942 fflush(stdout);
Marc Kupietz969cab92019-08-05 11:13:42 +0200943 for (a = 0; a < syn_threads; a++) pthread_join(pt[a + para_threads], (void *)&syn_nbs[a]);
944 for (a = 0; a <= syn_threads; a++) {
945 if (a == window) continue;
946 total_activation += window_sums[a];
Marc Kupietz59865a92021-03-11 17:16:51 +0100947 printf("window pos: %ld, sum: %f\n", a, window_sums[a]);
Marc Kupietz969cab92019-08-05 11:13:42 +0200948 }
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200949 printf("syn threads joint\n");
950 fflush(stdout);
951
Marc Kupietz969cab92019-08-05 11:13:42 +0200952 for (b = 0; b < syn_nbs[0]->length; b++) {
953 memcpy(best + b, &syn_nbs[0]->best[b], sizeof(collocator));
954 best[b].position = -1; // syn_nbs[0]->pos[b];
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200955 best[b].activation_sum = target_sums[syn_nbs[0]->best[b].wordi];
Marc Kupietz969cab92019-08-05 11:13:42 +0200956 best[b].max_activation = 0.0;
957 best[b].average = 0.0;
958 best[b].probability = 0.0;
959 best[b].cprobability = syn_nbs[0]->best[b].cprobability;
960 memset(best[b].heat, 0, sizeof(float) * 16);
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200961 }
Marc Kupietz969cab92019-08-05 11:13:42 +0200962
963 float best_window_sum[MAX_NEIGHBOURS];
Marc Kupietz59865a92021-03-11 17:16:51 +0100964 int found_index = 0, i = 0, w;
Marc Kupietz969cab92019-08-05 11:13:42 +0200965 for (a = 0; a < syn_threads; a++) {
966 for (b = 0; b < syn_nbs[a]->length; b++) {
967 for (i = 0; i < found_index; i++)
968 if (best[i].wordi == syn_nbs[a]->best[b].wordi)
969 break;
970 if (i >= found_index) {
971 best[found_index].max_activation = 0.0;
972 best[found_index].average = 0.0;
973 best[found_index].probability = 0.0;
974 memset(best[found_index].heat, 0, sizeof(float) * 16);
975 best[found_index].cprobability = syn_nbs[a]->best[b].cprobability;
976 best[found_index].activation_sum = target_sums[syn_nbs[a]->best[b].wordi]; // syn_nbs[a]->best[b].activation_sum;
977 best[found_index++].wordi = syn_nbs[a]->best[b].wordi;
978 // printf("found: %s\n", &vocab[syn_nbs[a]->index[b] * max_w]);
979 }
980 }
981 }
982 sort_by = 0; // ALWAYS AUTO-FOCUS
983 if (sort_by != 1 && sort_by != 2) { // sort by auto focus mean
984 printf("window: %d - syn_threads: %d, %d\n", window, syn_threads, (1 << syn_threads) - 1);
985 int wpos;
Marc Kupietzf11d20c2019-08-02 15:42:04 +0200986 int bits_set = 0;
Marc Kupietz969cab92019-08-05 11:13:42 +0200987 for (i = 0; i < found_index; i++) {
988 best[i].activation = best[i].probability = best[i].average = best[i].cprobability_sum = 0;
989 for (w = 1; w < (1 << syn_threads); w++) { // loop through all possible windows
990 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 +0200991 bits_set = 0;
Marc Kupietz969cab92019-08-05 11:13:42 +0200992 for (a = 0; a < syn_threads; a++) {
993 if ((1 << a) & w) {
994 wpos = (a >= window ? a + 1 : a);
995 total_window_sum += window_sums[wpos];
996 }
997 }
998 // printf("%d window-sum %f\n", w, total_window_sum);
999 for (a = 0; a < syn_threads; a++) {
1000 if ((1 << a) & w) {
1001 wpos = (a >= window ? a + 1 : a);
1002 bits_set++;
1003 for (b = 0; b < syn_nbs[a]->length; b++)
1004 if (best[i].wordi == syn_nbs[a]->best[b].wordi) {
1005 // float acti = syn_nbs[a]->best[b].activation / total_window_sum;
1006 // word_window_sum += syn_nbs[a]->dist[b] * syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1007 // word_window_sum += syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1008 // 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 +02001009
Marc Kupietz969cab92019-08-05 11:13:42 +02001010 word_window_sum += syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b];
1011 // 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 +02001012
Marc Kupietz969cab92019-08-05 11:13:42 +02001013 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 +02001014 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 +02001015 word_activation_sum += syn_nbs[a]->best[b].activation;
1016 if (syn_nbs[a]->best[b].activation > best[i].max_activation)
1017 best[i].max_activation = syn_nbs[a]->best[b].activation;
1018 if (syn_nbs[a]->best[b].activation > best[i].heat[wpos])
1019 best[i].heat[wpos] = syn_nbs[a]->best[b].activation;
1020 }
1021 }
1022 }
1023 if (bits_set) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001024 word_window_average /= bits_set;
Marc Kupietz969cab92019-08-05 11:13:42 +02001025 // word_activation_sum /= bits_set;
1026 // word_window_sum /= bits_set;
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001027 }
1028
Marc Kupietz969cab92019-08-05 11:13:42 +02001029 word_window_sum /= total_window_sum;
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001030
Marc Kupietz969cab92019-08-05 11:13:42 +02001031 if (word_window_sum > best[i].probability) {
1032 // best[i].position = w;
1033 best[i].probability = word_window_sum;
1034 }
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001035
Marc Kupietz969cab92019-08-05 11:13:42 +02001036 if (word_cprobability_sum > best[i].cprobability_sum) {
1037 best[i].position = w;
1038 best[i].cprobability_sum = word_cprobability_sum;
1039 }
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001040
Marc Kupietz969cab92019-08-05 11:13:42 +02001041 best[i].average = word_window_average;
1042 // best[i].activation = word_activation_sum;
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001043 }
Marc Kupietz969cab92019-08-05 11:13:42 +02001044 }
1045 qsort(best, found_index, sizeof(collocator), cmp_probability);
1046 // for(i=0; i < found_index; i++) {
1047 // printf("found: %s - sum: %f - window: %d\n", &vocab[best[i].wordi * max_w], best[i].activation, best[i].position);
1048 // }
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001049
Marc Kupietz969cab92019-08-05 11:13:42 +02001050 } else if (sort_by == 1) { // responsiveness any window position
1051 int wpos;
1052 for (i = 0; i < found_index; i++) {
1053 float word_window_sum = 0, word_activation_sum = 0, total_window_sum = 0;
1054 for (a = 0; a < syn_threads; a++) {
1055 wpos = (a >= window ? a + 1 : a);
1056 for (b = 0; b < syn_nbs[a]->length; b++)
1057 if (best[i].wordi == syn_nbs[a]->best[b].wordi) {
1058 best[i].probability += syn_nbs[a]->best[b].probability;
1059 if (syn_nbs[a]->best[b].activation > 0.25)
1060 best[i].position |= 1 << wpos;
1061 if (syn_nbs[a]->best[b].activation > best[i].activation) {
1062 best[i].activation = syn_nbs[a]->best[b].activation;
1063 }
1064 }
1065 }
1066 }
1067 qsort(best, found_index, sizeof(collocator), cmp_activation);
1068 } else if (sort_by == 2) { // single window position
1069 for (a = 1; a < syn_threads; a++) {
1070 for (b = 0; b < syn_nbs[a]->length; b++) {
1071 for (c = 0; c < MAX_NEIGHBOURS; c++) {
1072 if (syn_nbs[a]->best[b].activation > best[c].activation) {
1073 for (d = MAX_NEIGHBOURS - 1; d > c; d--) {
1074 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001075 }
1076 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
Marc Kupietz969cab92019-08-05 11:13:42 +02001077 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 +02001078 break;
1079 }
1080 }
1081 }
1082 }
Marc Kupietz969cab92019-08-05 11:13:42 +02001083 } else { // sort by mean p
1084 for (a = 1; a < syn_threads; a++) {
1085 for (b = 0; b < syn_nbs[a]->length; b++) {
1086 for (c = 0; c < MAX_NEIGHBOURS; c++) {
1087 if (target_sums[syn_nbs[a]->best[b].wordi] > best[c].activation_sum) {
1088 for (d = MAX_NEIGHBOURS - 1; d > c; d--) {
1089 memmove(best + d, best + d - 1, sizeof(collocator));
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001090 }
1091 memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator));
Marc Kupietz969cab92019-08-05 11:13:42 +02001092 best[c].position = (1 << 2 * window) - 1; // syn_nbs[a]->pos[b];
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001093 best[c].activation_sum = target_sums[syn_nbs[a]->best[b].wordi];
1094 break;
1095 }
1096 }
1097 }
1098 }
1099 }
1100 array = newAV();
Marc Kupietz969cab92019-08-05 11:13:42 +02001101 for (a = 0, i = 0; a < MAX_NEIGHBOURS && best[a].wordi >= 0; a++) {
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001102 long long c = best[a].wordi;
Marc Kupietz969cab92019-08-05 11:13:42 +02001103 /*
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001104 if (dedupe) {
1105 int filtered=0;
1106 for (j=0; j<i; j++)
1107 if (strcasestr(&vocab[c * max_w], chosen[j]) ||
1108 strcasestr(chosen[j], &vocab[c * max_w])) {
1109 printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]);
1110 filtered = 1;
1111 }
1112 if(filtered)
1113 continue;
1114 }
1115*/
Marc Kupietz969cab92019-08-05 11:13:42 +02001116 chosen[i++] = c;
1117 HV *hash = newHV();
1118 SV *word = newSVpvf(&vocab[best[a].wordi * max_w], 0);
1119 AV *heat = newAV();
1120 if (latin_enc == 0) SvUTF8_on(word);
1121 hv_store(hash, "word", strlen("word"), word, 0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001122 hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0);
1123 hv_store(hash, "average", strlen("average"), newSVnv(best[a].average), 0);
1124 hv_store(hash, "prob", strlen("prob"), newSVnv(best[a].probability), 0);
1125 hv_store(hash, "cprob", strlen("cprob"), newSVnv(best[a].cprobability_sum), 0);
Marc Kupietz969cab92019-08-05 11:13:42 +02001126 hv_store(hash, "max", strlen("max"), newSVnv(best[a].max_activation), 0); // newSVnv(target_sums[best[a].wordi]), 0);
1127 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 +02001128 hv_store(hash, "pos", strlen("pos"), newSVnv(best[a].position), 0);
Marc Kupietz969cab92019-08-05 11:13:42 +02001129 best[a].heat[5] = 0;
1130 for (i = 10; i >= 0; i--) av_push(heat, newSVnv(best[a].heat[i]));
1131 hv_store(hash, "heat", strlen("heat"), newRV_noinc((SV *)heat), 0);
1132 av_push(array, newRV_noinc((SV *)hash));
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001133 }
Marc Kupietz969cab92019-08-05 11:13:42 +02001134 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV *)array), 0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001135 }
1136end:
Marc Kupietz969cab92019-08-05 11:13:42 +02001137 free(best);
1138 return newRV_noinc((SV *)result);
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001139}
1140
1141int dump_vecs(char *fname) {
Marc Kupietz969cab92019-08-05 11:13:42 +02001142 long i, j;
1143 FILE *f;
1144 /* if(words>100000)
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001145 words=100000;
1146*/
Marc Kupietz969cab92019-08-05 11:13:42 +02001147 if ((f = fopen(fname, "w")) == NULL) {
1148 fprintf(stderr, "cannot open %s for writing\n", fname);
1149 return (-1);
1150 }
1151 fprintf(f, "%lld %lld\n", words, size);
1152 for (i = 0; i < words; i++) {
1153 fprintf(f, "%s ", &vocab[i * max_w]);
1154 for (j = 0; j < size - 1; j++)
1155 fprintf(f, "%f ", M[i * size + j]);
1156 fprintf(f, "%f\n", M[i * size + j]);
1157 }
1158 fclose(f);
1159 return (0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001160}
1161
1162int dump_for_numpy(char *fname) {
Marc Kupietz969cab92019-08-05 11:13:42 +02001163 long i, j;
1164 FILE *f;
Marc Kupietzc0d41872021-02-25 16:33:22 +01001165 int max = words; // 300000;
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001166
Marc Kupietz969cab92019-08-05 11:13:42 +02001167 if ((f = fopen(fname, "w")) == NULL) {
1168 fprintf(stderr, "cannot open %s for writing\n", fname);
1169 return (-1);
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001170 }
Marc Kupietz969cab92019-08-05 11:13:42 +02001171 for (i = 0; i < max; i++) {
1172 for (j = 0; j < size - 1; j++)
1173 fprintf(f, "%f\t", M[i * size + j]);
1174 fprintf(f, "%f\n", M[i * size + j]);
1175 printf("%s\r\n", &vocab[i * max_w]);
1176 }
1177 if (merged_end > 0) {
1178 for (i = 0; i < max; i++) {
1179 for (j = 0; j < size - 1; j++)
1180 fprintf(f, "%f\t", M[(merged_end + i) * size + j]);
1181 fprintf(f, "%f\n", M[(merged_end + i) * size + j]);
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001182 printf("_%s\r\n", &vocab[i * max_w]);
1183 }
Marc Kupietz969cab92019-08-05 11:13:42 +02001184 }
1185 fclose(f);
1186 return (0);
Marc Kupietzf11d20c2019-08-02 15:42:04 +02001187}
Marc Kupietz043db152023-11-05 17:47:53 +01001188
1189unsigned long getVocabSize() {
1190 return (unsigned long) words;
1191}