-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
140 lines (127 loc) · 4.86 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sanjeev's Website</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
<style>
.jumbotron{
background-image: url("imgs/snow_mountain.jpg");
background-size: cover;
background-repeat: no-repeat;
}
</style>
<!-- <script src="jquery.js"></script> -->
<script>
$(function(){
$("#includeContent").load("common.html");
});
</script>
</head>
<body>
<div class="jumbotron text-center" style="margin-bottom:0">
<h1>Hiding within those mounds of data is knowledge that could
change the life of a patient, or change the world.</h1>
<h4>- Atul Butte</h4>
</div>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<div class="container">
<div id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="publications.html">Publications</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="interests.html">Interests</a>
</li>
<li class="nav-item">
<a class="nav-link" href="gtk.html">Good to know</a>
</li> -->
</ul>
</div>
</div>
</nav>
<div class="container" style="margin-top:30px">
<div class="row">
<div class="col-sm-3">
<h2>About Me</h2>
<img src="imgs/Selfie-Nike.jpg" style="width:100%">
<p>
Hi, I am Sanjeev, a Machine Learning enthusiast in continuous
pursuit of interesting and challenging problems
</p>
<h3>
Coordinates
</h3>
<ul class="nav nav-pills flex-column">
<li class="nav-item">
<a class="nav-link" href="https://github.com/SanjeevKV">Github</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="https://www.kaggle.com/sanjeevadiraj">Kaggle</a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="https://www.linkedin.com/in/sanjeev-vadiraj/">LinkedIn</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://medium.com/@sanjeev.vadiraj">Medium</a>
</li>
</ul>
<hr class="d-sm-none">
</div>
<div class="col-sm-1">
</div>
<div class="col-sm-6">
<h2>PROJECTS</h2>
<h5>
<a href="https://spire.ee.iisc.ac.in/spire/mocap.php">
Head Gesture Synthesis (Feb 2019 - Present)
</a>
</h5>
<a href="https://www.iisc.ac.in/">
<img src="imgs/iisc_logo.jpeg" alt="iisc_logo" style="width:30%">
</a>
<a href="https://spire.ee.iisc.ac.in/spire/mocap.php">
<img src="imgs/head_gestures.png" alt="head_gestures" style="width:40%">
</a>
<a href="https://spire.ee.iisc.ac.in">
<img src="imgs/spire_logo.png" alt="spire" style="width:15%">
</a>
<p>
As a Research Project Assistant at the Indian Institute of Science (IISc), I work on this projet.
This project aims to synthesize head gestures using variation in prosody.
With devices procured from Optitrack, 3D positions of several reflective
markers attached to a subject are captured. Test subjects are asked to recite
the stories and the poems while we record audio, video and the 3D positions of
certain pre-defined landmark points on the subjects.
</p>
<h5>
Algorithmic Trading (Dec 2017 - Present)
</h5>
<img src="imgs/AlgorithmicTrading.jpg" alt="AlgorithmicTrading" style="width:100%">
<p>
This is a hobby project to try different algorithmic trading strategies
in the Indian stock market. Zerodha <a href="https://kite.trade/">kite</a>
APIs are used to get real time ticker values and place orders in the decision.
</p>
<h5>
Automatic Text Summarization (May 2016 - May 2017)
</h5>
<img src="imgs/Summarization.png" alt="Summarization flow-chart", style="width:100%">
<p>
This is my senior year capstone project from college. The project aims to generate
abstractive summaries for a given text. The Long Short Term Memory(LSTM)
and the Transformer Network architectures I implemented as a part of this project have given me
a solid understanding of the sequential data and methods to represent and generate them.
</p>
</div>
</div>
</div>
</html>