blob: 566429073e41e9b66b936530c06053d31a9afa3b [file] [log] [blame]
Marc Kupietzdc22b982015-10-09 09:19:34 +02001#!/usr/local/bin/perl
2use Inline C;
3use Mojolicious::Lite;
Marc Kupietzc4893362016-02-25 08:04:46 +01004use Mojo::JSON qw(decode_json encode_json to_json);
Marc Kupietz247500f2015-10-09 11:29:01 +02005use Encode qw(decode encode);
Marc Kupietza5b90152016-03-15 17:39:19 +01006use Getopt::Std;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +01007use Mojo::Server::Daemon;
Marc Kupietzd4227392016-03-01 16:45:12 +01008plugin 'Log::Access';
Marc Kupietzdc22b982015-10-09 09:19:34 +02009
Marc Kupietza5b90152016-03-15 17:39:19 +010010our $opt_i = 0; # latin1-input?
11our $opt_l = undef;
12our $opt_p = 5676;
Marc Kupietz6b2975c2016-03-18 21:59:33 +010013our $opt_n = undef;
Marc Kupietza5b90152016-03-15 17:39:19 +010014
Marc Kupietz6b2975c2016-03-18 21:59:33 +010015getopt('il:p:n:');
Marc Kupietza5b90152016-03-15 17:39:19 +010016
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010017# -cbow 1 -size 200 -window 8 -negative 25 -hs 0 -sample 1e-4 -threads 40 -binary 1 -iter 15
Marc Kupietza5b90152016-03-15 17:39:19 +010018if(!$ARGV[0]) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010019 init_net("vectors15.bin", $opt_n, ($opt_i? 1 : 0));
Marc Kupietz2cb667e2016-03-10 09:44:12 +010020} else {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010021 init_net($ARGV[0], $opt_n, ($opt_i? 1 : 0));
Marc Kupietz2cb667e2016-03-10 09:44:12 +010022}
Marc Kupietzdc22b982015-10-09 09:19:34 +020023
Marc Kupietza5b90152016-03-15 17:39:19 +010024my $daemon = Mojo::Server::Daemon->new(
25 app => app,
26 listen => ['http://'.($opt_l ? $opt_l : '*').":$opt_p"]
27);
28
Marc Kupietzdc22b982015-10-09 09:19:34 +020029get '/' => sub {
30 my $c = shift;
31 my $word=$c->param('word');
Marc Kupietz44bee3c2016-02-25 16:26:29 +010032 my $no_nbs=$c->param('n') || 100;
33 my $no_iterations=$c->param('N') || 2000;
Marc Kupietzd4227392016-03-01 16:45:12 +010034 my $perplexity=$c->param('perplexity') || 20;
Marc Kupietzc4d62f82016-03-01 11:04:24 +010035 my $epsilon=$c->param('epsilon') || 5;
Marc Kupietzd7aea722016-03-02 11:59:12 +010036 my $som=$c->param('som') || 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +010037 my $res;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +010038 my @lists;
Marc Kupietz6b2975c2016-03-18 21:59:33 +010039 my @collocations;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010040 if(defined($word) && $word !~ /^\s*$/) {
41 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +010042 $word =~ s/\s+/ /g;
43 for my $w (split(' *\| *', $word)) {
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +010044 $c->app->log->debug('Looking for neighbours of '.$w);
Marc Kupietza5b90152016-03-15 17:39:19 +010045 if($opt_i) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010046 $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs);
Marc Kupietza5b90152016-03-15 17:39:19 +010047 } else {
Marc Kupietz6b2975c2016-03-18 21:59:33 +010048 $res = get_neighbours($w, $no_nbs);
Marc Kupietza5b90152016-03-15 17:39:19 +010049 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +010050 push(@lists, $res->{paradigmatic});
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +010051 }
Marc Kupietz247500f2015-10-09 11:29:01 +020052 }
Marc Kupietz000ad862016-02-26 14:59:12 +010053 $word =~ s/ *\| */ | /g;
Marc Kupietz6b2975c2016-03-18 21:59:33 +010054 $c->render(template=>"index", word=>$word, no_nbs=>$no_nbs, no_iterations => $no_iterations, epsilon=> $epsilon, perplexity=> $perplexity, show_som=>$som, lists=> \@lists, collocators=> $res->{syntagmatic});
Marc Kupietzdc22b982015-10-09 09:19:34 +020055};
56
Marc Kupietza5b90152016-03-15 17:39:19 +010057$daemon->run; # app->start;
Marc Kupietzdc22b982015-10-09 09:19:34 +020058
59exit;
60
61__END__
62
63__C__
64#include <stdio.h>
65#include <string.h>
66#include <math.h>
67#include <malloc.h>
68#include <stdlib.h> //strlen
Marc Kupietzf0809762016-02-26 10:13:47 +010069#include <sys/mman.h>
Marc Kupietz000ad862016-02-26 14:59:12 +010070#include <pthread.h>
Marc Kupietzdc22b982015-10-09 09:19:34 +020071
72#define max_size 2000
73#define max_w 50
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010074#define MAX_NEIGHBOURS 1000
Marc Kupietz44bee3c2016-02-25 16:26:29 +010075#define MAX_WORDS -1
Marc Kupietz000ad862016-02-26 14:59:12 +010076#define MAX_THREADS 100
Marc Kupietz6b2975c2016-03-18 21:59:33 +010077#define MAX_CC 50
78#define EXP_TABLE_SIZE 1000
79#define MAX_EXP 6
Marc Kupietzdc22b982015-10-09 09:19:34 +020080
81//the thread function
82void *connection_handler(void *);
Marc Kupietz000ad862016-02-26 14:59:12 +010083
84typedef struct {
85 long long *index;
86 float *dist;
Marc Kupietzb864ccf2016-03-21 22:40:03 +010087 float *norm;
Marc Kupietz6b2975c2016-03-18 21:59:33 +010088 long long *pos;
Marc Kupietz000ad862016-02-26 14:59:12 +010089 unsigned int length;
90} knn;
91
92
93typedef struct {
Marc Kupietz48c29682016-03-19 11:30:43 +010094 long long wordi[MAX_NEIGHBOURS];
95 char sep[MAX_NEIGHBOURS];
96 int length;
97} wordlist;
98
99typedef struct {
100 wordlist *wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100101 char *token;
102 int N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100103 long from;
Marc Kupietz000ad862016-02-26 14:59:12 +0100104 unsigned long upto;
105} knnpars;
106
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100107float *M, *syn1neg_window, *expTable;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200108char *vocab;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100109
Marc Kupietz82b02672016-02-26 12:32:25 +0100110long long words, size;
Marc Kupietz000ad862016-02-26 14:59:12 +0100111int num_threads=20;
Marc Kupietza5b90152016-03-15 17:39:19 +0100112int latin_enc=0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100113int window;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200114
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100115int init_net(char *file_name, char *net_name, int latin) {
Marc Kupietz67c20282016-02-26 09:42:00 +0100116 FILE *f, *binvecs, *binwords;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100117 int binwords_fd, binvecs_fd, net_fd, i;
Marc Kupietz82b02672016-02-26 12:32:25 +0100118 long long a, b, c, d, cn;
119 float len;
120
Marc Kupietz67c20282016-02-26 09:42:00 +0100121 char binvecs_fname[256], binwords_fname[256];
122 strcpy(binwords_fname, file_name);
123 strcat(binwords_fname, ".words");
124 strcpy(binvecs_fname, file_name);
125 strcat(binvecs_fname, ".vecs");
Marc Kupietzdc22b982015-10-09 09:19:34 +0200126
Marc Kupietza5b90152016-03-15 17:39:19 +0100127 latin_enc = latin;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200128 f = fopen(file_name, "rb");
129 if (f == NULL) {
130 printf("Input file %s not found\n", file_name);
131 return -1;
132 }
133 fscanf(f, "%lld", &words);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100134 if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200135 fscanf(f, "%lld", &size);
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100136 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) {
137 printf("Converting %s to memory mappable structures\n", file_name);
Marc Kupietzf0809762016-02-26 10:13:47 +0100138 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
139 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
140 if (M == NULL) {
141 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
142 return -1;
143 }
Marc Kupietz67c20282016-02-26 09:42:00 +0100144 for (b = 0; b < words; b++) {
145 a = 0;
146 while (1) {
147 vocab[b * max_w + a] = fgetc(f);
148 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
149 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
150 }
151 vocab[b * max_w + a] = 0;
152 fread(&M[b * size], sizeof(float), size, f);
153 len = 0;
154 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
155 len = sqrt(len);
156 for (a = 0; a < size; a++) M[a + b * size] /= len;
157 }
158 if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) {
159 fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs);
160 fclose(binvecs);
161 fwrite(vocab, sizeof(char), (long long)words * max_w, binwords);
162 fclose(binwords);
163 }
Marc Kupietz2cb667e2016-03-10 09:44:12 +0100164 }
165 if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) {
166 M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0);
167 vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0);
168 if (M == MAP_FAILED || vocab == MAP_FAILED) {
169 close(binvecs_fd);
170 close(binwords_fd);
171 fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname);
172 exit(-1);
173 }
174 } else {
175 fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname);
176 exit(-1);
Marc Kupietz67c20282016-02-26 09:42:00 +0100177 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200178 fclose(f);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100179
180 if(net_name) {
181 if( (net_fd = open(net_name, O_RDONLY)) >= 0) {
182 window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2;
183 // lseek(net_fd, sizeof(float) * words * size, SEEK_SET);
184 munmap(M, sizeof(float) * words * size);
185 M = mmap(0, sizeof(float) * words * size + sizeof(float) * 2 * window * size * words, PROT_READ, MAP_SHARED, net_fd, 0);
186 if (M == MAP_FAILED) {
187 close(net_fd);
188 fprintf(stderr, "Cannot mmap %s\n", net_name);
189 exit(-1);
190 }
191 syn1neg_window = M + words * size;
192 } else {
193 fprintf(stderr, "Cannot open %s\n", net_name);
194 exit(-1);
195 }
196 fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window);
197 }
198
199 expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float));
200 for (i = 0; i < EXP_TABLE_SIZE; i++) {
201 expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table
202 expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1)
203 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200204 return 0;
205}
206
Marc Kupietzd5642582016-03-19 22:23:13 +0100207knn *getCollocators(int cc, int N) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100208 knn *nbs = NULL;
209 long window_layer_size = size * window * 2;
210 long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target;
211 float f, max_f, maxmax_f;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100212 float *target_sums, *bestf, *bestn, worstbest, wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100213 long long *besti, *bestp;
Marc Kupietzd5642582016-03-19 22:23:13 +0100214
215 if(cc == -1)
216 return NULL;
217
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100218 a = posix_memalign((void **) &target_sums, 128, words * sizeof(float));
219 besti = malloc(N * sizeof(long long));
220 bestp = malloc(N * sizeof(long long));
221 bestf = malloc(N * sizeof(float));
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100222 bestn = malloc(N * sizeof(float));
223
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100224 for (b = 0; b < words; b++)
225 target_sums[b]=0;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100226 for (b = 0; b < N; b++) {
227 bestn[b] = 1;
228 bestf[b] = -1;
229 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100230 worstbest = -1;
231 d = cc;
232 maxmax_f = -1;
233 maxmax_target = 0;
234
Marc Kupietzd5642582016-03-19 22:23:13 +0100235 besti[0]=d;
236 bestf[0]=1.0;
237 bestp[0]=0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100238 for (a = window * 2 + 1; a >=0; a--) {
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100239 wpos_sum = 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100240 printf("window pos: %ld\n", a);
241 if (a != window) {
242 max_f = -1;
243 window_offset = a * size;
244 if (a > window)
245 window_offset -= size;
Marc Kupietz48c29682016-03-19 11:30:43 +0100246 for(target = 0; target < words / 2; target ++) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100247 if(target == d)
248 continue;
249 f = 0;
250 for (c = 0; c < size; c++)
251 f += M[d* size + c] * syn1neg_window[target * window_layer_size + window_offset + c];
252 if (f < -MAX_EXP)
253 continue;
254 else if (f > MAX_EXP)
255 continue;
256 else
257 f = expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100258 wpos_sum += f;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100259 if(f > max_f) {
260 max_f = f;
261 max_target = target;
262 }
263 target_sums[target] += (1-target_sums[target]) * f;
264 if(f > worstbest) {
265 for (b = 0; b < N; b++) {
266 if (f > bestf[b]) {
Marc Kupietz33679a32016-03-22 08:49:39 +0100267 memmove(bestf + b + 1, bestf + b, (N - b -1) * sizeof(float));
268 memmove(besti + b + 1, besti + b, (N - b -1) * sizeof(long long));
269 memmove(bestp + b + 1, bestp + b, (N - b -1) * sizeof(long long));
270 bestf[b] = f;
271 besti[b] = target;
272 bestp[b] = window-a;
273 break;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100274 }
275 }
276 worstbest = bestf[N-1];
277 }
278 }
279 printf("%d %.2f\n", max_target, max_f);
280 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
281 if(max_f > maxmax_f) {
282 maxmax_f = max_f;
283 maxmax_target = max_target;
284 }
Marc Kupietz33679a32016-03-22 08:49:39 +0100285 for (b = 0; b < N; b++)
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100286 if(bestp[b] == window-a)
287 bestn[b] = bestf[b] / wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100288 } else {
289 printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]);
290 }
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100291
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100292 }
293 max_f = -1;
294 for (b = 0; b < words; b++) {
295 if(target_sums[b] > max_f) {
296 max_f = target_sums[b];
297 max_target = b;
298 }
299 }
300 printf(" -- max sum: %s (%.2f), max resp.: \x1b[1m%s\x1b[0m (%.2f)\n",
301 &vocab[max_target * max_w], max_f,
302 &vocab[maxmax_target * max_w], maxmax_f);
Marc Kupietzd5642582016-03-19 22:23:13 +0100303 for(b=0; b<N; b++)
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100304 printf("%-32s %.2f %d\n", &vocab[besti[b]*max_w], bestf[b], bestp[b]);
305 printf("\n");
306 free(target_sums);
307 nbs = malloc(sizeof(knn));
308 nbs->index = besti;
309 nbs->dist = bestf;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100310 nbs->norm = bestn;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100311 nbs->pos = bestp;
Marc Kupietzd5642582016-03-19 22:23:13 +0100312 nbs->length = N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100313 return(nbs);
314}
315
Marc Kupietz48c29682016-03-19 11:30:43 +0100316wordlist *getTargetWords(char *st1) {
317 wordlist *wl = malloc(sizeof(wordlist));
318 char st[100][max_size], sep[100];
319 long a, b=0, c=0, cn=0;
320
Marc Kupietzdc22b982015-10-09 09:19:34 +0200321 while (1) {
322 st[cn][b] = st1[c];
323 b++;
324 c++;
325 st[cn][b] = 0;
326 if (st1[c] == 0) break;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100327 if (st1[c] == ' ' || st1[c] == '-') {
328 sep[cn++] = st1[c];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200329 b = 0;
330 c++;
331 }
332 }
333 cn++;
334 for (a = 0; a < cn; a++) {
Marc Kupietz34a3ee92016-02-27 22:43:16 +0100335 for (b = 0; b < words; b++) if (!strcmp(&vocab[b * max_w], st[a])) break;
336 if (b == words) b = -1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100337 wl->wordi[a] = b;
338 fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", st[a], wl->wordi[a]);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200339 if (b == -1) {
Marc Kupietze8da3062016-02-25 08:37:53 +0100340 fprintf(stderr, "Out of dictionary word!\n");
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100341 cn--;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200342 break;
343 }
344 }
Marc Kupietz48c29682016-03-19 11:30:43 +0100345 wl->length=cn;
346 return(wl);
347}
348
349void *_get_neighbours(knnpars *pars) {
350 char *st1 = pars->token;
351 int N = pars->N;
352 long from = pars -> from;
353 unsigned long upto = pars -> upto;
354 char file_name[max_size], st[100][max_size], *sep;
355 float dist, len, *bestd, vec[max_size];
356 long long a, b, c, d, cn, *bi, *besti;
357 char ch;
358 knn *nbs = NULL;
359 wordlist *wl = pars->wl;
360
361 besti = malloc(N * sizeof(long long));
362 bestd = malloc(N * sizeof(float));
363
364 float worstbest=-1;
365
366 for (a = 0; a < N; a++) bestd[a] = 0;
367 a = 0;
368 bi = wl->wordi;
369 cn = wl->length;
370 sep = wl->sep;
371 b = bi[0];
372 c = 0;
373
374 if(from < 0) {
Marc Kupietzd5642582016-03-19 22:23:13 +0100375 nbs = getCollocators(b, pars->N);
Marc Kupietz48c29682016-03-19 11:30:43 +0100376 pthread_exit(nbs);
377 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100378 if (b == -1) {
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100379 N = 0;
380 goto end;
381 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200382 for (a = 0; a < size; a++) vec[a] = 0;
383 for (b = 0; b < cn; b++) {
384 if (bi[b] == -1) continue;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100385 if(b>0 && sep[b-1] == '-')
386 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
387 else
388 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200389 }
390 len = 0;
391 for (a = 0; a < size; a++) len += vec[a] * vec[a];
392 len = sqrt(len);
393 for (a = 0; a < size; a++) vec[a] /= len;
394 for (a = 0; a < N; a++) bestd[a] = -1;
Marc Kupietz000ad862016-02-26 14:59:12 +0100395 for (c = from; c < upto; c++) {
Marc Kupietzdc22b982015-10-09 09:19:34 +0200396 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +0100397// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +0100398// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
399// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200400 dist = 0;
401 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100402 if(dist > worstbest) {
403 for (a = 0; a < N; a++) {
404 if (dist > bestd[a]) {
Marc Kupietz33679a32016-03-22 08:49:39 +0100405 memmove(bestd + a + 1, bestd + a, (N - a -1) * sizeof(float));
406 memmove(besti + a + 1, besti + a, (N - a -1) * sizeof(long long));
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100407 bestd[a] = dist;
408 besti[a] = c;
409 break;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200410 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200411 }
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100412 worstbest = bestd[N-1];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200413 }
414 }
Marc Kupietz34020dc2016-02-25 08:44:19 +0100415
Marc Kupietz000ad862016-02-26 14:59:12 +0100416 nbs = malloc(sizeof(knn));
417 nbs->index = besti;
418 nbs->dist = bestd;
419 nbs->length = N;
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100420end:
Marc Kupietz000ad862016-02-26 14:59:12 +0100421 pthread_exit(nbs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200422}
423
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100424
Marc Kupietz000ad862016-02-26 14:59:12 +0100425SV *get_neighbours(char *st1, int N) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100426 HV *result = newHV();
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100427 float bestd[MAX_NEIGHBOURS], bestn[MAX_NEIGHBOURS], vec[max_size];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100428 long long besti[MAX_NEIGHBOURS], bestp[MAX_NEIGHBOURS], a, b, c, d, slice;
Marc Kupietz000ad862016-02-26 14:59:12 +0100429 char *bestw[MAX_NEIGHBOURS];
430 knn *nbs[MAX_THREADS];
431 knnpars pars[MAX_THREADS];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100432 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
Marc Kupietz48c29682016-03-19 11:30:43 +0100433 wordlist *wl;
434
Marc Kupietz000ad862016-02-26 14:59:12 +0100435 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
436
437 slice = words / num_threads;
438
Marc Kupietz48c29682016-03-19 11:30:43 +0100439 wl = getTargetWords(st1);
440
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100441 a = num_threads;
442 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100443 pars[a].wl = wl;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100444 pars[a].N = N;
445 pars[a].from = -1;
446 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
447
Marc Kupietz000ad862016-02-26 14:59:12 +0100448 for(a=0; a < num_threads; a++) {
449 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100450 pars[a].wl = wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100451 pars[a].N = N;
452 pars[a].from = a*slice;
453 pars[a].upto = ((a+1)*slice > words? words:(a+1)*slice);
454 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
455 }
456 for (a = 0; a < num_threads; a++) pthread_join(pt[a], &nbs[a]);
457
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100458 pthread_join(pt[a], &nbs[a]);
459
Marc Kupietz000ad862016-02-26 14:59:12 +0100460 if(!nbs[0])
461 goto end;
462
463 for(b=0; b < N; b++) {
464 besti[b] = nbs[0]->index[b];
465 bestd[b] = nbs[0]->dist[b];
466 }
467
468 for(a=1; a < num_threads; a++) {
469 for(b=0; b < N; b++) {
470 for(c=0; c < N; c++) {
471 if(nbs[a]->dist[b] > bestd[c]) {
472 for(d=N-1; d>c; d--) {
473 bestd[d] = bestd[d-1];
474 besti[d] = besti[d-1];
475 }
476 besti[c] = nbs[a]->index[b];
477 bestd[c] = nbs[a]->dist[b];
478 break;
479 }
480 }
481 }
482 }
483
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100484
Marc Kupietz000ad862016-02-26 14:59:12 +0100485 if(nbs) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100486 AV* array = newAV();
Marc Kupietz000ad862016-02-26 14:59:12 +0100487 for (a = 0; a < N; a++) {
488 bestw[a] = (char *)malloc(max_size * sizeof(char));
489 }
490 for (a = 0; a < N; a++) {
491 strcpy(bestw[a], &vocab[besti[a] * max_w]);
492 HV* hash = newHV();
Marc Kupietza5b90152016-03-15 17:39:19 +0100493 SV* word = newSVpvf(bestw[a], 0);
494 if(latin_enc == 0) SvUTF8_on(word);
495 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietz000ad862016-02-26 14:59:12 +0100496 hv_store(hash, "dist", strlen("dist"), newSVnv(bestd[a]), 0);
497 hv_store(hash, "rank", strlen("rank"), newSVuv(besti[a]), 0);
498 AV *vector = newAV();
499 for (b = 0; b < size; b++) {
500 av_push(vector, newSVnv(M[b + besti[a] * size]));
501 }
502 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
503 av_push(array, newRV_noinc((SV*)hash));
504 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100505 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0);
506
Marc Kupietzd5642582016-03-19 22:23:13 +0100507 for(b=0; b < nbs[num_threads]->length; b++) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100508 besti[b] = nbs[num_threads]->index[b];
509 bestd[b] = nbs[num_threads]->dist[b];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100510 bestn[b] = nbs[num_threads]->norm[b];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100511 bestp[b] = nbs[num_threads]->pos[b];
512 }
513 array = newAV();
Marc Kupietzda9db6f2016-03-19 20:36:20 +0100514 for (a = 0; a < nbs[num_threads]->length; a++) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100515 strcpy(bestw[a], &vocab[besti[a] * max_w]);
516 HV* hash = newHV();
517 SV* word = newSVpvf(bestw[a], 0);
518 if(latin_enc == 0) SvUTF8_on(word);
519 hv_store(hash, "word", strlen("word"), word , 0);
520 hv_store(hash, "dist", strlen("dist"), newSVnv(bestd[a]), 0);
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100521 hv_store(hash, "norm", strlen("norm"), newSVnv(bestn[a]), 0);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100522 hv_store(hash, "pos", strlen("pos"), newSVnv(bestp[a]), 0);
523 av_push(array, newRV_noinc((SV*)hash));
524 }
525 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz000ad862016-02-26 14:59:12 +0100526 }
527end:
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100528 return newRV_noinc((SV*)result);
Marc Kupietz000ad862016-02-26 14:59:12 +0100529}
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100530
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100531
Marc Kupietzdc22b982015-10-09 09:19:34 +0200532__DATA__
533
534@@ index.html.ep
535<!DOCTYPE html>
536<html>
Marc Kupietzc4893362016-02-25 08:04:46 +0100537<head>
538 <title>DeReKo-Word-Vector-Distances</title>
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100539 <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
Marc Kupietzc4893362016-02-25 08:04:46 +0100540 <script src="http://code.jquery.com/jquery-latest.min.js"></script>
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100541 <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
542 <script>
543 $(function() {
Marc Kupietz5f780672016-02-25 17:15:54 +0100544 $( document ).tooltip({
545 content: function() {
546 return $(this).attr('title');
547 }}
548 )
549 })
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100550 </script>
Marc Kupietzc4893362016-02-25 08:04:46 +0100551 <script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
552 <script src="http://klinux10/word2vec/tsne.js"></script>
Marc Kupietzd7aea722016-03-02 11:59:12 +0100553 <script src="http://klinux10/word2vec/som.js"></script>
Marc Kupietzc5990da2016-02-26 08:47:12 +0100554 <script src="http://klinux10/word2vec/labeler.js"></script>
Marc Kupietzc4893362016-02-25 08:04:46 +0100555<style>
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100556body, input {
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100557 font-family: Arial, sans-serif;
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100558 font-size: 11pt;
559}
560
561.ui-tooltip-content {
562 font-size: 9pt;
563 colour: #222222;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100564}
Marc Kupietz5f780672016-02-25 17:15:54 +0100565
566svg > .ui-tooltip-content {
Marc Kupietzb1029362016-02-27 21:38:55 +0100567 font-size: 8pt;
Marc Kupietz5f780672016-02-25 17:15:54 +0100568 colour: #222222;
569}
570
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100571#collocators {
572 margin-bottom: 15px;
573}
574
Marc Kupietzc4893362016-02-25 08:04:46 +0100575#wrapper {
576 width: 100%;
577// border: 1px solid red;
578 overflow: hidden; /* will contain if #first is longer than #second */
579}
580#first {
Marc Kupietzb1029362016-02-27 21:38:55 +0100581 margin-right: 20px;
582 float: left;
583 // border: 1px solid green;
Marc Kupietzc4893362016-02-25 08:04:46 +0100584}
585#second {
586 border: 1px solid #333;
587 overflow: hidden; /* if you don't want #second to wrap below #first */
588}
Marc Kupietzd7aea722016-03-02 11:59:12 +0100589#som2 svg {
590 border: 1px solid #333;
591}
592
Marc Kupietz4aa62172016-02-25 10:39:27 +0100593#cost {
Marc Kupietzb1029362016-02-27 21:38:55 +0100594 font-size: 8pt;
595 color: #222222;
596 margin-top: 4px;
Marc Kupietzd7aea722016-03-02 11:59:12 +0100597 margin-bottom: 12px;
Marc Kupietz4aa62172016-02-25 10:39:27 +0100598}
Marc Kupietzd7aea722016-03-02 11:59:12 +0100599
Marc Kupietz6c1ca442016-03-03 09:35:18 +0100600#sominfo1, #sominfo {
Marc Kupietzd7aea722016-03-02 11:59:12 +0100601 font-size: 8pt;
602 color: #222222;
603 margin-top: 0px;
604}
605
Marc Kupietz6c1ca442016-03-03 09:35:18 +0100606#somcolor1, #somcolor2, #somcolor3 {
607 display: inline-block;
608 height: 10px;
609 width: 10px;
610}
611
Marc Kupietzd7aea722016-03-02 11:59:12 +0100612#third {
613 border: 1px solid #333;
614}
615
Marc Kupietzc4893362016-02-25 08:04:46 +0100616</style>
617<script>
618
Marc Kupietzc4d62f82016-03-01 11:04:24 +0100619var opt = {epsilon: <%= $epsilon %>, perplexity: <%= $perplexity %>},
Marc Kupietz9fca1732016-02-29 09:07:04 +0100620 mapWidth = 800, // width map
621 mapHeight = 800,
622 jitterRadius = 7;
623
Marc Kupietzc4893362016-02-25 08:04:46 +0100624var T = new tsnejs.tSNE(opt); // create a tSNE instance
625
626var Y;
627
628var data;
Marc Kupietzc5990da2016-02-26 08:47:12 +0100629var labeler;
Marc Kupietzc4893362016-02-25 08:04:46 +0100630
Marc Kupietzc5990da2016-02-26 08:47:12 +0100631
632function applyJitter() {
Marc Kupietzd7aea722016-03-02 11:59:12 +0100633 svg.selectAll('.tsnet')
Marc Kupietzc5990da2016-02-26 08:47:12 +0100634 .data(labels)
635 .transition()
636 .duration(50)
637 .attr("transform", function(d, i) {
Marc Kupietz9fca1732016-02-29 09:07:04 +0100638 T.Y[i][0] = (d.x - mapWidth/2 - tx)/ss/20;
639 T.Y[i][1] = (d.y - mapHeight/2 - ty)/ss/20;
Marc Kupietzc5990da2016-02-26 08:47:12 +0100640 return "translate(" +
641 (d.x) + "," +
642 (d.y) + ")";
643 });
644}
645
Marc Kupietzc4893362016-02-25 08:04:46 +0100646function updateEmbedding() {
647 var Y = T.getSolution();
Marc Kupietzd7aea722016-03-02 11:59:12 +0100648 svg.selectAll('.tsnet')
Marc Kupietz9fca1732016-02-29 09:07:04 +0100649 .data(data.words)
650 .attr("transform", function(d, i) {
651 return "translate(" +
652 ((Y[i][0]*20*ss + tx) + mapWidth/2) + "," +
653 ((Y[i][1]*20*ss + ty) + mapHeight/2) + ")"; });
Marc Kupietzc4893362016-02-25 08:04:46 +0100654}
655
656var svg;
Marc Kupietzc5990da2016-02-26 08:47:12 +0100657var labels = [];
658var anchor_array = [];
659var text;
660
Marc Kupietzc4893362016-02-25 08:04:46 +0100661function drawEmbedding() {
Marc Kupietz9fca1732016-02-29 09:07:04 +0100662 $("#embed").empty();
663 var div = d3.select("#embed");
664
665 // get min and max in each column of Y
666 var Y = T.Y;
667
668 svg = div.append("svg") // svg is global
669 .attr("width", mapWidth)
670 .attr("height", mapHeight);
671
672 var g = svg.selectAll(".b")
673 .data(data.words)
674 .enter().append("g")
Marc Kupietzd7aea722016-03-02 11:59:12 +0100675 .attr("class", "tsnet");
Marc Kupietz9fca1732016-02-29 09:07:04 +0100676
677 g.append("a")
678 .attr("xlink:href", function(word) {return "/?word="+word;})
679 .attr("title", function(d, i) {
Marc Kupietze50c8162016-03-01 10:24:43 +0100680 return "rank: "+i +" "+"freq. rank: "+data.ranks[i].toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
Marc Kupietz9fca1732016-02-29 09:07:04 +0100681 })
Marc Kupietza350bce2016-02-25 09:34:25 +0100682 .append("text")
Marc Kupietz9fca1732016-02-29 09:07:04 +0100683 .attr("text-anchor", "top")
684 .attr("font-size", 12)
685 .attr("fill", function(d) {
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100686 if(data.target.indexOf(" "+d+" ") >= 0) {
Marc Kupietza350bce2016-02-25 09:34:25 +0100687 return "red";
688 } else {
689 return "#333"
Marc Kupietzc4893362016-02-25 08:04:46 +0100690 }
Marc Kupietz9fca1732016-02-29 09:07:04 +0100691 })
692 .text(function(d) { return d; });
693
694 var zoomListener = d3.behavior.zoom()
695 .scaleExtent([0.1, 10])
696 .center([0,0])
697 .on("zoom", zoomHandler);
698 zoomListener(svg);
699}
Marc Kupietzc5990da2016-02-26 08:47:12 +0100700
Marc Kupietz9fca1732016-02-29 09:07:04 +0100701var tx=0, ty=0;
702var ss=1;
703var iter_id=-1;
Marc Kupietzc5990da2016-02-26 08:47:12 +0100704
Marc Kupietz9fca1732016-02-29 09:07:04 +0100705function zoomHandler() {
706 tx = d3.event.translate[0];
707 ty = d3.event.translate[1];
708 ss = d3.event.scale;
709 updateEmbedding();
710}
711
712var stepnum = 0;
713
714function stopStep() {
715 clearInterval(iter_id);
716 text = svg.selectAll("text");
717
718 // jitter function needs different data and co-ordinate representation
719 labels = d3.range(data.words.length).map(function(i) {
720 var x = (T.Y[i][0]*20*ss + tx) + mapWidth/2;
721 var y = (T.Y[i][1]*20*ss + ty) + mapHeight/2;
722 anchor_array.push({x: x, y: y, r: jitterRadius});
723 return {
724 x: x,
725 y: y,
726 name: data.words[i]
727 };
728 });
729
730 // get the actual label bounding boxes for the jitter function
731 var index = 0;
732 text.each(function() {
733 labels[index].width = this.getBBox().width;
734 labels[index].height = this.getBBox().height;
735 index += 1;
736 });
Marc Kupietzc5990da2016-02-26 08:47:12 +0100737
738
739// setTimeout(updateEmbedding, 1);
740// setTimeout(
Marc Kupietz9fca1732016-02-29 09:07:04 +0100741 labeler = d3.labeler()
742 .label(labels)
743 .anchor(anchor_array)
744 .width(mapWidth)
745 .height(mapHeight)
746 .update(applyJitter);
747 // .start(1000);
Marc Kupietzc5990da2016-02-26 08:47:12 +0100748
Marc Kupietz9fca1732016-02-29 09:07:04 +0100749 iter_id = setInterval(jitterStep, 1);
750}
Marc Kupietzc5990da2016-02-26 08:47:12 +0100751
Marc Kupietz9fca1732016-02-29 09:07:04 +0100752var jitter_i=0;
Marc Kupietzc5990da2016-02-26 08:47:12 +0100753
754function jitterStep() {
Marc Kupietz9fca1732016-02-29 09:07:04 +0100755 if(jitter_i++ > 100) {
756 clearInterval(iter_id);
757 } else {
758 labeler.start2(10);
759 applyJitter();
760 }
Marc Kupietzc5990da2016-02-26 08:47:12 +0100761}
Marc Kupietzb1029362016-02-27 21:38:55 +0100762
763var last_cost=1000;
764
Marc Kupietz9fca1732016-02-29 09:07:04 +0100765function step() {
766 var i = T.iter;
767
768 if(i > <%= $no_iterations %>) {
769 stopStep();
770 } else {
771 var cost = Math.round(T.step() * 100000) / 100000; // do a few steps
772 $("#cost").html("tsne iteration " + i + ", cost: " + cost.toFixed(5));
773 if(i % 250 == 0 && cost >= last_cost) {
774 stopStep();
775 } else {
776 last_cost = cost;
777 updateEmbedding();
778 }
779 }
780}
Marc Kupietzc5990da2016-02-26 08:47:12 +0100781
Marc Kupietz9fca1732016-02-29 09:07:04 +0100782function showMap(j) {
783 data=j;
784 T.iter=0;
785 T.initDataRaw(data.vecs); // init embedding
786 drawEmbedding(); // draw initial embedding
787
788 if(iter_id >= 0) {
789 clearInterval(iter_id);
790 }
791 //T.debugGrad();
792 iter_id = setInterval(step, 1);
Marc Kupietzd7aea722016-03-02 11:59:12 +0100793 if(<%= $show_som %>) {
794 makeSOM(j, <%= $no_iterations %>);
795 }
Marc Kupietz9fca1732016-02-29 09:07:04 +0100796}
Marc Kupietza350bce2016-02-25 09:34:25 +0100797
Marc Kupietzc4893362016-02-25 08:04:46 +0100798</script>
799</head>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200800<body>
Marc Kupietz4aa62172016-02-25 10:39:27 +0100801 <form action="<%=url_for('/')->to_abs%>" method="GET">
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100802 word(s):
803 <input type="text" name="word" size="20" value="<%= $word %>" title="When looking for multiple words use spaces as separators to search around the average vector and | as separator to get the neighbours for each word.">
804 max. neighbours: <input type="text" size="8" name="n" value="<%= $no_nbs %>">
Marc Kupietzd7aea722016-03-02 11:59:12 +0100805 max. iterations: <input type="text" name="N" size="8" value="<%= $no_iterations %>">
806 SOM <input type="checkbox" name="som" value="1" <%= ($show_som ? "checked" : "") %>>
807 <span> </span><input type="submit" value="Show">
Marc Kupietz4aa62172016-02-25 10:39:27 +0100808 </form>
809 <br>
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100810 % if($lists) {
Marc Kupietz4aa62172016-02-25 10:39:27 +0100811 <div id="wrapper">
812 <table id="first">
813 <tr>
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100814 <th align="right">#</th><th align="right">cos</th><th align="left">paradigmatic</th><th title="Position in winodw around target word. Absolute value can be too low because of sub-sampling frequent words.">@</th><th align="right" title="&#34;Responsivenes&#34; of the collocator at the relative position @. Approximation of the probability that the combination of the target word and the collocator at the relative position @ come from the corpus.">resp.</th><th title="Probability of the collocator at window location @."align="right">p(c<sub><small>@</small></sub>)</th><th align="left">syntagmatic</th>
Marc Kupietz4aa62172016-02-25 10:39:27 +0100815 </tr>
Marc Kupietz5f780672016-02-25 17:15:54 +0100816 % my $j=0; my @words; my @vecs; my @ranks; for my $list (@$lists) {
Marc Kupietzd5642582016-03-19 22:23:13 +0100817 % my $i=0; for my $item (@$list) {
818 % my $c = (@$collocators)[$i];
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100819 % if(!grep{$_ eq $item->{word}} @words) {
820 % push @vecs, $item->{vector};
821 % push @words, $item->{word};
Marc Kupietz5f780672016-02-25 17:15:54 +0100822 % push @ranks, $item->{rank};
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100823 % }
Marc Kupietz4aa62172016-02-25 10:39:27 +0100824 <tr>
825 <td align="right">
Marc Kupietzd5642582016-03-19 22:23:13 +0100826 <%= ++$i %>.
Marc Kupietz4aa62172016-02-25 10:39:27 +0100827 </td>
828 <td align="right">
829 <%= sprintf("%.3f", $item->{dist}) %>
830 </td>
Marc Kupietzd5642582016-03-19 22:23:13 +0100831 <td>
832 <a title="freq. rank: <%= $item->{rank} %>" href="/?word=<%= $item->{word} %>">
833 <%= $item->{word} %>
834 </a>
835 </td>
Marc Kupietz5f780672016-02-25 17:15:54 +0100836 <td align="right">
Marc Kupietzd5642582016-03-19 22:23:13 +0100837 <%= $c->{pos} %>:
838 </td>
839 <td align="right">
840 <%= sprintf("%.3f", $c->{dist}) %>
841 </td>
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100842 <td align="right">
843 <%= sprintf("%.3e", $c->{norm}) %>
844 </td>
Marc Kupietzd5642582016-03-19 22:23:13 +0100845 <td align="left">
846 <a href="/?word=<%= $c->{word} %>">
847 <%= $c->{word} %>
Marc Kupietz5f780672016-02-25 17:15:54 +0100848 </td>
Marc Kupietz4aa62172016-02-25 10:39:27 +0100849 </tr>
850 % }
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100851 % }
Marc Kupietz4aa62172016-02-25 10:39:27 +0100852 </table>
853 <script>
854 % use Mojo::ByteStream 'b';
855 $(window).load(function() {
Marc Kupietz5f780672016-02-25 17:15:54 +0100856 showMap(<%= b(Mojo::JSON::to_json({target => " $word ", words => \@words, vecs => \@vecs, ranks => \@ranks})); %>);
Marc Kupietz4aa62172016-02-25 10:39:27 +0100857 });
858 </script>
859 % }
860 <div id="second" style="width:800px; height:800px; font-family: arial;">
861 <div id="embed">
862 </div>
Marc Kupietz4aa62172016-02-25 10:39:27 +0100863 </div>
Marc Kupietzb1029362016-02-27 21:38:55 +0100864 <div id="cost"></div>
Marc Kupietzd7aea722016-03-02 11:59:12 +0100865 % if($show_som) {
866 <div id="som2">
867 </div>
Marc Kupietz6c1ca442016-03-03 09:35:18 +0100868 <div id="sominfo1"><span id="somcolor1"> </span> <span id="somword1"> </span> <span id="somcolor2"> </span> <span id="somword2"> </span> <span id="somcolor3"> </span></div>
Marc Kupietzd7aea722016-03-02 11:59:12 +0100869 <div id="sominfo">SOM iteration <span id="iterations">0</span></div>
870 % }
Marc Kupietz4aa62172016-02-25 10:39:27 +0100871 </div>
872 <p>
873 Word vector model based on DeReKo-2015-II. Trained with <a href="https://code.google.com/p/word2vec/">word2vec</a> using the following parameters:</p>
Marc Kupietz247500f2015-10-09 11:29:01 +0200874 <pre>
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100875-cbow 1 -size 300 -window 7 -negative 5 -hs 0 -sample 1e-5 -threads 44 -binary 1 -iter 5
Marc Kupietz4aa62172016-02-25 10:39:27 +0100876 </pre>
877 </p>
878</body>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200879</html>
880