blob: f51f9daacc6d576d91b6e55584d0c5f7ccbb960c [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;
79 for (a = 0; a < size; a++) fread(&M[a + b * size], sizeof(float), 1, f);
80 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;
118 sprintf(stringBuffer, "\n<pre>Word: \"%s\" Position in vocabulary: %lld</pre>\n", st[a], bi[a]);
119 if (b == -1) {
120 sprintf(stringBuffer+strlen(stringBuffer), "Out of dictionary word!\n");
121 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;
138 for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
139 if (a == 1) continue;
140 dist = 0;
141 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
142 for (a = 0; a < N; a++) {
143 if (dist > bestd[a]) {
144 for (d = N - 1; d > a; d--) {
145 bestd[d] = bestd[d - 1];
146 strcpy(bestw[d], bestw[d - 1]);
147 }
148 bestd[a] = dist;
Marc Kupietzc4893362016-02-25 08:04:46 +0100149 besti[a] = c;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200150 strcpy(bestw[a], &vocab[c * max_w]);
151 break;
152 }
153 }
154 }
Marc Kupietz247500f2015-10-09 11:29:01 +0200155 AV* array = newAV();
156 for (a = 0; a < N; a++) {
157 HV* hash = newHV();
158 hv_store(hash, "word", strlen("word"), newSVpvf(bestw[a], 0), 0);
159 hv_store(hash, "dist", strlen("dist"), newSVnv(bestd[a]), 0);
Marc Kupietzc4893362016-02-25 08:04:46 +0100160 AV *vector = newAV();
161 for (b = 0; b < size; b++) {
162 av_push(vector, newSVnv(M[b + besti[a] * size]));
163 }
164 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
Marc Kupietz247500f2015-10-09 11:29:01 +0200165 av_push(array, newRV_noinc((SV*)hash));
166 }
167 end:
168 return newRV_noinc((SV*)array);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200169}
170
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100171
Marc Kupietzdc22b982015-10-09 09:19:34 +0200172__DATA__
173
174@@ index.html.ep
175<!DOCTYPE html>
176<html>
Marc Kupietzc4893362016-02-25 08:04:46 +0100177<head>
178 <title>DeReKo-Word-Vector-Distances</title>
179 <script src="http://code.jquery.com/jquery-latest.min.js"></script>
180 <script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
181 <script src="http://klinux10/word2vec/tsne.js"></script>
182<style>
183svg {
184// border: 1px solid #333;
185// margin-right: 5px;
186// margin-bottom: 5px;
187}
188#wrapper {
189 width: 100%;
190// border: 1px solid red;
191 overflow: hidden; /* will contain if #first is longer than #second */
192}
193#first {
194 width: 300px;
195 margin-right: 20px;
196 float:left; /* add this */
197// border: 1px solid green;
198}
199#second {
200 border: 1px solid #333;
201 overflow: hidden; /* if you don't want #second to wrap below #first */
202}
203</style>
204<script>
205
206var opt = {epsilon: 1, perplexity: 8};
207var T = new tsnejs.tSNE(opt); // create a tSNE instance
208
209var Y;
210
211var data;
212
213function updateEmbedding() {
214 var Y = T.getSolution();
215 svg.selectAll('.u')
216 .data(data.words)
217 .attr("transform", function(d, i) { return "translate(" +
218 ((Y[i][0]*20*ss + tx) + 400) + "," +
219 ((Y[i][1]*20*ss + ty) + 400) + ")"; });
220}
221
222var svg;
223function drawEmbedding() {
224 $("#embed").empty();
225 var div = d3.select("#embed");
226
227 // get min and max in each column of Y
228 var Y = T.Y;
229
230 svg = div.append("svg") // svg is global
231 .attr("width", 800)
232 .attr("height", 800);
233
234 var g = svg.selectAll(".b")
235 .data(data.words)
236 .enter().append("g")
237 .attr("class", "u");
238
239 g.append("text")
240 .attr("text-anchor", "top")
241 .attr("font-size", 12)
242 .attr("fill", "#333")
243 .text(function(d) { return d; });
244
245 var zoomListener = d3.behavior.zoom()
246 .scaleExtent([0.1, 10])
247 .center([0,0])
248 .on("zoom", zoomHandler);
249 zoomListener(svg);
250}
251
252var tx=0, ty=0;
253var ss=1;
254var iter_id=-1;
255
256function zoomHandler() {
257 tx = d3.event.translate[0];
258 ty = d3.event.translate[1];
259 ss = d3.event.scale;
260 updateEmbedding();
261}
262
263var stepnum = 0;
264
265function stopStep() {
266 clearInterval(iter_id);
267}
268
269function step() {
270 var i = T.iter;
271 if(i >= 1000) {
272 stopStep();
273 } else {
274 var cost = T.step(); // do a few steps
275 $("#cost").html("iteration " + i + ", cost: " + cost);
276 updateEmbedding();
277 }
278}
279
280 function showMap(j) {
281 data=j;
282 T.iter=0;
283 T.initDataRaw(data.vecs); // init embedding
284 drawEmbedding(); // draw initial embedding
285
286 if(iter_id >= 0) {
287 clearInterval(iter_id);
288 }
289 //T.debugGrad();
290 iter_id = setInterval(step, 1);
291 //step();
292 }
293
294$(window).xxload(function() {
295 $.getJSON( "http://klinux10/word2vec/dings.json", function( j ) {
296 data = j;
297 T.initDataRaw(data.vecs); // init embedding
298 drawEmbedding(); // draw initial embedding
299
300 // T.debugGrad();
301 iter_id = setInterval(step, 1);
302 // step();
303
304 });
305});
306
307</script>
308</head>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200309<body>
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100310 <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 +0200311 <pre>
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100312-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 +0200313</pre>
314</p>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200315 <form action="<%=url_for('/')->to_abs%>" method="GET">
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100316 Word: <input type="text" name="word" value="<%= $word %>">
317 Neighbours: <input type="text" name="n" value="<%= $no_nbs %>">
Marc Kupietzdc22b982015-10-09 09:19:34 +0200318 <input type="submit" value="Show neighbours">
319 </form>
320 <br>
Marc Kupietz247500f2015-10-09 11:29:01 +0200321 % if($list) {
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100322 <h3>Nearest neighbours of "<%= $word %>"</h3>
Marc Kupietzc4893362016-02-25 08:04:46 +0100323<div id="wrapper">
324 <table id="first">
Marc Kupietz247500f2015-10-09 11:29:01 +0200325 <tr>
326 <th align="right">Pos.</th><th align="left">Word</th><th align="right">Cosine dist.</th>
327 </tr>
Marc Kupietzc4893362016-02-25 08:04:46 +0100328 % my $i=1; my @words; my @vecs; for my $item (@$list) {
329 % push @vecs, $item->{vector};
330 % push @words, $item->{word};
Marc Kupietz247500f2015-10-09 11:29:01 +0200331 <tr>
332 <td align="right">
333 <%= $i++ %>.
334 </td>
335 <td>
336 <a href="/?word=<%= $item->{word} %>">
337 <%= $item->{word} %>
338 </a>
339 </td>
340 <td align="right">
341 <%= sprintf("%.3f", $item->{dist}) %>
342 </td>
343 </tr>
344 % }
345 </table>
Marc Kupietzc4893362016-02-25 08:04:46 +0100346 <script>
347 % use Mojo::ByteStream 'b';
348$(window).load(function() {
349 showMap(<%= b(Mojo::JSON::to_json({words => \@words, vecs => \@vecs})); %>);
350});
351 </script>
Marc Kupietz247500f2015-10-09 11:29:01 +0200352 % }
Marc Kupietzc4893362016-02-25 08:04:46 +0100353<div id="second" style="width:800px; height:800px; font-family: arial;">
354<div id="embed"></div>
355<div id="cost" style="text-align:left; font-family: Impact;"></div>
356 </div>
357 </div>
358 </body>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200359</html>
360