blob: 2bc555fddfd28c47e662f6d94d26fc4bcf6536b3 [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 Kupietz7bc85fd2016-02-24 11:42:41 +01006use Mojo::Server::Daemon;
Marc Kupietzdc22b982015-10-09 09:19:34 +02007
Marc Kupietz7bc85fd2016-02-24 11:42:41 +01008# -cbow 1 -size 200 -window 8 -negative 25 -hs 0 -sample 1e-4 -threads 40 -binary 1 -iter 15
Marc Kupietzc4893362016-02-25 08:04:46 +01009init_net("vectors14.bin");
Marc Kupietzdc22b982015-10-09 09:19:34 +020010
11get '/' => sub {
12 my $c = shift;
13 my $word=$c->param('word');
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010014 my $no_nbs=$c->param('n') || 50;
Marc Kupietz247500f2015-10-09 11:29:01 +020015 my $list;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010016 if(defined($word) && $word !~ /^\s*$/) {
17 $c->inactivity_timeout(300);
18 $c->app->log->debug('Looking for neighbours of '.$word);
19 $list = get_neighbours(encode("iso-8859-1", $word), $no_nbs);
Marc Kupietz247500f2015-10-09 11:29:01 +020020 }
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010021 $c->render(template=>"index", word=>$word, no_nbs=>$no_nbs, list=> $list);
Marc Kupietzdc22b982015-10-09 09:19:34 +020022};
23
24app->start;
25
26exit;
27
28__END__
29
30__C__
31#include <stdio.h>
32#include <string.h>
33#include <math.h>
34#include <malloc.h>
35#include <stdlib.h> //strlen
36
37#define max_size 2000
38#define max_w 50
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010039#define MAX_NEIGHBOURS 1000
Marc Kupietzdc22b982015-10-09 09:19:34 +020040
41//the thread function
42void *connection_handler(void *);
43
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010044char *bestw[MAX_NEIGHBOURS];
Marc Kupietzdc22b982015-10-09 09:19:34 +020045char file_name[max_size], st[100][max_size];
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010046float dist, len, bestd[MAX_NEIGHBOURS], vec[max_size];
Marc Kupietzc4893362016-02-25 08:04:46 +010047long long words, size, a, b, c, d, cn, bi[100], besti[MAX_NEIGHBOURS];
Marc Kupietzdc22b982015-10-09 09:19:34 +020048char ch;
49float *M;
50char *vocab;
51char *stringBuffer;
52
53int init_net(char *file_name) {
54 FILE *f;
55
56 stringBuffer = malloc(64000);
57 f = fopen(file_name, "rb");
58 if (f == NULL) {
59 printf("Input file %s not found\n", file_name);
60 return -1;
61 }
62 fscanf(f, "%lld", &words);
63 fscanf(f, "%lld", &size);
64 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010065 for (a = 0; a < MAX_NEIGHBOURS; a++) bestw[a] = (char *)malloc(max_size * sizeof(char));
Marc Kupietzdc22b982015-10-09 09:19:34 +020066 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
67 if (M == NULL) {
68 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
69 return -1;
70 }
71 for (b = 0; b < words; b++) {
72 a = 0;
73 while (1) {
74 vocab[b * max_w + a] = fgetc(f);
75 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
76 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
77 }
78 vocab[b * max_w + a] = 0;
Marc Kupietz30a43212016-02-25 08:12:00 +010079 fread(&M[b * size], sizeof(float), size, f);
Marc Kupietzdc22b982015-10-09 09:19:34 +020080 len = 0;
81 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
82 len = sqrt(len);
83 for (a = 0; a < size; a++) M[a + b * size] /= len;
84 }
85 fclose(f);
86 return 0;
87}
88
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010089SV *get_neighbours(char *st1, int N) {
90 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
91
Marc Kupietzdc22b982015-10-09 09:19:34 +020092 FILE *out=stdout;
93 *stringBuffer=0;
94
95 for (a = 0; a < N; a++) bestd[a] = 0;
96 for (a = 0; a < N; a++) bestw[a][0] = 0;
97 a = 0;
98 cn = 0;
99 b = 0;
100 c = 0;
101 while (1) {
102 st[cn][b] = st1[c];
103 b++;
104 c++;
105 st[cn][b] = 0;
106 if (st1[c] == 0) break;
107 if (st1[c] == ' ') {
108 cn++;
109 b = 0;
110 c++;
111 }
112 }
113 cn++;
114 for (a = 0; a < cn; a++) {
115 for (b = 0; b < words; b++) if (!strcmp(&vocab[b * max_w], st[a])) break;
116 if (b == words) b = -1;
117 bi[a] = b;
Marc Kupietze8da3062016-02-25 08:37:53 +0100118 fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", st[a], bi[a]);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200119 if (b == -1) {
Marc Kupietze8da3062016-02-25 08:37:53 +0100120 fprintf(stderr, "Out of dictionary word!\n");
Marc Kupietzdc22b982015-10-09 09:19:34 +0200121 break;
122 }
123 }
Marc Kupietz247500f2015-10-09 11:29:01 +0200124 if (b == -1) goto end;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200125 for (a = 0; a < size; a++) vec[a] = 0;
126 for (b = 0; b < cn; b++) {
127 if (bi[b] == -1) continue;
128 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
129 }
130 len = 0;
131 for (a = 0; a < size; a++) len += vec[a] * vec[a];
132 len = sqrt(len);
133 for (a = 0; a < size; a++) vec[a] /= len;
134 for (a = 0; a < N; a++) bestd[a] = -1;
135 for (a = 0; a < N; a++) bestw[a][0] = 0;
136 for (c = 0; c < words; c++) {
137 a = 0;
Marc Kupietze8da3062016-02-25 08:37:53 +0100138// don not skip taget word
139// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
140// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200141 dist = 0;
142 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
143 for (a = 0; a < N; a++) {
144 if (dist > bestd[a]) {
145 for (d = N - 1; d > a; d--) {
146 bestd[d] = bestd[d - 1];
147 strcpy(bestw[d], bestw[d - 1]);
148 }
149 bestd[a] = dist;
Marc Kupietzc4893362016-02-25 08:04:46 +0100150 besti[a] = c;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200151 strcpy(bestw[a], &vocab[c * max_w]);
152 break;
153 }
154 }
155 }
Marc Kupietz247500f2015-10-09 11:29:01 +0200156 AV* array = newAV();
157 for (a = 0; a < N; a++) {
158 HV* hash = newHV();
159 hv_store(hash, "word", strlen("word"), newSVpvf(bestw[a], 0), 0);
160 hv_store(hash, "dist", strlen("dist"), newSVnv(bestd[a]), 0);
Marc Kupietzc4893362016-02-25 08:04:46 +0100161 AV *vector = newAV();
162 for (b = 0; b < size; b++) {
163 av_push(vector, newSVnv(M[b + besti[a] * size]));
164 }
165 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
Marc Kupietz247500f2015-10-09 11:29:01 +0200166 av_push(array, newRV_noinc((SV*)hash));
167 }
168 end:
169 return newRV_noinc((SV*)array);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200170}
171
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100172
Marc Kupietzdc22b982015-10-09 09:19:34 +0200173__DATA__
174
175@@ index.html.ep
176<!DOCTYPE html>
177<html>
Marc Kupietzc4893362016-02-25 08:04:46 +0100178<head>
179 <title>DeReKo-Word-Vector-Distances</title>
180 <script src="http://code.jquery.com/jquery-latest.min.js"></script>
181 <script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
182 <script src="http://klinux10/word2vec/tsne.js"></script>
183<style>
184svg {
185// border: 1px solid #333;
186// margin-right: 5px;
187// margin-bottom: 5px;
188}
189#wrapper {
190 width: 100%;
191// border: 1px solid red;
192 overflow: hidden; /* will contain if #first is longer than #second */
193}
194#first {
195 width: 300px;
196 margin-right: 20px;
197 float:left; /* add this */
198// border: 1px solid green;
199}
200#second {
201 border: 1px solid #333;
202 overflow: hidden; /* if you don't want #second to wrap below #first */
203}
204</style>
205<script>
206
207var opt = {epsilon: 1, perplexity: 8};
208var T = new tsnejs.tSNE(opt); // create a tSNE instance
209
210var Y;
211
212var data;
213
214function updateEmbedding() {
215 var Y = T.getSolution();
216 svg.selectAll('.u')
217 .data(data.words)
218 .attr("transform", function(d, i) { return "translate(" +
219 ((Y[i][0]*20*ss + tx) + 400) + "," +
220 ((Y[i][1]*20*ss + ty) + 400) + ")"; });
221}
222
223var svg;
224function drawEmbedding() {
225 $("#embed").empty();
226 var div = d3.select("#embed");
227
228 // get min and max in each column of Y
229 var Y = T.Y;
230
231 svg = div.append("svg") // svg is global
232 .attr("width", 800)
233 .attr("height", 800);
234
235 var g = svg.selectAll(".b")
236 .data(data.words)
237 .enter().append("g")
238 .attr("class", "u");
239
240 g.append("text")
241 .attr("text-anchor", "top")
242 .attr("font-size", 12)
Marc Kupietze8da3062016-02-25 08:37:53 +0100243 .attr("fill", function(d) {
244 if(d == data.target) {
245 return "red";
246 } else {
247 return "#333"
248 }
249 })
Marc Kupietzc4893362016-02-25 08:04:46 +0100250 .text(function(d) { return d; });
251
252 var zoomListener = d3.behavior.zoom()
253 .scaleExtent([0.1, 10])
254 .center([0,0])
255 .on("zoom", zoomHandler);
256 zoomListener(svg);
257}
258
259var tx=0, ty=0;
260var ss=1;
261var iter_id=-1;
262
263function zoomHandler() {
264 tx = d3.event.translate[0];
265 ty = d3.event.translate[1];
266 ss = d3.event.scale;
267 updateEmbedding();
268}
269
270var stepnum = 0;
271
272function stopStep() {
273 clearInterval(iter_id);
274}
275
276function step() {
277 var i = T.iter;
278 if(i >= 1000) {
279 stopStep();
280 } else {
281 var cost = T.step(); // do a few steps
282 $("#cost").html("iteration " + i + ", cost: " + cost);
283 updateEmbedding();
284 }
285}
286
287 function showMap(j) {
288 data=j;
289 T.iter=0;
290 T.initDataRaw(data.vecs); // init embedding
291 drawEmbedding(); // draw initial embedding
292
293 if(iter_id >= 0) {
294 clearInterval(iter_id);
295 }
296 //T.debugGrad();
297 iter_id = setInterval(step, 1);
298 //step();
299 }
300
301$(window).xxload(function() {
302 $.getJSON( "http://klinux10/word2vec/dings.json", function( j ) {
303 data = j;
304 T.initDataRaw(data.vecs); // init embedding
305 drawEmbedding(); // draw initial embedding
306
307 // T.debugGrad();
308 iter_id = setInterval(step, 1);
309 // step();
310
311 });
312});
313
314</script>
315</head>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200316<body>
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100317 <p>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 +0200318 <pre>
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100319-cbow 1 -size 300 -window 7 -negative 5 -hs 0 -sample 1e-5 -threads 44 -binary 1 -iter 5
Marc Kupietz247500f2015-10-09 11:29:01 +0200320</pre>
321</p>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200322 <form action="<%=url_for('/')->to_abs%>" method="GET">
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100323 Word: <input type="text" name="word" value="<%= $word %>">
324 Neighbours: <input type="text" name="n" value="<%= $no_nbs %>">
Marc Kupietzdc22b982015-10-09 09:19:34 +0200325 <input type="submit" value="Show neighbours">
326 </form>
327 <br>
Marc Kupietz247500f2015-10-09 11:29:01 +0200328 % if($list) {
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100329 <h3>Nearest neighbours of "<%= $word %>"</h3>
Marc Kupietzc4893362016-02-25 08:04:46 +0100330<div id="wrapper">
331 <table id="first">
Marc Kupietz247500f2015-10-09 11:29:01 +0200332 <tr>
333 <th align="right">Pos.</th><th align="left">Word</th><th align="right">Cosine dist.</th>
334 </tr>
Marc Kupietzc4893362016-02-25 08:04:46 +0100335 % my $i=1; my @words; my @vecs; for my $item (@$list) {
336 % push @vecs, $item->{vector};
337 % push @words, $item->{word};
Marc Kupietz247500f2015-10-09 11:29:01 +0200338 <tr>
339 <td align="right">
340 <%= $i++ %>.
341 </td>
342 <td>
343 <a href="/?word=<%= $item->{word} %>">
344 <%= $item->{word} %>
345 </a>
346 </td>
347 <td align="right">
348 <%= sprintf("%.3f", $item->{dist}) %>
349 </td>
350 </tr>
351 % }
352 </table>
Marc Kupietzc4893362016-02-25 08:04:46 +0100353 <script>
354 % use Mojo::ByteStream 'b';
355$(window).load(function() {
Marc Kupietze8da3062016-02-25 08:37:53 +0100356 showMap(<%= b(Mojo::JSON::to_json({target => $word, words => \@words, vecs => \@vecs})); %>);
Marc Kupietzc4893362016-02-25 08:04:46 +0100357});
358 </script>
Marc Kupietz247500f2015-10-09 11:29:01 +0200359 % }
Marc Kupietzc4893362016-02-25 08:04:46 +0100360<div id="second" style="width:800px; height:800px; font-family: arial;">
361<div id="embed"></div>
362<div id="cost" style="text-align:left; font-family: Impact;"></div>
363 </div>
364 </div>
365 </body>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200366</html>
367