blob: 7a899b54e620918e04f2485238e916d046073b4c [file] [log] [blame]
Marc Kupietz83305222016-04-28 09:57:22 +02001<!DOCTYPE html>
2<html>
3 <head>
Marc Kupietz58270662017-12-04 12:10:06 +01004 <title>DeReKo-Word-Vector-Distances: <%= $word %></title>
Marc Kupietz80bd7b92017-07-04 16:25:54 +02005 <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
Marc Kupietz58270662017-12-04 12:10:06 +01006 <link href="https://fonts.googleapis.com/css?family=Lato|Roboto+Condensed" rel="stylesheet">
Marc Kupietz80bd7b92017-07-04 16:25:54 +02007 <script src="http://code.jquery.com/jquery-latest.min.js"></script>
Marc Kupietz58270662017-12-04 12:10:06 +01008 <script src = "https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script>
9 <script src = "https://cdn.datatables.net/fixedcolumns/3.2.3/js/dataTables.fixedColumns.min.js"></script>
10 <script src = "https://cdn.datatables.net/plug-ins/1.10.16/sorting/scientific.js"></script>
11 <link rel="stylesheet" href="https://cdn.datatables.net/1.10.16/css/jquery.dataTables.min.css">
Marc Kupietz80bd7b92017-07-04 16:25:54 +020012 <script
Marc Kupietz58270662017-12-04 12:10:06 +010013 src="http://code.jquery.com/ui/1.12.1/jquery-ui.min.js"
14 integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU="
15 crossorigin="anonymous"></script>
Marc Kupietz80bd7b92017-07-04 16:25:54 +020016 <script>
Marc Kupietz58270662017-12-04 12:10:06 +010017 var urlParams = new URLSearchParams(window.location.search);
Marc Kupietza6e08f02017-12-01 22:06:21 +010018
Marc Kupietz4abcd682017-11-28 20:51:08 +010019 $('#firstable').hide();
Marc Kupietz58270662017-12-04 12:10:06 +010020 $(document).ready(function() {
Marc Kupietz694610d2017-11-25 18:30:03 +010021
Marc Kupietz58270662017-12-04 12:10:06 +010022 $("input").bind("keydown", function(event) {
23 // track enter key
24 var keycode = (event.keyCode ? event.keyCode : (event.which ? event.which : event.charCode));
25 if (keycode == 13) { // keycode for enter key
26 // force the 'Enter Key' to implicitly click the Update button
27 document.getElementById('SEARCH').click();
28 return false;
29 } else {
30 return true;
31 }});
Marc Kupietzdab9f222017-11-29 14:22:59 +010032
Marc Kupietz58270662017-12-04 12:10:06 +010033 $( "#tabs" ).on( "tabsactivate", function( event, ui ) {
34 if (localStorage) localStorage['tab'] = ui.newTab.index();
35 });
Marc Kupietz0af83e32017-11-27 09:31:37 +010036
Marc Kupietz58270662017-12-04 12:10:06 +010037 $(function(){
38 $("#SEARCH").click(function() {
39 window.open($(location).attr('pathname')+'?'+$('form').serialize(), "_self");
40 });
41 });
Marc Kupietz2f6b74a2017-12-01 13:20:21 +010042
Marc Kupietz58270662017-12-04 12:10:06 +010043 function changeCharColor(txt, heat) {
44 var newText = "";
45 for (var i=0, l=txt.length; i<l; i++) {
46 newText += (i == 5 ? txt.charAt(i) : '<span style="background-color:'+getHeatColor(heat[i]/maxHeat)+'">'+txt.charAt(i)+'</span>');
47 }
48 return newText;
Marc Kupietzb6c615d2017-12-02 10:38:20 +010049 }
Marc Kupietzb6c615d2017-12-02 10:38:20 +010050
Marc Kupietz58270662017-12-04 12:10:06 +010051 function getHeatColor(value) {
52 var hue=((1-value)*120).toString(10);
53 return ["hsl(",hue,",90%,70%)"].join("");
Marc Kupietz0d4c0ca2017-12-04 09:18:56 +010054 }
Marc Kupietz0d4c0ca2017-12-04 09:18:56 +010055
Marc Kupietz58270662017-12-04 12:10:06 +010056 function bitvec2window(n, heat) {
57 var str = n.toString(2).padStart(10, "0")
58 .replace(/^([0-9]{5})/, '$1x')
59 .replace(/0/g, '·')
60 .replace(/1/g, '+');
61 return changeCharColor(str, heat);
Marc Kupietzddaba632017-12-02 17:30:56 +010062 }
Marc Kupietz6e2fc102017-12-01 22:07:23 +010063
Marc Kupietz58270662017-12-04 12:10:06 +010064 % use Mojo::ByteStream 'b';
65 % my $urlprefix = url_with->query([word=>'']);
66 var paraResults = <%= b(Mojo::JSON::to_json($lists)) %>;
67 var urlprefix = new URLSearchParams(window.location.search);
Marc Kupietz451f8d82017-12-04 13:19:47 +010068 if (paraResults.length > 0 && paraResults[0] != null) {
Marc Kupietz58270662017-12-04 12:10:06 +010069 var nvecs = [],
70 nwords = [],
71 nranks = [],
72 nmarked = [];
73 for(var i = 0; i < paraResults.length; i++) {
74 nwords = nwords.concat(paraResults[i].map(function(a){return a.word;}));
75 nvecs = nvecs.concat(paraResults[i].map(function(a){return a.vector;}));
76 nranks = nranks.concat(paraResults[i].map(function(a){return a.rank;}));
77 nmarked = nmarked.concat(paraResults[i].map(function(a){return a.marked;}));
78 }
79 showMap({target: " "+urlParams.get('word')+" ", mergedEnd: 0, words: nwords, vecs: nvecs, ranks: nranks, marked: nmarked, urlprefix: "?"+urlprefix} );
80 var t = $('#firsttable').DataTable({
81 data: paraResults[0],
82 "sScrollY": "780px",
83 "bScrollCollapse": true,
84 "bPaginate": false,
85 "bJQueryUI": true,
86 "dom": '<"top">rt<"bottom"flp><"clear">',
87 "columns": [
88 { "data": "rank", type: "allnumeric" },
89 { "data": "dist", render: function ( data, type, row ) {return data.toFixed(3) }},
90 { "data": "word", render: function ( data, type, row ) {urlprefix.set("word", data); return '<a href="?' + urlprefix + '">' + data + '</a>' }}
91 ],
92 "columnDefs": [
93 { className: "dt-right", "targets": [0,1] },
94 { "searchable": false,
95 "orderable": false,
96 "targets": 0
97 },
98 { "orderSequence": [ "desc" ], "targets": [ 1 ] },
99 { "orderSequence": [ "asc", "desc" ], "targets": [ 2 ] },
100 ],
101 "order": [[ 1, 'desc' ]],
102 } );
Marc Kupietz6e2fc102017-12-01 22:07:23 +0100103
Marc Kupietz58270662017-12-04 12:10:06 +0100104 t.on( 'order.dt search.dt', function () {
105 t.column(0, {order:'applied'}).nodes().each( function (cell, i) {
106 cell.innerHTML = i+1;
107 } );
108 } ).draw();
Marc Kupietzdab9f222017-11-29 14:22:59 +0100109
Marc Kupietz58270662017-12-04 12:10:06 +0100110 $( "#first" ).clone().prependTo( "#tabs-2" );
Marc Kupietzb6c615d2017-12-02 10:38:20 +0100111
Marc Kupietz58270662017-12-04 12:10:06 +0100112 }
Marc Kupietzdab9f222017-11-29 14:22:59 +0100113
Marc Kupietz58270662017-12-04 12:10:06 +0100114 var collocatorData = <%= b(Mojo::JSON::to_json($collocators)) %>;
115 var maxHeat; // = Math.max.apply(Math,collocatorData.map(function(o){return o.cprob;}))
Marc Kupietz3305b0a2017-11-27 10:46:20 +0100116
Marc Kupietz58270662017-12-04 12:10:06 +0100117 if (collocatorData != null) {
118 maxHeat = Math.max.apply(Math,collocatorData.map(function(o){return Math.max.apply(Math,o.heat);}))
119 var t = $('#secondtable').DataTable({
120 data: collocatorData,
121 "sScrollY": "780px",
122 "bScrollCollapse": true,
123 "bPaginate": false,
124 "bJQueryUI": true,
125 "dom": '<"top">rt<"bottom"flp><"clear">',
126 "columns": [
127 { "data": "rank", type: "allnumeric" },
128 { "data": "pos", width: "7%", sClass: "dt-center mono compact", render: function ( data, type, row ) {return bitvec2window(data, row.heat) }},
129 { "data": "max", render: function ( data, type, row ) {return data.toFixed(3) }},
130 { "data": "conorm", render: function ( data, type, row ) {return data.toFixed(3) }},
131 { "data": "prob", type: "scientific", render: function ( data, type, row ) {return data.toExponential(3) } },
132 { "data": "cprob", type: "scientific", render: function ( data, type, row ) {return data.toExponential(3) } },
133 { "data": "overall", type: "scientific", render: function ( data, type, row ) {return data.toExponential(3) } },
134 { "data": "word", sClass: "collocator" }
135 ],
136 "columnDefs": [
137 { className: "dt-right", "targets": [0,2,3,4,5,6] },
138 { className: "dt-center", "targets": [ 1] },
139 { "searchable": false,
140 "orderable": false,
141 "targets": 0
142 },
143 { "type": "scientific", targets: [2,3,4,5,6] },
144 { "orderSequence": [ "desc" ], "targets": [ 2, 3, 4, 5, 6 ] },
145 { "orderSequence": [ "asc", "desc" ], "targets": [ 1, 7 ] },
146 ],
147 "order": [[ 4, 'desc' ]],
148 } );
Marc Kupietz4abcd682017-11-28 20:51:08 +0100149
Marc Kupietz58270662017-12-04 12:10:06 +0100150 t.on( 'order.dt search.dt', function () {
151 t.column(0, {order:'applied'}).nodes().each( function (cell, i) {
152 cell.innerHTML = i+1;
153 } );
154 } ).draw();
155
156 if (localStorage) { // let's not crash if some user has IE7
157 var index = parseInt(localStorage['tab']||'0');
158 $("#tabs").tabs({ active: index });
159 }
160 }
161 $("#tabs").css("visibility", "visible"); // now we can show the tabs
162
163 });
164
165 $(function(){
166 $("#dropdownoptions").dialog({
167 title: "Options",
168 autoOpen: false,
169 modal: false,
170 draggable: false,
171 height: "auto",
172 width: "auto",
173 resizable: false,
174 buttons: {
175 "Cancel": function() {
176 $( this ).dialog( "close" );
177 },
178 "Apply": function() {
179 window.open($(location).attr('pathname')+'?'+$('form').serialize(), "_self");
180 }
181 }
182 });
183 });
184
185 $(function(){
186 $("td.collocator").click(function(){
187 queryKorAPCII(this.textContent + " /w5 " + urlParams.get('word'));
188 });
189 });
190
191 $(function(){
192 $("#showoptions").click(function(){
193 $("#dropdownoptions").dialog("open");
194 var target = $(this);
195 $("#dropdownoptions").dialog("widget").position({
196 my: 'left bottom',
197 at: 'left bottom',
198 of: target
199 });
200 });
201 });
Marc Kupietz4abcd682017-11-28 20:51:08 +0100202
203 $( function() {
Marc Kupietz58270662017-12-04 12:10:06 +0100204 $( "#no_iterations" ).spinner({
205 spin: function( event, ui ) {
206 if ( ui.value < 1000 ) {
207 $( this ).spinner( "value", 1000 );
208 return false;
209 } else if ( ui.value > 10000 ) {
210 $( this ).spinner( "value", 10000 );
211 return false;
212 }
213 }
214 });
215 } );
Marc Kupietz4abcd682017-11-28 20:51:08 +0100216
Marc Kupietz58270662017-12-04 12:10:06 +0100217 $( function() {
218 $( "#neighbours" ).spinner({
219 spin: function( event, ui ) {
220 if ( ui.value < 0 ) {
221 $( this ).spinner( "value", 0 );
222 return false;
223 } else if ( ui.value > 200 ) {
224 $( this ).spinner( "value", 200 );
225 return false;
226 }
227 }
228 });
229 } );
Marc Kupietz4abcd682017-11-28 20:51:08 +0100230
Marc Kupietz58270662017-12-04 12:10:06 +0100231 $( function() {
232 $( "#cutoff" ).spinner({
233 spin: function( event, ui ) {
234 if ( ui.value < 100000 ) {
235 $( this ).spinner( "value", 100000 );
236 return false;
237 } else if ( ui.value > 2000000 ) {
238 $( this ).spinner( "value", 2000000 );
239 return false;
240 }
241 }
242 });
243 } );
244
245 $( function() {
246 $( "#tabs" ).tabs().addClass('tabs-min');
247 } );
248
249 $( function() {
250 $( ".controlgroup-vertical" ).controlgroup({
251 "direction": "vertical"
252 });
253 } );
254
255 $(function() {
256 $( document ).tooltip({
257 content: function() {
258 return $(this).attr('title');
259 }}
260 )
261 })
Marc Kupietz694610d2017-11-25 18:30:03 +0100262
Marc Kupietz83305222016-04-28 09:57:22 +0200263 </script>
Marc Kupietz58270662017-12-04 12:10:06 +0100264 <script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
265 <script src="/derekovecs/js/tsne.js"></script>
266 <script src="/derekovecs/js/som.js"></script>
267 <script src="/derekovecs/js/labeler.js"></script>
Marc Kupietz83305222016-04-28 09:57:22 +0200268 <style>
269 body, input {
Marc Kupietz58270662017-12-04 12:10:06 +0100270 font-family: Lato, sans-serif;
271 font-size: 11pt;
Marc Kupietz83305222016-04-28 09:57:22 +0200272 }
Marc Kupietz30ca4342017-11-22 21:21:20 +0100273
Marc Kupietz58270662017-12-04 12:10:06 +0100274 h1, h2, h3 {
275 margin: 5px 10px 0 0;
276 color: rgb(246,168,0);
277 font-family: "Univers LT Std 47 Cn Lt", "Univers LT Std 67 Cn Lt", "Roboto Condensed", "Univers LT Std 67 Cn Bold", "UniversLTStd-BoldCn", "Times", 'League Gothic', Impact, sans-serif;
278 font-weight: bold;
279 line-height: 1.35;
280 letter-spacing: normal;
281 text-transform: uppercase;
282 text-shadow: none;
283 word-wrap: break-word;
284 }
Marc Kupietz34c08172017-11-29 17:08:47 +0100285
286
Marc Kupietz58270662017-12-04 12:10:06 +0100287 showoptions, #SEARCH {
288 margin-left: 10px;
289 margin-right: 10px;
290 }
Marc Kupietz6dbadd12017-11-29 16:43:33 +0100291
Marc Kupietz58270662017-12-04 12:10:06 +0100292 .tabs-left-vertical .ui-tabs-nav {
293 position: absolute;
294 width: 21em;
295 transform: translate(-100%,0%) rotate(-90deg);
296 transform-origin: 100% 0%;
297 }
Marc Kupietz4fcda0c2017-11-29 09:00:31 +0100298
Marc Kupietz58270662017-12-04 12:10:06 +0100299 .tabs-left-vertical .ui-tabs-nav li {
300 float: right;
301 }
Marc Kupietz4fcda0c2017-11-29 09:00:31 +0100302
Marc Kupietz58270662017-12-04 12:10:06 +0100303 .tabs-left-vertical .ui-tabs-panel {
304 padding-left: 3.5em;
305 }
Marc Kupietzdab9f222017-11-29 14:22:59 +0100306
Marc Kupietz58270662017-12-04 12:10:06 +0100307 .tabs-left-vertical .ui-tabs-panel {
308 height: 20em;
309 }
Marc Kupietz4fcda0c2017-11-29 09:00:31 +0100310
Marc Kupietz58270662017-12-04 12:10:06 +0100311 .mono {
312 font-family: "DejaVu Sans Mono", Inconsolata, SourceCodePro, Courier;
313 }
Marc Kupietz30ca4342017-11-22 21:21:20 +0100314
Marc Kupietz58270662017-12-04 12:10:06 +0100315 .ui-tooltip-content {
316 font-size: 9pt;
317 color: #222222;
318 }
Marc Kupietzf4b49392016-04-28 10:49:56 +0200319
Marc Kupietz58270662017-12-04 12:10:06 +0100320 svg > .ui-tooltip-content {
321 font-size: 8pt;
322 color: #222222;
323 }
Marc Kupietz34c08172017-11-29 17:08:47 +0100324
Marc Kupietz58270662017-12-04 12:10:06 +0100325 a.merged {
326 color: green;
327 fill: green;
328 }
Marc Kupietz34c08172017-11-29 17:08:47 +0100329
Marc Kupietz58270662017-12-04 12:10:06 +0100330 #first a {
331 text-decoration: none;
332 }
Marc Kupietz34c08172017-11-29 17:08:47 +0100333
Marc Kupietz58270662017-12-04 12:10:06 +0100334 a.marked, #first a.marked {
335 text-decoration: underline;
336 }
Marc Kupietz34c08172017-11-29 17:08:47 +0100337
Marc Kupietz58270662017-12-04 12:10:06 +0100338 a.target {
339 color: red;
340 fill: red;
341 }
Marc Kupietz694610d2017-11-25 18:30:03 +0100342
Marc Kupietz58270662017-12-04 12:10:06 +0100343 table.display {
344 width: 40% important!;
345 margin: 1; /* <- works for me this way ****/
346 }
Marc Kupietz34c08172017-11-29 17:08:47 +0100347
Marc Kupietz58270662017-12-04 12:10:06 +0100348 table.dataTable thead th, table.dataTable thead td, table.dataTable tbody td {
349 padding: 2px 2px;
350 // border-bottom: 1px solid #111;
351 }
Marc Kupietz4abcd682017-11-28 20:51:08 +0100352
Marc Kupietz58270662017-12-04 12:10:06 +0100353 #collocators {
354 margin-bottom: 15px;
355 }
Marc Kupietz4abcd682017-11-28 20:51:08 +0100356
Marc Kupietz58270662017-12-04 12:10:06 +0100357 #header {
358 width: 100%;
359 // border: 1px solid red;
360 overflow: hidden; /* will contain if #first is longer than #second */
361 }
Marc Kupietz81bf39c2017-11-29 17:04:35 +0100362
Marc Kupietz58270662017-12-04 12:10:06 +0100363 #topwrapper {
364 width: 100%;
365 // border: 1px solid red;
366 overflow: hidden; /* will contain if #first is longer than #second */
367 }
Marc Kupietz34c08172017-11-29 17:08:47 +0100368
Marc Kupietz58270662017-12-04 12:10:06 +0100369 #wrapper {
370 // border: 1px solid red;
371 overflow: hidden; /* will contain if #first is longer than #second */
372 }
Marc Kupietz34c08172017-11-29 17:08:47 +0100373
Marc Kupietz58270662017-12-04 12:10:06 +0100374 #pagetitle {
375 max-width: 460px;
376 margin-right: 20px;
377 float: left;
378 overflow: hidden; /* if you don't want #second to wrap below #first */
379 // border: 1px solid green;
380 }
Marc Kupietz4abcd682017-11-28 20:51:08 +0100381
Marc Kupietz58270662017-12-04 12:10:06 +0100382 #options {
383 float: left;
384 width: 800px;
385 margin: 10px;
386 overflow: hidden; /* if you don't want #second to wrap below #first */
387 }
Marc Kupietz81bf39c2017-11-29 17:04:35 +0100388
Marc Kupietz58270662017-12-04 12:10:06 +0100389 #word {
390 width: 50%;
391 }
Marc Kupietz81bf39c2017-11-29 17:04:35 +0100392
Marc Kupietz58270662017-12-04 12:10:06 +0100393 #first {
394 margin-right: 20px;
395 float: left;
396 overflow: hidden; /* if you don't want #second to wrap below #first */
397 // border: 1px solid green;
398 }
399 #tabs {
400 margin-right: 20px;
401 overflow: hidden; /* if you don't want #second to wrap below #first */
402 }
Marc Kupietzdf3d4b52017-11-29 16:57:27 +0100403
Marc Kupietz58270662017-12-04 12:10:06 +0100404 .tabs-min {
405 background: transparent;
406 border: none;
407 }
Marc Kupietzdf3d4b52017-11-29 16:57:27 +0100408
Marc Kupietz58270662017-12-04 12:10:06 +0100409 .tabs-min .ui-widget-header {
410 background: transparent;
411 border: none;
412 border-bottom: 1px solid #c0c0c0;
413 -moz-border-radius: 0px;
414 -webkit-border-radius: 0px;
415 border-radius: 0px;
416 }
Marc Kupietzdf3d4b52017-11-29 16:57:27 +0100417
Marc Kupietz58270662017-12-04 12:10:06 +0100418 .tabs-min .ui-tabs-nav .ui-state-default {
419 background: transparent;
420 border: none;
421 }
Marc Kupietzdf3d4b52017-11-29 16:57:27 +0100422
Marc Kupietz58270662017-12-04 12:10:06 +0100423 .tabs-min .ui-tabs-nav .ui-state-active {
424 background: transparent url(derekovecs/img/uiTabsArrow.png) no-repeat bottom center;
425 border: none;
426 }
Marc Kupietzdf3d4b52017-11-29 16:57:27 +0100427
Marc Kupietz58270662017-12-04 12:10:06 +0100428 .tabs-min .ui-tabs-nav .ui-state-default a {
429 color: #c0c0c0;
430 }
Marc Kupietzdf3d4b52017-11-29 16:57:27 +0100431
Marc Kupietz58270662017-12-04 12:10:06 +0100432 .tabs-min .ui-tabs-nav .ui-state-active a {
433 color: rgb(246,168,0);
434 }
Marc Kupietzdf3d4b52017-11-29 16:57:27 +0100435
Marc Kupietz58270662017-12-04 12:10:06 +0100436 #embed {
437 max-width: 802px;
438 border: 1px solid #333;
439 }
Marc Kupietz4abcd682017-11-28 20:51:08 +0100440
Marc Kupietz58270662017-12-04 12:10:06 +0100441 #second {
442 min-width: 800px;
443 // border: 1px solid #333;
444 overflow: hidden; /* if you don't want #second to wrap below #first */
445 }
446 #som2 svg {
447 border: 1px solid #333;
448 }
Marc Kupietz83305222016-04-28 09:57:22 +0200449
Marc Kupietz58270662017-12-04 12:10:06 +0100450 #cost {
451 font-size: 8pt;
452 color: #222222;
453 margin-top: 4px;
454 margin-bottom: 12px;
455 }
Marc Kupietz83305222016-04-28 09:57:22 +0200456
Marc Kupietz58270662017-12-04 12:10:06 +0100457 #sominfo1, #sominfo {
458 font-size: 8pt;
459 color: #222222;
460 margin-top: 0px;
461 }
Marc Kupietz83305222016-04-28 09:57:22 +0200462
Marc Kupietz58270662017-12-04 12:10:06 +0100463 #somcolor1, #somcolor2, #somcolor3 {
464 display: inline-block;
465 height: 10px;
466 width: 10px;
467 }
Marc Kupietz83305222016-04-28 09:57:22 +0200468
Marc Kupietz58270662017-12-04 12:10:06 +0100469 #third {
470 border: 1px solid #333;
471 }
Marc Kupietz83305222016-04-28 09:57:22 +0200472
473 </style>
474 <script>
475
476 var opt = {epsilon: <%= $epsilon %>, perplexity: <%= $perplexity %>},
Marc Kupietz58270662017-12-04 12:10:06 +0100477 mapWidth = 800, // width map
478 mapHeight = 800,
479 jitterRadius = 7;
Marc Kupietz83305222016-04-28 09:57:22 +0200480
481 var T = new tsnejs.tSNE(opt); // create a tSNE instance
482
483 var Y;
484
485 var data;
486 var labeler;
487
488 function applyJitter() {
Marc Kupietz58270662017-12-04 12:10:06 +0100489 svg.selectAll('.tsnet')
490 .data(labels)
491 .transition()
492 .duration(50)
493 .attr("transform", function(d, i) {
494 T.Y[i][0] = (d.x - mapWidth/2 - tx)/ss/20;
495 T.Y[i][1] = (d.y - mapHeight/2 - ty)/ss/20;
496 return "translate(" +
497 (d.x) + "," +
498 (d.y) + ")";
499 });
Marc Kupietz83305222016-04-28 09:57:22 +0200500 }
Marc Kupietz34c08172017-11-29 17:08:47 +0100501
Marc Kupietz83305222016-04-28 09:57:22 +0200502 function updateEmbedding() {
Marc Kupietz58270662017-12-04 12:10:06 +0100503 var Y = T.getSolution();
504 svg.selectAll('.tsnet')
505 .data(data.words)
506 .attr("transform", function(d, i) {
507 return "translate(" +
508 ((Y[i][0]*20*ss + tx) + mapWidth/2) + "," +
509 ((Y[i][1]*20*ss + ty) + mapHeight/2) + ")"; });
Marc Kupietz83305222016-04-28 09:57:22 +0200510 }
511
512 var svg;
513 var labels = [];
514 var anchor_array = [];
515 var text;
516
517 function drawEmbedding() {
Marc Kupietz58270662017-12-04 12:10:06 +0100518 var urlprefix = new URLSearchParams(window.location.search);
519 $("#embed").empty();
520 var div = d3.select("#embed");
Marc Kupietz34c08172017-11-29 17:08:47 +0100521
Marc Kupietz58270662017-12-04 12:10:06 +0100522 // get min and max in each column of Y
523 var Y = T.Y;
Marc Kupietz34c08172017-11-29 17:08:47 +0100524
Marc Kupietz58270662017-12-04 12:10:06 +0100525 svg = div.append("svg") // svg is global
526 .attr("width", mapWidth)
527 .attr("height", mapHeight);
Marc Kupietz34c08172017-11-29 17:08:47 +0100528
Marc Kupietz58270662017-12-04 12:10:06 +0100529 var g = svg.selectAll(".b")
530 .data(data.words)
531 .enter().append("g")
532 .attr("class", "tsnet");
Marc Kupietz34c08172017-11-29 17:08:47 +0100533
Marc Kupietz58270662017-12-04 12:10:06 +0100534 g.append("a")
535 .attr("xlink:href", function(word) {
536 urlprefix.set("word", word); return "?"+urlprefix; })
537 .attr("class", function(d, i) {
538 var res="";
539 if(data.marked[i]) {
540 res="marked ";
541 }
542 if(data.target.indexOf(" "+d+" ") >= 0) {
543 return res+"target";
544 } else if(data.ranks[i] < data.mergedEnd) {
545 return res+"merged";
546 } else {
547 return res;
548 }
549 })
550 .attr("title", function(d, i) {
551 if(data.mergedEnd > 0) {
552 if(data.ranks[i] >= data.mergedEnd) {
553 return "rank: "+i +" "+"freq. rank: "+(data.ranks[i]).toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
554 } else {
555 return "rank: "+i +" "+"freq. rank: "+data.ranks[i].toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",") + " (merged vocab)";
556 }
557 } else {
558 return "rank: "+i +" "+"freq. rank: "+data.ranks[i].toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
559 }
560 })
561 .append("text")
562 .attr("text-anchor", "top")
563 .attr("font-size", 12)
564 .text(function(d) { return d; });
Marc Kupietz34c08172017-11-29 17:08:47 +0100565
Marc Kupietz58270662017-12-04 12:10:06 +0100566 var zoomListener = d3.behavior.zoom()
567 .scaleExtent([0.1, 10])
568 .center([0,0])
569 .on("zoom", zoomHandler);
570 zoomListener(svg);
Marc Kupietz83305222016-04-28 09:57:22 +0200571 }
572
573 var tx=0, ty=0;
574 var ss=1;
575 var iter_id=-1;
576
577 function zoomHandler() {
Marc Kupietz58270662017-12-04 12:10:06 +0100578 tx = d3.event.translate[0];
579 ty = d3.event.translate[1];
580 ss = d3.event.scale;
581 updateEmbedding();
Marc Kupietz83305222016-04-28 09:57:22 +0200582 }
583
584 var stepnum = 0;
585
586 function stopStep() {
Marc Kupietz58270662017-12-04 12:10:06 +0100587 clearInterval(iter_id);
588 text = svg.selectAll("text");
Marc Kupietz34c08172017-11-29 17:08:47 +0100589
Marc Kupietz58270662017-12-04 12:10:06 +0100590 // jitter function needs different data and co-ordinate representation
591 labels = d3.range(data.words.length).map(function(i) {
592 var x = (T.Y[i][0]*20*ss + tx) + mapWidth/2;
593 var y = (T.Y[i][1]*20*ss + ty) + mapHeight/2;
594 anchor_array.push({x: x, y: y, r: jitterRadius});
595 return {
596 x: x,
597 y: y,
598 name: data.words[i]
599 };
600 });
Marc Kupietz34c08172017-11-29 17:08:47 +0100601
Marc Kupietz58270662017-12-04 12:10:06 +0100602 // get the actual label bounding boxes for the jitter function
603 var index = 0;
604 text.each(function() {
605 labels[index].width = this.getBBox().width;
606 labels[index].height = this.getBBox().height;
607 index += 1;
608 });
Marc Kupietz83305222016-04-28 09:57:22 +0200609
Marc Kupietz34c08172017-11-29 17:08:47 +0100610
Marc Kupietz58270662017-12-04 12:10:06 +0100611 // setTimeout(updateEmbedding, 1);
612 // setTimeout(
613 labeler = d3.labeler()
614 .label(labels)
615 .anchor(anchor_array)
616 .width(mapWidth)
617 .height(mapHeight)
618 .update(applyJitter);
619 // .start(1000);
Marc Kupietz83305222016-04-28 09:57:22 +0200620
Marc Kupietz58270662017-12-04 12:10:06 +0100621 iter_id = setInterval(jitterStep, 1);
Marc Kupietz83305222016-04-28 09:57:22 +0200622 }
623
624 var jitter_i=0;
625
626 function jitterStep() {
Marc Kupietz58270662017-12-04 12:10:06 +0100627 if(jitter_i++ > 100) {
628 clearInterval(iter_id);
629 } else {
630 labeler.start2(10);
631 applyJitter();
632 }
Marc Kupietz83305222016-04-28 09:57:22 +0200633 }
634
635 var last_cost=1000;
636
637 function step() {
Marc Kupietz58270662017-12-04 12:10:06 +0100638 var i = T.iter;
Marc Kupietz34c08172017-11-29 17:08:47 +0100639
Marc Kupietz58270662017-12-04 12:10:06 +0100640 if(i > <%= $no_iterations %>) {
641 stopStep();
642 } else {
643 var cost = Math.round(T.step() * 100000) / 100000; // do a few steps
644 $("#cost").html("tsne iteration " + i + ", cost: " + cost.toFixed(5));
645 if(i % 250 == 0 && cost >= last_cost) {
646 stopStep();
647 } else {
648 last_cost = cost;
649 updateEmbedding();
650 }
651 }
Marc Kupietz83305222016-04-28 09:57:22 +0200652 }
653
654 function showMap(j) {
Marc Kupietz58270662017-12-04 12:10:06 +0100655 data=j;
656 T.iter=0;
657 T.initDataRaw(data.vecs); // init embedding
658 drawEmbedding(); // draw initial embedding
Marc Kupietz78114532017-11-29 17:00:16 +0100659
Marc Kupietz58270662017-12-04 12:10:06 +0100660 if(iter_id >= 0) {
661 clearInterval(iter_id);
662 }
663 //T.debugGrad();
664 iter_id = setInterval(step, 1);
665 if(true) { // (<%= $show_som %>) {
666 makeSOM(j, <%= $no_iterations %>);
667 }
Marc Kupietz83305222016-04-28 09:57:22 +0200668 }
Marc Kupietz39179ab2017-07-04 16:28:06 +0200669 var queryword;
670
671 function onload() {
Marc Kupietz58270662017-12-04 12:10:06 +0100672 queryword = document.getElementById('word');
Marc Kupietz39179ab2017-07-04 16:28:06 +0200673 }
674
675 function queryKorAP() {
Marc Kupietz58270662017-12-04 12:10:06 +0100676 window.open('http://korap.ids-mannheim.de/kalamar/?q='+queryword.value, 'KorAP');
Marc Kupietz39179ab2017-07-04 16:28:06 +0200677 }
Marc Kupietz4dc270c2017-11-24 10:17:12 +0100678
679 function queryKorAPCII(query) {
Marc Kupietz58270662017-12-04 12:10:06 +0100680 window.open('http://korap.ids-mannheim.de/kalamar/?ql=cosmas2&q='+query, 'KorAP');
Marc Kupietz4dc270c2017-11-24 10:17:12 +0100681 }
Marc Kupietz83305222016-04-28 09:57:22 +0200682 </script>
683 </head>
Marc Kupietz39179ab2017-07-04 16:28:06 +0200684 <body onload="onload()">
Marc Kupietz58270662017-12-04 12:10:06 +0100685 <div id="header">
686 <div id="pagetitle">
687 <h1>DeReKo-Vectors</h1>
Marc Kupietz4fcda0c2017-11-29 09:00:31 +0100688 </div>
Marc Kupietz58270662017-12-04 12:10:06 +0100689 <div id="options" class="widget">
690 <form id="queryform">
691 <input id="word" type="text" name="word" placeholder="Word(s) to be searched" value="<%= $word %>"
692 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."/>
693 <input id="SEARCH" type="button" value="SEARCH">
694 <input type="button" id="showoptions" name="showoptions" value="Options" />
695 </form>
696 <div id="dropdownoptions" style="display: none">
697 <form id="optionsform">
698 <div class="controlgroup-vertical">
699 <label for="cutoff">cut-off</label>
700 <input id="cutoff" type="text" name="cutoff" size="10" value="<%= $cutoff %>" title="Only consider the most frequent x word forms.">
701 <label for="dedupe">dedupe</label>
702 <input id="dedupe" type="checkbox" name="dedupe" value="1" <%= ($dedupe ? "checked" : "") %> title="radically filter out any near-duplicates">
703 % if($mergedEnd > 0) {
704 <label for="sbf">backw.</label>
705 <input id="sbf" type="checkbox" name="sbf" value="1" <%= ($searchBaseVocabFirst ? "checked" : "") %> title="If checkecked base vocabulary will be searched first. Otherwise merged vocabulray will be searched first.">
706 % }
707 <label for="neighbours">max. neighbours:</label>
708 <input id="neighbours" size="4" name="n" value="<%= $no_nbs %>">
709 <label for="no_iterations">max. iterations</label>
710 <input id="no_iterations" name="N" size="4" value="<%= $no_iterations %>">
711 <!-- <label for="dosom">SOM</label>
712 <input id="dosom" type="checkbox" name="som" value="1" <%= ($show_som ? "checked" : "") %>> -->
713 % if($collocators) {
714 <label for="sortby">window/sort</label>
715 <select id="sortby" name="sort">
716 <option value="0" <%= ($sort!=1 && $sort!=2? "selected":"") %>>auto focus</option>
717 <!-- <option value="1" <%= ($sort==1? "selected":"") %>>any single position</option>
718 <option value="2" <%= ($sort==2? "selected":"") %>>whole window</option> -->
719 </select>
720 % }
721 <input type="button" value="→ KorAP" onclick="queryKorAP();" title="query word with KorAP"/>
722 </div>
723 </form>
724 </div>
725 </div>
726 </div>
727 <div id="topwrapper">
728 <div style="visibility: hidden;" id="tabs">
729 <ul>
730 <li><a href="#tabs-1">Semantics (TSNE-map)</a></li>
731 <li><a href="#tabs-2">Semantics (SOM)</a></li>
732 <li><a href="#tabs-3">Syntagmatic (collocators)</a></li>
733 </ul>
734 <div id="tabs-1">
735 % if($lists && (@$lists) > 0 && (@$lists)[0]) {
736 <div id="wrapper">
737 <div id="first" style="width: 320px">
738 <table class="display compact nowrap" id="firsttable">
739 <thead>
740 <tr>
741 <th align="right">#</th><th align="right">cos</th><th align="left">similars</th>
742 </tr>
743 </thead>
744 <tbody>
745 <tr>
746 <td align="right">
747 </td>
748 <td align="right">
749 </td>
750 <td></td>
751 </tr>
752 </tbody>
753 </table>
754 </div>
755 <script>
756 </script>
757 <div id="second">
758 <div id="embed">
759 </div>
760 <div id="cost">
761 </div>
762 </div>
763 </div>
764 % } elsif($word !~ /^\s*$/) {
765 <div id="wrapper">
766 <div id="not-found-dialog" title="Not found">
767 <p>ERROR: "<%= $word %>" not found in vocabluary.</p>
768 <p>If you are sure you have spelled the word as intended, you can try to increase the cutoff parameter in the options menu.</p>
769 </div>
770 <script>
771 $( function() {
772 $( "#not-found-dialog" ).dialog({
773 autoOpen: true,
774 modal: true,
775 draggable: false,
776 height: "auto",
777 width: "auto",
778 resizable: false,
779 buttons: {
780 "OK": function() {
781 $( this ).dialog( "close" );
782 },
783 "Apply": function() {
784 window.open($(location).attr('pathname')+'?'+$('form').serialize(), "_self");
785 }
786 }
787 });
788 });
789 </script>
790 </div>
791 % }
792 </div>
793 <div id="tabs-2">
794 <div id="som2" style="width: 800; height: 800px">
795 </div>
796 <div id="sominfo1"><span id="somcolor1"> </span> <span id="somword1"> </span> <span id="somcolor2"> </span> <span id="somword2"> </span> <span id="somcolor3"> </span></div>
797 <div id="sominfo">SOM iteration <span id="iterations">0</span></div>
798 </div>
799 <div id="tabs-3">
800 <div style="width: 800px" id="secondt">
801 <table class="display compact nowrap" id="secondtable">
802 <thead>
803 <tr>
804 % if($collocators) {
805 <th>#</th>
806 <th align="center" title="The columns (c) around the target are considered for summation are marked with *.">w'</th>
807 <th align="right" title="Raw (max.) activation of the collocator in the output layers.">max(a)</th>
808 <th title="Co-normalized raw activation sum of the collocator in the selected columns." align="right">⊥Σa</th>
809 <th title="Sum of activations over the selected colunns normalized by the total activation sum of the selected columns." align="right">Σa/Σc</th>
810 <th title="Sum of the column normalized activations over the selected colunns." align="right">Σ(a/c)</th>
811 <th title="Sum of the activations over the whole window normalized by the total window sum (no auto-focus)." align="right">Σa/Σw</th>
812 <th align="left">collocator</th>
813 % }
814 </tr>
815 </thead>
816 <tbody>
817 <tr>
818 <td align="right">
819 </td>
820 <td align="right">
821 </td>
822 <td align="right">
823 </td>
824 <td align="right">
825 </td>
826 <td align="right">
827 </td>
828 <td align="right">
829 </td>
830 <script
831 src="http://code.jquery.com/ui/1.12.1/jquery-ui.min.js"
832 </td>
833 </tr>
834 </tbody>
835 </table>
836 </div> <!-- - tab2 -->
837 </div> <!-- tabs -->
838 </div>
839 </div> <!-- topwrapper -->
840 <div style="clear: both;"></div>
841 </div>
Marc Kupietz4abcd682017-11-28 20:51:08 +0100842 % if($training_args) {
843 <p>
844 Word vector model trained with <a href="https://code.google.com/p/word2vec/">word2vec</a> using the following parameters: <pre><%= $training_args %></pre>
845 </p>
Marc Kupietz83305222016-04-28 09:57:22 +0200846 % }
Marc Kupietz58270662017-12-04 12:10:06 +0100847 </body>
Marc Kupietz83305222016-04-28 09:57:22 +0200848</html>