blob: a83f37e01d97d8c3c834d55de4e24be61321e1f6 [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]) {
267 for (e = N - 1; e > b; e--) {
268 bestf[e] = bestf[e - 1];
269 besti[e] = besti[e - 1];
270 bestp[e] = bestp[e - 1];
271 }
272 bestf[b] = f;
273 besti[b] = target;
274 bestp[b] = window-a;
275 break;
276 }
277 }
278 worstbest = bestf[N-1];
279 }
280 }
281 printf("%d %.2f\n", max_target, max_f);
282 printf("%s (%.2f) ", &vocab[max_target * max_w], max_f);
283 if(max_f > maxmax_f) {
284 maxmax_f = max_f;
285 maxmax_target = max_target;
286 }
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100287 for (b = 0; b < N; b++)
288 if(bestp[b] == window-a)
289 bestn[b] = bestf[b] / wpos_sum;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100290 } else {
291 printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]);
292 }
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100293
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100294 }
295 max_f = -1;
296 for (b = 0; b < words; b++) {
297 if(target_sums[b] > max_f) {
298 max_f = target_sums[b];
299 max_target = b;
300 }
301 }
302 printf(" -- max sum: %s (%.2f), max resp.: \x1b[1m%s\x1b[0m (%.2f)\n",
303 &vocab[max_target * max_w], max_f,
304 &vocab[maxmax_target * max_w], maxmax_f);
Marc Kupietzd5642582016-03-19 22:23:13 +0100305 for(b=0; b<N; b++)
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100306 printf("%-32s %.2f %d\n", &vocab[besti[b]*max_w], bestf[b], bestp[b]);
307 printf("\n");
308 free(target_sums);
309 nbs = malloc(sizeof(knn));
310 nbs->index = besti;
311 nbs->dist = bestf;
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100312 nbs->norm = bestn;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100313 nbs->pos = bestp;
Marc Kupietzd5642582016-03-19 22:23:13 +0100314 nbs->length = N;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100315 return(nbs);
316}
317
Marc Kupietz48c29682016-03-19 11:30:43 +0100318wordlist *getTargetWords(char *st1) {
319 wordlist *wl = malloc(sizeof(wordlist));
320 char st[100][max_size], sep[100];
321 long a, b=0, c=0, cn=0;
322
Marc Kupietzdc22b982015-10-09 09:19:34 +0200323 while (1) {
324 st[cn][b] = st1[c];
325 b++;
326 c++;
327 st[cn][b] = 0;
328 if (st1[c] == 0) break;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100329 if (st1[c] == ' ' || st1[c] == '-') {
330 sep[cn++] = st1[c];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200331 b = 0;
332 c++;
333 }
334 }
335 cn++;
336 for (a = 0; a < cn; a++) {
Marc Kupietz34a3ee92016-02-27 22:43:16 +0100337 for (b = 0; b < words; b++) if (!strcmp(&vocab[b * max_w], st[a])) break;
338 if (b == words) b = -1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100339 wl->wordi[a] = b;
340 fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", st[a], wl->wordi[a]);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200341 if (b == -1) {
Marc Kupietze8da3062016-02-25 08:37:53 +0100342 fprintf(stderr, "Out of dictionary word!\n");
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100343 cn--;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200344 break;
345 }
346 }
Marc Kupietz48c29682016-03-19 11:30:43 +0100347 wl->length=cn;
348 return(wl);
349}
350
351void *_get_neighbours(knnpars *pars) {
352 char *st1 = pars->token;
353 int N = pars->N;
354 long from = pars -> from;
355 unsigned long upto = pars -> upto;
356 char file_name[max_size], st[100][max_size], *sep;
357 float dist, len, *bestd, vec[max_size];
358 long long a, b, c, d, cn, *bi, *besti;
359 char ch;
360 knn *nbs = NULL;
361 wordlist *wl = pars->wl;
362
363 besti = malloc(N * sizeof(long long));
364 bestd = malloc(N * sizeof(float));
365
366 float worstbest=-1;
367
368 for (a = 0; a < N; a++) bestd[a] = 0;
369 a = 0;
370 bi = wl->wordi;
371 cn = wl->length;
372 sep = wl->sep;
373 b = bi[0];
374 c = 0;
375
376 if(from < 0) {
Marc Kupietzd5642582016-03-19 22:23:13 +0100377 nbs = getCollocators(b, pars->N);
Marc Kupietz48c29682016-03-19 11:30:43 +0100378 pthread_exit(nbs);
379 }
Marc Kupietz000ad862016-02-26 14:59:12 +0100380 if (b == -1) {
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100381 N = 0;
382 goto end;
383 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200384 for (a = 0; a < size; a++) vec[a] = 0;
385 for (b = 0; b < cn; b++) {
386 if (bi[b] == -1) continue;
Marc Kupietz95aa1c02016-03-15 09:40:43 +0100387 if(b>0 && sep[b-1] == '-')
388 for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size];
389 else
390 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200391 }
392 len = 0;
393 for (a = 0; a < size; a++) len += vec[a] * vec[a];
394 len = sqrt(len);
395 for (a = 0; a < size; a++) vec[a] /= len;
396 for (a = 0; a < N; a++) bestd[a] = -1;
Marc Kupietz000ad862016-02-26 14:59:12 +0100397 for (c = from; c < upto; c++) {
Marc Kupietzdc22b982015-10-09 09:19:34 +0200398 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +0100399// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +0100400// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
401// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200402 dist = 0;
403 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100404 if(dist > worstbest) {
405 for (a = 0; a < N; a++) {
406 if (dist > bestd[a]) {
407 for (d = N - 1; d > a; d--) {
408 bestd[d] = bestd[d - 1];
409 besti[d] = besti[d - 1];
410 }
411 bestd[a] = dist;
412 besti[a] = c;
413 break;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200414 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200415 }
Marc Kupietzbe1b9fc2016-02-26 10:34:30 +0100416 worstbest = bestd[N-1];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200417 }
418 }
Marc Kupietz34020dc2016-02-25 08:44:19 +0100419
Marc Kupietz000ad862016-02-26 14:59:12 +0100420 nbs = malloc(sizeof(knn));
421 nbs->index = besti;
422 nbs->dist = bestd;
423 nbs->length = N;
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100424end:
Marc Kupietz000ad862016-02-26 14:59:12 +0100425 pthread_exit(nbs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200426}
427
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100428
Marc Kupietz000ad862016-02-26 14:59:12 +0100429SV *get_neighbours(char *st1, int N) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100430 HV *result = newHV();
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100431 float bestd[MAX_NEIGHBOURS], bestn[MAX_NEIGHBOURS], vec[max_size];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100432 long long besti[MAX_NEIGHBOURS], bestp[MAX_NEIGHBOURS], a, b, c, d, slice;
Marc Kupietz000ad862016-02-26 14:59:12 +0100433 char *bestw[MAX_NEIGHBOURS];
434 knn *nbs[MAX_THREADS];
435 knnpars pars[MAX_THREADS];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100436 pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t));
Marc Kupietz48c29682016-03-19 11:30:43 +0100437 wordlist *wl;
438
Marc Kupietz000ad862016-02-26 14:59:12 +0100439 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
440
441 slice = words / num_threads;
442
Marc Kupietz48c29682016-03-19 11:30:43 +0100443 wl = getTargetWords(st1);
444
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100445 a = num_threads;
446 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100447 pars[a].wl = wl;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100448 pars[a].N = N;
449 pars[a].from = -1;
450 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
451
Marc Kupietz000ad862016-02-26 14:59:12 +0100452 for(a=0; a < num_threads; a++) {
453 pars[a].token = st1;
Marc Kupietz48c29682016-03-19 11:30:43 +0100454 pars[a].wl = wl;
Marc Kupietz000ad862016-02-26 14:59:12 +0100455 pars[a].N = N;
456 pars[a].from = a*slice;
457 pars[a].upto = ((a+1)*slice > words? words:(a+1)*slice);
458 pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]);
459 }
460 for (a = 0; a < num_threads; a++) pthread_join(pt[a], &nbs[a]);
461
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100462 pthread_join(pt[a], &nbs[a]);
463
Marc Kupietz000ad862016-02-26 14:59:12 +0100464 if(!nbs[0])
465 goto end;
466
467 for(b=0; b < N; b++) {
468 besti[b] = nbs[0]->index[b];
469 bestd[b] = nbs[0]->dist[b];
470 }
471
472 for(a=1; a < num_threads; a++) {
473 for(b=0; b < N; b++) {
474 for(c=0; c < N; c++) {
475 if(nbs[a]->dist[b] > bestd[c]) {
476 for(d=N-1; d>c; d--) {
477 bestd[d] = bestd[d-1];
478 besti[d] = besti[d-1];
479 }
480 besti[c] = nbs[a]->index[b];
481 bestd[c] = nbs[a]->dist[b];
482 break;
483 }
484 }
485 }
486 }
487
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100488
Marc Kupietz000ad862016-02-26 14:59:12 +0100489 if(nbs) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100490 AV* array = newAV();
Marc Kupietz000ad862016-02-26 14:59:12 +0100491 for (a = 0; a < N; a++) {
492 bestw[a] = (char *)malloc(max_size * sizeof(char));
493 }
494 for (a = 0; a < N; a++) {
495 strcpy(bestw[a], &vocab[besti[a] * max_w]);
496 HV* hash = newHV();
Marc Kupietza5b90152016-03-15 17:39:19 +0100497 SV* word = newSVpvf(bestw[a], 0);
498 if(latin_enc == 0) SvUTF8_on(word);
499 hv_store(hash, "word", strlen("word"), word , 0);
Marc Kupietz000ad862016-02-26 14:59:12 +0100500 hv_store(hash, "dist", strlen("dist"), newSVnv(bestd[a]), 0);
501 hv_store(hash, "rank", strlen("rank"), newSVuv(besti[a]), 0);
502 AV *vector = newAV();
503 for (b = 0; b < size; b++) {
504 av_push(vector, newSVnv(M[b + besti[a] * size]));
505 }
506 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
507 av_push(array, newRV_noinc((SV*)hash));
508 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100509 hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0);
510
Marc Kupietzd5642582016-03-19 22:23:13 +0100511 for(b=0; b < nbs[num_threads]->length; b++) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100512 besti[b] = nbs[num_threads]->index[b];
513 bestd[b] = nbs[num_threads]->dist[b];
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100514 bestn[b] = nbs[num_threads]->norm[b];
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100515 bestp[b] = nbs[num_threads]->pos[b];
516 }
517 array = newAV();
Marc Kupietzda9db6f2016-03-19 20:36:20 +0100518 for (a = 0; a < nbs[num_threads]->length; a++) {
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100519 strcpy(bestw[a], &vocab[besti[a] * max_w]);
520 HV* hash = newHV();
521 SV* word = newSVpvf(bestw[a], 0);
522 if(latin_enc == 0) SvUTF8_on(word);
523 hv_store(hash, "word", strlen("word"), word , 0);
524 hv_store(hash, "dist", strlen("dist"), newSVnv(bestd[a]), 0);
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100525 hv_store(hash, "norm", strlen("norm"), newSVnv(bestn[a]), 0);
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100526 hv_store(hash, "pos", strlen("pos"), newSVnv(bestp[a]), 0);
527 av_push(array, newRV_noinc((SV*)hash));
528 }
529 hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0);
Marc Kupietz000ad862016-02-26 14:59:12 +0100530 }
531end:
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100532 return newRV_noinc((SV*)result);
Marc Kupietz000ad862016-02-26 14:59:12 +0100533}
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100534
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100535
Marc Kupietzdc22b982015-10-09 09:19:34 +0200536__DATA__
537
538@@ index.html.ep
539<!DOCTYPE html>
540<html>
Marc Kupietzc4893362016-02-25 08:04:46 +0100541<head>
542 <title>DeReKo-Word-Vector-Distances</title>
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100543 <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
Marc Kupietzc4893362016-02-25 08:04:46 +0100544 <script src="http://code.jquery.com/jquery-latest.min.js"></script>
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100545 <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
546 <script>
547 $(function() {
Marc Kupietz5f780672016-02-25 17:15:54 +0100548 $( document ).tooltip({
549 content: function() {
550 return $(this).attr('title');
551 }}
552 )
553 })
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100554 </script>
Marc Kupietzc4893362016-02-25 08:04:46 +0100555 <script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
556 <script src="http://klinux10/word2vec/tsne.js"></script>
Marc Kupietzd7aea722016-03-02 11:59:12 +0100557 <script src="http://klinux10/word2vec/som.js"></script>
Marc Kupietzc5990da2016-02-26 08:47:12 +0100558 <script src="http://klinux10/word2vec/labeler.js"></script>
Marc Kupietzc4893362016-02-25 08:04:46 +0100559<style>
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100560body, input {
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100561 font-family: Arial, sans-serif;
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100562 font-size: 11pt;
563}
564
565.ui-tooltip-content {
566 font-size: 9pt;
567 colour: #222222;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100568}
Marc Kupietz5f780672016-02-25 17:15:54 +0100569
570svg > .ui-tooltip-content {
Marc Kupietzb1029362016-02-27 21:38:55 +0100571 font-size: 8pt;
Marc Kupietz5f780672016-02-25 17:15:54 +0100572 colour: #222222;
573}
574
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100575#collocators {
576 margin-bottom: 15px;
577}
578
Marc Kupietzc4893362016-02-25 08:04:46 +0100579#wrapper {
580 width: 100%;
581// border: 1px solid red;
582 overflow: hidden; /* will contain if #first is longer than #second */
583}
584#first {
Marc Kupietzb1029362016-02-27 21:38:55 +0100585 margin-right: 20px;
586 float: left;
587 // border: 1px solid green;
Marc Kupietzc4893362016-02-25 08:04:46 +0100588}
589#second {
590 border: 1px solid #333;
591 overflow: hidden; /* if you don't want #second to wrap below #first */
592}
Marc Kupietzd7aea722016-03-02 11:59:12 +0100593#som2 svg {
594 border: 1px solid #333;
595}
596
Marc Kupietz4aa62172016-02-25 10:39:27 +0100597#cost {
Marc Kupietzb1029362016-02-27 21:38:55 +0100598 font-size: 8pt;
599 color: #222222;
600 margin-top: 4px;
Marc Kupietzd7aea722016-03-02 11:59:12 +0100601 margin-bottom: 12px;
Marc Kupietz4aa62172016-02-25 10:39:27 +0100602}
Marc Kupietzd7aea722016-03-02 11:59:12 +0100603
Marc Kupietz6c1ca442016-03-03 09:35:18 +0100604#sominfo1, #sominfo {
Marc Kupietzd7aea722016-03-02 11:59:12 +0100605 font-size: 8pt;
606 color: #222222;
607 margin-top: 0px;
608}
609
Marc Kupietz6c1ca442016-03-03 09:35:18 +0100610#somcolor1, #somcolor2, #somcolor3 {
611 display: inline-block;
612 height: 10px;
613 width: 10px;
614}
615
Marc Kupietzd7aea722016-03-02 11:59:12 +0100616#third {
617 border: 1px solid #333;
618}
619
Marc Kupietzc4893362016-02-25 08:04:46 +0100620</style>
621<script>
622
Marc Kupietzc4d62f82016-03-01 11:04:24 +0100623var opt = {epsilon: <%= $epsilon %>, perplexity: <%= $perplexity %>},
Marc Kupietz9fca1732016-02-29 09:07:04 +0100624 mapWidth = 800, // width map
625 mapHeight = 800,
626 jitterRadius = 7;
627
Marc Kupietzc4893362016-02-25 08:04:46 +0100628var T = new tsnejs.tSNE(opt); // create a tSNE instance
629
630var Y;
631
632var data;
Marc Kupietzc5990da2016-02-26 08:47:12 +0100633var labeler;
Marc Kupietzc4893362016-02-25 08:04:46 +0100634
Marc Kupietzc5990da2016-02-26 08:47:12 +0100635
636function applyJitter() {
Marc Kupietzd7aea722016-03-02 11:59:12 +0100637 svg.selectAll('.tsnet')
Marc Kupietzc5990da2016-02-26 08:47:12 +0100638 .data(labels)
639 .transition()
640 .duration(50)
641 .attr("transform", function(d, i) {
Marc Kupietz9fca1732016-02-29 09:07:04 +0100642 T.Y[i][0] = (d.x - mapWidth/2 - tx)/ss/20;
643 T.Y[i][1] = (d.y - mapHeight/2 - ty)/ss/20;
Marc Kupietzc5990da2016-02-26 08:47:12 +0100644 return "translate(" +
645 (d.x) + "," +
646 (d.y) + ")";
647 });
648}
649
Marc Kupietzc4893362016-02-25 08:04:46 +0100650function updateEmbedding() {
651 var Y = T.getSolution();
Marc Kupietzd7aea722016-03-02 11:59:12 +0100652 svg.selectAll('.tsnet')
Marc Kupietz9fca1732016-02-29 09:07:04 +0100653 .data(data.words)
654 .attr("transform", function(d, i) {
655 return "translate(" +
656 ((Y[i][0]*20*ss + tx) + mapWidth/2) + "," +
657 ((Y[i][1]*20*ss + ty) + mapHeight/2) + ")"; });
Marc Kupietzc4893362016-02-25 08:04:46 +0100658}
659
660var svg;
Marc Kupietzc5990da2016-02-26 08:47:12 +0100661var labels = [];
662var anchor_array = [];
663var text;
664
Marc Kupietzc4893362016-02-25 08:04:46 +0100665function drawEmbedding() {
Marc Kupietz9fca1732016-02-29 09:07:04 +0100666 $("#embed").empty();
667 var div = d3.select("#embed");
668
669 // get min and max in each column of Y
670 var Y = T.Y;
671
672 svg = div.append("svg") // svg is global
673 .attr("width", mapWidth)
674 .attr("height", mapHeight);
675
676 var g = svg.selectAll(".b")
677 .data(data.words)
678 .enter().append("g")
Marc Kupietzd7aea722016-03-02 11:59:12 +0100679 .attr("class", "tsnet");
Marc Kupietz9fca1732016-02-29 09:07:04 +0100680
681 g.append("a")
682 .attr("xlink:href", function(word) {return "/?word="+word;})
683 .attr("title", function(d, i) {
Marc Kupietze50c8162016-03-01 10:24:43 +0100684 return "rank: "+i +" "+"freq. rank: "+data.ranks[i].toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
Marc Kupietz9fca1732016-02-29 09:07:04 +0100685 })
Marc Kupietza350bce2016-02-25 09:34:25 +0100686 .append("text")
Marc Kupietz9fca1732016-02-29 09:07:04 +0100687 .attr("text-anchor", "top")
688 .attr("font-size", 12)
689 .attr("fill", function(d) {
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100690 if(data.target.indexOf(" "+d+" ") >= 0) {
Marc Kupietza350bce2016-02-25 09:34:25 +0100691 return "red";
692 } else {
693 return "#333"
Marc Kupietzc4893362016-02-25 08:04:46 +0100694 }
Marc Kupietz9fca1732016-02-29 09:07:04 +0100695 })
696 .text(function(d) { return d; });
697
698 var zoomListener = d3.behavior.zoom()
699 .scaleExtent([0.1, 10])
700 .center([0,0])
701 .on("zoom", zoomHandler);
702 zoomListener(svg);
703}
Marc Kupietzc5990da2016-02-26 08:47:12 +0100704
Marc Kupietz9fca1732016-02-29 09:07:04 +0100705var tx=0, ty=0;
706var ss=1;
707var iter_id=-1;
Marc Kupietzc5990da2016-02-26 08:47:12 +0100708
Marc Kupietz9fca1732016-02-29 09:07:04 +0100709function zoomHandler() {
710 tx = d3.event.translate[0];
711 ty = d3.event.translate[1];
712 ss = d3.event.scale;
713 updateEmbedding();
714}
715
716var stepnum = 0;
717
718function stopStep() {
719 clearInterval(iter_id);
720 text = svg.selectAll("text");
721
722 // jitter function needs different data and co-ordinate representation
723 labels = d3.range(data.words.length).map(function(i) {
724 var x = (T.Y[i][0]*20*ss + tx) + mapWidth/2;
725 var y = (T.Y[i][1]*20*ss + ty) + mapHeight/2;
726 anchor_array.push({x: x, y: y, r: jitterRadius});
727 return {
728 x: x,
729 y: y,
730 name: data.words[i]
731 };
732 });
733
734 // get the actual label bounding boxes for the jitter function
735 var index = 0;
736 text.each(function() {
737 labels[index].width = this.getBBox().width;
738 labels[index].height = this.getBBox().height;
739 index += 1;
740 });
Marc Kupietzc5990da2016-02-26 08:47:12 +0100741
742
743// setTimeout(updateEmbedding, 1);
744// setTimeout(
Marc Kupietz9fca1732016-02-29 09:07:04 +0100745 labeler = d3.labeler()
746 .label(labels)
747 .anchor(anchor_array)
748 .width(mapWidth)
749 .height(mapHeight)
750 .update(applyJitter);
751 // .start(1000);
Marc Kupietzc5990da2016-02-26 08:47:12 +0100752
Marc Kupietz9fca1732016-02-29 09:07:04 +0100753 iter_id = setInterval(jitterStep, 1);
754}
Marc Kupietzc5990da2016-02-26 08:47:12 +0100755
Marc Kupietz9fca1732016-02-29 09:07:04 +0100756var jitter_i=0;
Marc Kupietzc5990da2016-02-26 08:47:12 +0100757
758function jitterStep() {
Marc Kupietz9fca1732016-02-29 09:07:04 +0100759 if(jitter_i++ > 100) {
760 clearInterval(iter_id);
761 } else {
762 labeler.start2(10);
763 applyJitter();
764 }
Marc Kupietzc5990da2016-02-26 08:47:12 +0100765}
Marc Kupietzb1029362016-02-27 21:38:55 +0100766
767var last_cost=1000;
768
Marc Kupietz9fca1732016-02-29 09:07:04 +0100769function step() {
770 var i = T.iter;
771
772 if(i > <%= $no_iterations %>) {
773 stopStep();
774 } else {
775 var cost = Math.round(T.step() * 100000) / 100000; // do a few steps
776 $("#cost").html("tsne iteration " + i + ", cost: " + cost.toFixed(5));
777 if(i % 250 == 0 && cost >= last_cost) {
778 stopStep();
779 } else {
780 last_cost = cost;
781 updateEmbedding();
782 }
783 }
784}
Marc Kupietzc5990da2016-02-26 08:47:12 +0100785
Marc Kupietz9fca1732016-02-29 09:07:04 +0100786function showMap(j) {
787 data=j;
788 T.iter=0;
789 T.initDataRaw(data.vecs); // init embedding
790 drawEmbedding(); // draw initial embedding
791
792 if(iter_id >= 0) {
793 clearInterval(iter_id);
794 }
795 //T.debugGrad();
796 iter_id = setInterval(step, 1);
Marc Kupietzd7aea722016-03-02 11:59:12 +0100797 if(<%= $show_som %>) {
798 makeSOM(j, <%= $no_iterations %>);
799 }
Marc Kupietz9fca1732016-02-29 09:07:04 +0100800}
Marc Kupietza350bce2016-02-25 09:34:25 +0100801
Marc Kupietzc4893362016-02-25 08:04:46 +0100802</script>
803</head>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200804<body>
Marc Kupietz4aa62172016-02-25 10:39:27 +0100805 <form action="<%=url_for('/')->to_abs%>" method="GET">
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100806 word(s):
807 <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.">
808 max. neighbours: <input type="text" size="8" name="n" value="<%= $no_nbs %>">
Marc Kupietzd7aea722016-03-02 11:59:12 +0100809 max. iterations: <input type="text" name="N" size="8" value="<%= $no_iterations %>">
810 SOM <input type="checkbox" name="som" value="1" <%= ($show_som ? "checked" : "") %>>
811 <span> </span><input type="submit" value="Show">
Marc Kupietz4aa62172016-02-25 10:39:27 +0100812 </form>
813 <br>
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100814 % if($lists) {
Marc Kupietz4aa62172016-02-25 10:39:27 +0100815 <div id="wrapper">
816 <table id="first">
817 <tr>
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100818 <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 +0100819 </tr>
Marc Kupietz5f780672016-02-25 17:15:54 +0100820 % my $j=0; my @words; my @vecs; my @ranks; for my $list (@$lists) {
Marc Kupietzd5642582016-03-19 22:23:13 +0100821 % my $i=0; for my $item (@$list) {
822 % my $c = (@$collocators)[$i];
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100823 % if(!grep{$_ eq $item->{word}} @words) {
824 % push @vecs, $item->{vector};
825 % push @words, $item->{word};
Marc Kupietz5f780672016-02-25 17:15:54 +0100826 % push @ranks, $item->{rank};
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100827 % }
Marc Kupietz4aa62172016-02-25 10:39:27 +0100828 <tr>
829 <td align="right">
Marc Kupietzd5642582016-03-19 22:23:13 +0100830 <%= ++$i %>.
Marc Kupietz4aa62172016-02-25 10:39:27 +0100831 </td>
832 <td align="right">
833 <%= sprintf("%.3f", $item->{dist}) %>
834 </td>
Marc Kupietzd5642582016-03-19 22:23:13 +0100835 <td>
836 <a title="freq. rank: <%= $item->{rank} %>" href="/?word=<%= $item->{word} %>">
837 <%= $item->{word} %>
838 </a>
839 </td>
Marc Kupietz5f780672016-02-25 17:15:54 +0100840 <td align="right">
Marc Kupietzd5642582016-03-19 22:23:13 +0100841 <%= $c->{pos} %>:
842 </td>
843 <td align="right">
844 <%= sprintf("%.3f", $c->{dist}) %>
845 </td>
Marc Kupietzb864ccf2016-03-21 22:40:03 +0100846 <td align="right">
847 <%= sprintf("%.3e", $c->{norm}) %>
848 </td>
Marc Kupietzd5642582016-03-19 22:23:13 +0100849 <td align="left">
850 <a href="/?word=<%= $c->{word} %>">
851 <%= $c->{word} %>
Marc Kupietz5f780672016-02-25 17:15:54 +0100852 </td>
Marc Kupietz4aa62172016-02-25 10:39:27 +0100853 </tr>
854 % }
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100855 % }
Marc Kupietz4aa62172016-02-25 10:39:27 +0100856 </table>
857 <script>
858 % use Mojo::ByteStream 'b';
859 $(window).load(function() {
Marc Kupietz5f780672016-02-25 17:15:54 +0100860 showMap(<%= b(Mojo::JSON::to_json({target => " $word ", words => \@words, vecs => \@vecs, ranks => \@ranks})); %>);
Marc Kupietz4aa62172016-02-25 10:39:27 +0100861 });
862 </script>
863 % }
864 <div id="second" style="width:800px; height:800px; font-family: arial;">
865 <div id="embed">
866 </div>
Marc Kupietz4aa62172016-02-25 10:39:27 +0100867 </div>
Marc Kupietzb1029362016-02-27 21:38:55 +0100868 <div id="cost"></div>
Marc Kupietzd7aea722016-03-02 11:59:12 +0100869 % if($show_som) {
870 <div id="som2">
871 </div>
Marc Kupietz6c1ca442016-03-03 09:35:18 +0100872 <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 +0100873 <div id="sominfo">SOM iteration <span id="iterations">0</span></div>
874 % }
Marc Kupietz4aa62172016-02-25 10:39:27 +0100875 </div>
876 <p>
877 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 +0200878 <pre>
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100879-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 +0100880 </pre>
881 </p>
882</body>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200883</html>
884