-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
355 lines (296 loc) · 15 KB
/
index2.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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Scholarly Communication & Research Analytics</title>
<link href="./images/favicon.ico" rel="shortcut icon" />
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.no-icons.min.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.0.2/css/font-awesome.css" rel="stylesheet">
<style>
body {
padding-top: 60px;
padding-bottom: 40px;
}
#hover-cap-4col .thumbnail, #hover-cap-3col .thumbnail, #hover-cap-unique .thumbnail, #hover-cap-6col .thumbnail {
position:relative;
overflow:hidden;
}
.caption {
display: none;
position: absolute;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.4);
width: 100%;
height: 100%;
color:#fff !important;
}
.caption p {
padding:6px;
}
a {
color:white;
}
a:hover{
color:gold;
}
/* padding-bottom and top for image */
.mfp-no-margins img.mfp-img {
padding: 0;
}
/* position of shadow behind the image */
.mfp-no-margins .mfp-figure:after {
top: 0;
bottom: 0;
}
/* padding for main container */
.mfp-no-margins .mfp-container {
padding: 0;
}
/*
for zoom animation
uncomment this part if you haven't added this code anywhere else
*/
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
opacity: 0;
-webkit-backface-visibility: hidden;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready .mfp-container {
opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
opacity: 0.8;
}
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
opacity: 0;
}
</style>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js"></script>
<script src="./js/magnific.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("[rel='tooltip']").tooltip();
$('#hover-cap-4col .thumbnail').hover(
function() {
$(this).find('.caption').slideDown(250);
},
function() {
$(this).find('.caption').slideUp(250);
});
$('#hover-cap-3col .thumbnail').hover(
function() {
$(this).find('.caption').fadeIn(250);
},
function() {
$(this).find('.caption').fadeOut(250);
});
$('#hover-cap-unique .thumbnail').hover(
function() {
$(this).find('.caption').slideDown(500);
},
function() {
$(this).find('.caption').slideUp(500);
});
$('#hover-cap-6col .thumbnail').hover(
function() {
$(this).find('.caption').show();
},
function() {
$(this).find('.caption').hide();
});
$('.image-popup-vertical-fit').magnificPopup({
type: 'image',
closeOnContentClick: true,
mainClass: 'mfp-img-mobile',
image: {
verticalFit: true
}
});
$('.image-popup-fit-width').magnificPopup({
type: 'image',
closeOnContentClick: true,
image: {
verticalFit: false
}
});
$('.image-popup-no-margins').magnificPopup({
type: 'image',
closeOnContentClick: true,
closeBtnInside: false,
fixedContentPos: true,
mainClass: 'mfp-no-margins mfp-with-zoom', // class to remove default margin from left and right side
image: {
verticalFit: true
},
zoom: {
enabled: true,
duration: 300 // don't foget to change the duration also in CSS
}
});
});
</script>
</head>
<body>
<!-- Analytics Code -->
<div class="container">
<a href="https://www.openaire.eu/" title="OpenAIRE"><img src="./images/logo_openaire.jpg" alt="logo_openaire" width="100px" height="100px"></a>
<div style="float:right;">
<a href="https://www.uoa.gr/" title="NKUA"><img src="./images/athina_logo_new.jpg" alt="athina_logo_new" width="100px" height="100px"></a>
<a href="http://www.madgik.di.uoa.gr/" title="MADgIK"><img src="./images/madgiklogo_sm.jpg" alt="madgiklogo_sm" width="100px" height="100px"></a>
</div>
<div class="page-header">
<h3>Scholarly Communication & Research Analytics </h3>
</div>
<div class="hero-unit" style="opacity: 0.5;">
<h5>The proposed platform for automated and extensible multi-dimensional analysis of Text Augmented Heterogeneous Information Networks (TA-HINets) provides the tools to explore, model and visualize systematic research in Europe (and not only) creating interactive topic (thematic) maps and revealing useful knowledge (e.g., similarities, clusters and relations) and insights. Such analysis can promote innovation and play a central role in related policy making & collaboration between funders, scientists/institutions and organizations.
<br/>
In more details, proposed platform provides the following capabilities:
<ul>
<li>Multi-View Probabilistic Topic Modeling (PTM) engine analyzing massive, static or streaming, collections of documents and related meta-data, discovering hidden – possibly evolving – themes that characterize them and modeling their structure (inter-connections, hierarchies) and evolution over time.
</li><li>Pattern & Similarity detection between publications, projects/grants & authors/researchers identifying hidden groups, structure & communities leveraging topics as a mean to link documents, projects and other meta-data
</li><li>WEB based interactive visualization and analysis of the results
</li></ul>
</h5>
</div>
<ul class="thumbnails" id="hover-cap-unique">
<li class="span4">
<form name="form1" action="./getGraphACM.php" method="get" target="_blank">
<span>Similarity: <input type="text" name="s" placeholder="0.9" maxlength="10" value="0.9"/></span>
<div class="thumbnail">
<p class="front" style="position: absolute; background: #000; opacity: 0.8; color:#fff; width:98%;">ACM Authors Graph</p>
<div class="caption">
<h4>ACM Authors Graph</h4>
<span style="overflow:inherit">Experiments:</span>
<!--<p style="overflow:scroll; height:30px; overflow-x:hidden;">-->
<!--</p>-->
<input type="submit" rel="tooltip" title="Visit Webpage" class="btn btn-inverse btn-submit" name="ex" value="ACM_400T_1000IT_0IIT_100B_3M_cos"/>
</div>
<img src="./images/acm_authors.png" alt="acm_authors.png">
</div>
<h4>ACM Authors Graph</h4>
</form>
</li>
<li class="span4">
<form name="form2" action="./getGraphOpenaire.php" method="get" target="_blank">
<span>Similarity: <input type="text" name="s" placeholder="0.9" maxlength="10" value="0.9"/></span>
<div class="thumbnail">
<p class="front" style="position: absolute; background: #000; opacity: 0.8; color:#fff; width:98%;">OpenAIRE Graph</p>
<div class="caption">
<h4>OpenAIRE Graph</h4>
<span style="overflow:inherit">Experiments:</span>
<input id="s2" type="submit" rel="tooltip" title="Visit Webpage" class="btn btn-inverse btn-submit" name="ex" value="HEALTHTender_400T_1000IT_6000CHRs_100B_2M_cos" />
</div>
<!--<img src="http://placehold.it/600x400" alt="acm_authors.png">-->
<img src="./images/graph_openaire.png" alt="graph_openaire.png">
</div>
<h4>OpenAIRE Graph</h4>
</form>
</li>
<li class="span4">
<form name="form3" action="./getSpiderAuthors.php" method="get" target="_blank">
<span>Similarity: <input type="text" name="s" placeholder="0.9" maxlength="10" value="0.9"/></span>
<div class="thumbnail">
<p class="front" style="position: absolute; background: #000; opacity: 0.8; color:#fff; width:98%;">ACM Authors Spider Diagram</p>
<div class="caption">
<h4>ACM Authors Spider Diagram</h4>
<span style="overflow:inherit">Experiments:</span>
<input id="s3" type="submit" rel="tooltip" title="Visit Webpage" class="btn btn-inverse btn-submit" name="ex" value="ACM_400T_1000IT_0IIT_100B_3M_cos" />
</div>
<img src="./images/spider_authors.png" alt="spider_authors.png">
</div>
<h4>ACM Authors Spider Diagram</h4>
</form>
</li>
<hr/>
<li class="span4">
<form name="form4" action="./getSpiderSimilarAuthors.php" method="get" target="_blank">
<span>Similarity: <input type="text" name="s" placeholder="0.9" maxlength="10" value="0.9"/></span>
<div class="thumbnail">
<p class="front" style="position: absolute; background: #000; opacity: 0.8; color:#fff; width:98%;">ACM Similar Authors Spider Diagram</p>
<div class="caption">
<h4>ACM Similar Authors Spider Diagram</h4>
<span style="overflow:inherit">Experiments:</span>
<input id="s4" type="submit" rel="tooltip" title="Visit Webpage" class="btn btn-inverse btn-submit" name="ex" value="ACM_400T_1000IT_0IIT_100B_3M_cos" />
</div>
<img src="http://placehold.it/600x400" alt="acm_authors.png">
</div>
<h4>ACM Similar Authors Spider Diagram</h4>
</form>
</li>
<li class="span4">
<form name="form5" action="./getSpiderTopics.php" method="get" target="_blank">
<span>Similarity: <input type="text" name="s" placeholder="0.9" maxlength="10" value="0.9"/></span>
<div class="thumbnail">
<p class="front" style="position: absolute; background: #000; opacity: 0.8; color:#fff; width:98%;">ACM Topics Spider Diagram</p>
<div class="caption">
<h4>ACM Topics Spider Diagram</h4>
<span style="overflow:inherit">Experiments:</span>
<input id="s5" type="submit" rel="tooltip" title="Visit Webpage" class="btn btn-inverse btn-submit" name="ex" value="ACM_400T_1000IT_0IIT_100B_3M_cos" />
</div>
<img src="./images/spider_topics.png" alt="spider_topics.png">
</div>
<h4>ACM Topics Spider Diagram</h4>
</form>
</li>
<li class="span4">
<form name="form6" action="./getTrendsACMJournals.php" method="get" target="_blank">
<span>Similarity: <input type="text" name="s" placeholder="0.9" maxlength="10" value="0.9"/></span>
<div class="thumbnail">
<p class="front" style="position: absolute; background: #000; opacity: 0.8; color:#fff; width:98%;">ACM Journals Trends</p>
<div class="caption">
<h4>ACM Journal Trends</h4>
<span style="overflow:inherit">Experiments:</span>
<input id="s6" type="submit" rel="tooltip" title="Visit Webpage" class="btn btn-inverse btn-submit" name="ex" value="ACM_400T_1000IT_0IIT_100B_3M_cos" />
</div>
<img src="./images/trends_acmJournals.png" alt="trends_acmJournals.png">
</div>
<h4>ACM Journal Trends</h4>
</form>
</li>
<br/>
<li class="span4">
<form name="form7" action="./getTrendsOpenaire.php" method="get" target="_blank">
<span>Similarity: <input type="text" name="s" placeholder="0.9" maxlength="10" value="0.9"/></span>
<div class="thumbnail">
<p class="front" style="position: absolute; background: #000; opacity: 0.8; color:#fff; width:98%;">OpenAIRE Trends</p>
<div class="caption">
<h4>OpenAIRE Trends</h4>
<span style="overflow:inherit">Experiments:</span>
<input id="s7" type="submit" rel="tooltip" title="Visit Webpage" class="btn btn-inverse btn-submit" name="ex" value="HEALTHTender_400T_1000IT_6000CHRs_100B_2M_cos" />
</div>
<img src="./images/trends_openaire.png" alt="trends_openaire.png">
</div>
<h4>OpenAIRE Trends</h4>
</form>
</li>
<li class="span4">
<form name="form8" action="./getCloudTopics.php" method="get" target="_blank">
<span>Similarity: <input type="text" name="s" placeholder="0.9" maxlength="10" value="0.9"/></span>
<div class="thumbnail">
<p class="front" style="position: absolute; background: #000; opacity: 0.8; color:#fff; width:98%;">ACM Cloud</p>
<div class="caption">
<h4>ACM Cloud</h4>
<span style="overflow:inherit">Experiments:</span>
<input id="s8" type="submit" rel="tooltip" title="Visit Webpage" class="btn btn-inverse btn-submit" name="ex" value="HEALTHTender_400T_1000IT_6000CHRs_100B_2M_cos" />
</div>
<img src="./images/cloud_acm.png" alt="cloud_acm.png">
</div>
<h4>ACM Cloud</h4>
</form>
</li>
</ul>
<footer>
<p><a href="http://www.madgik.di.uoa.gr/" class="label ">© MADgIK </a><a href="http://www.uoa.gr/" class="label ">@ NKUA</a>
</p>
</footer>
</div>
<!-- /container -->
</body>
</html>