-
Notifications
You must be signed in to change notification settings - Fork 17
/
visualize_result_struct.html
197 lines (180 loc) · 7.01 KB
/
visualize_result_struct.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Image Annotation Viewer</title>
<script src="vis_resources/jquery-1.8.3.min.js"></script>
<script src="vis_resources/d3.min.js" charset="utf-8"></script>
<script src="vis_resources/jsutils.js" charset="utf-8"></script>
<link rel="stylesheet" type="text/css" href="http://cs.stanford.edu/people/karpathy/cssutils.css">
<!-- Google fonts -->
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'>
<style>
body {
color: #333;
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size: 18px;
margin: 0;
padding: 0;
}
#wrap {
padding-left: 10px;
padding-right: 10px;
}
.hannot {
background-color: #EFE;
}
.rnnannot {
background-color: #EEF;
}
.rannot {
background-color: #FEE;
}
.annot {
padding: 3px;
}
.idiv {
display: inline-block;
vertical-align: top;
margin: 10px;
}
h1 {
font-weight: 300;
margin: 0;
}
h2 {
font-weight: 300;
font-size: 20px;
}
#wrap {
margin: 20px;
}
#header {
background-color: #f7f6f1;
padding: 20px;
border-bottom: 1px solid #555;
box-shadow: 0px 0px 4px 2px #555;
}
.logprob {
font-family: Courier, monospace;
}
</style>
<script type="application/javascript">
// globals
var db = [];
var imgperm = [];
var current_img_i = 0;
function start() {
// loadDataset('commit_result_8newFeat_rank.json');
//loadDataset('result_coco_gpu001_c_in14_o9_fc7_d_a_Auxo9_fc8_11.96.json');
//loadDataset('resultStructs/result_FinalAllModelMert.json');
//loadDataset('example_images/result_struct_posPSubmPGoogPVgg_5k.json');
//loadDataset('example_images/result_struct_posPmeanPGoogPVggPcmme_5k.json');
//loadDataset('example_images/cnn_reranked_cnnTanh_vs_cmmePgoogSwap.json');
// loadDataset('example_images/cnn_reranked_cnnTanh_vs_cmmePgoogSwapPgswapClsBased.json');
//loadDataset('example_images/result_struct_lsmdcSwapAux80TestSet.json');
loadDataset('example_images/result_struct_lsmdcBlindT_gswapCoco_translate.json');
}
function writeHeader() {
html = '<h2>Showing results for ' + db.checkpoint_params.dataset + ' on ' + db.imgblobs.length + ' images</h2>';
html += '<br>Eval params were: ' + JSON.stringify(db.params);
//html += '<br>Final average perplexity of ground truth words: ' + db.gtppl.toFixed(2);
$("#blobsheader").html(html);
}
function renderNextImage() {
var ib = db.imgblobs[imgperm[current_img_i]]; // next image blob
var newdiv = d3.select("#blobs").append("div");
newdiv.attr("id", 'img'+current_img_i);
newdiv.attr("class", "idiv")
current_img_i++;
visImg(ib, newdiv); // function fills the pdiv with content
}
function visSentencesInit() {
$("#blobs").empty();
current_img_i = 0;
for(var i=0;i<20;i++) { renderNextImage(); }
}
// pix is index of the sentece
function visImg(ib, div) {
// fetch the associated top image
var fname = ib.img_path;
var img = new Image();
img.src = fname;
img.onload = function() {
var width = this.width;
var height = this.height;
var desired_height = 300;
var hscale = desired_height / height;
var nwidth = width * hscale;
// okay now lets render the image
var sdiv = div.append("div").attr('class', 'svgdiv');
sdiv.append('img').attr('src', fname).attr('height', desired_height).attr('width', nwidth);
// add human predictions
if('references' in ib && false) {
var dnew = div.append('div').attr('class','hannot annot').style('width', Math.floor(nwidth-6) + 'px');
insertAnnot(ib.references[0], dnew);
}
// add predictions
if('candidate' in ib) {
var dnew = div.append('div').attr('class','hannot annot').style('width', Math.floor(nwidth-6) + 'px');
insertAnnot(ib.candidate, dnew, 'CNN');
len = ib.candidatelist.length;
//var dnew = div.append('div').attr('class','rnnannot annot').style('width', Math.floor(nwidth-6) + 'px');
//insertAnnot(ib.candidatelist[ib.orac_cand], dnew, 'Oracle(M) ' + ib.imgid);
//var dnew = div.append('div').attr('class','hannot annot').style('width', Math.floor(nwidth-6) + 'px');
//ib.candidatelist[len-6].meteor = 0
//insertAnnot(ib.candidatelist[len-6], dnew, 'Gswap');
//var dnew = div.append('div').attr('class','hannot annot').style('width', Math.floor(nwidth-6) + 'px');
//ib.candidatelist[len-1].meteor = 0
//insertAnnot(ib.candidatelist[len-1], dnew, 'GsCls200');
//var dnew = div.append('div').attr('class','hannot annot').style('width', Math.floor(nwidth-6) + 'px');
//insertAnnot(ib.candidatelist[3], dnew, 'vggA');
//var dnew = div.append('div').attr('class','rnnannot annot').style('width', Math.floor(nwidth-6) + 'px');
//insertAnnot(ib.candidatelist[1], dnew, 'mean');
//var dnew = div.append('div').attr('class','hannot annot').style('width', Math.floor(nwidth-6) + 'px');
//insertAnnot(ib.candidatelist[4], dnew, 'cmme');
}
}
}
function insertAnnot(annot, dnew, name) {
dnew.append('div').attr('class', 'atxt').text(name + ': ' + annot.text + ' (' + annot.logprob.toFixed(2) + ')'); // +', '+ annot.meteor.toFixed(2) + ')');
//dnew.append('div').attr('class', 'logprob').text('logprob: ' + annot.logprob.toFixed(2)); // + ' imgid: ' + id);
//dnew.append('div').attr('class', 'atxt').text('1 ' + ib.candidatelist[1].text);
}
// Handle infinite Scroll
$(window).scroll(function() {
if($(window).scrollTop() > 0.9 * ($(document).height() - $(window).height())) {
if(current_img_i < imgperm.length) {
// try to stay 20 images ahead of the scroll
for(var q=0;q<20;q++) { renderNextImage(); }
}
}
});
// Data Loading
function loadDataset(jsonpath) {
// ugly hack to prevent caching below ;(
var jsonmod = jsonpath + '?sigh=' + Math.floor(Math.random() * 100000);
$.getJSON(jsonpath, function(data) {
db = data; // assign to global
imgperm = randperm(db.imgblobs.length);
//imgperm = []; for(var i=0;i<db.imgblobs.length;i++) { imgperm.push(i); }
writeHeader();
visSentencesInit();
});
}
</script>
</head>
<body onload="start()">
<div id="header">
<h1><a href="https://github.com/rakshithShetty/neuraltalkTheano">NeuralTalkTheano</a> Sentence Generation Results</h1>
<div id="blobsheader"></div>
</div>
<div id="wrap">
<div id="wrap">
<div id="blobs"></div>
</div>
</div>
</body>
</html>