-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorials.php
57 lines (52 loc) · 1.48 KB
/
tutorials.php
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
<html>
<head> <?php include('head_content.php') ?> </head>
<body>
<?php include('nav_header.php'); ?>
<?php include('banner.php'); ?>
<main role="main" style='margin-top:40px; font-family:Lora, serif'>
<div class="myContainer contentBox">
<h3><b>Invited Speakers</b></h3>
<div id="mid_container" >
<table cellpadding="0" cellspacing="0" width="600px" class="table" border="1">
<tr>
<th>S No.</th>
<th>Authors</th>
<th> Title of the Paper</th>
</tr>
<tr>
<td>1</td>
<td>Raj Bhatnagar </td>
<td>Design of Algorithms for Big Data Analytics</td>
</tr>
<tr>
<td>2</td>
<td>Swati Agrawal, Ashish Sureka and Vikram Goyal </td>
<td>Open Source Social Media Analytics for Intelligence and Security Informatics Applications</td>
</tr>
<tr>
<td>3</td>
<td>R. Uday Kiran and Masaru Kitsuregawa</td>
<td>Finding Periodic Patterns in Big Data</td>
</tr>
<tr>
<td>4</td>
<td>Asoke Talukder </td>
<td>Genomics 3.0: Big-data in Precision Medicine</td>
</tr>
<tr>
<td>5</td>
<td>Niladri Chatterjee</td>
<td>Word Space Model and Random Indexing for Large Scale Text Processing</td>
</tr>
<tr>
<td>6</td>
<td>Srikanta Bedathur and Sriram Lakshminarasimhan </td>
<td>Large-scale knowledge graph management and processing </td>
</tr>
</table>
</div>
</div>
</main>
<?php include('footer.php'); ?>
</body>
</html>