-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
160 lines (160 loc) · 6.45 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vince Jankovics Portfolio</title>
<link rel="shortcut icon" type="image/png" href="images/icon.png">
<meta name="viewport" content=
"width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body class="is-preload">
<!-- Header -->
<div id="header">
<div class="top">
<!-- Logo -->
<div id="logo">
<a href="#" class="image fit"><img src=
"images/head_round.png" alt=""></a>
<h1 id="title">Vince Jankovics</h1>
<p>AI Engineer</p>
</div><!-- Nav -->
<nav id="nav">
<ul>
<li>
<a href="#about" id="about-link">About
Me</a>
</li>
<li>
<a href="#projects" id=
"projects-link">Projects</a>
</li>
<li>
<a href="#academic" id=
"pub-link">Academic</a>
</li>
</ul>
</nav>
</div>
<div class="bottom">
<!-- Social Icons -->
<ul class="icons">
<li>
<a href="https://github.com/vakker" class=
"icon fa-github"><span class=
"label">Github</span></a>
</li>
<li>
<a href="mailto:[email protected]"
class="icon fa-envelope"><span class=
"label">Email</span></a>
</li>
<li>
<a href=
"https://www.linkedin.com/in/vincejankovics/"
class="icon fa-linkedin"><span class=
"label">LinkedIn</span></a>
</li>
</ul>
</div>
</div><!-- Main -->
<div id="main">
<!-- About Me -->
<section id="about" class="four">
<div class="container">
<header>
<h2>About Me</h2>
</header>
<div class="row">
<div class="col-8 col-12-mobile">
<p>I am an engineer with expertise in
Artificial Intelligence and Robotics. I
received my MSc degree from the University
of Bristol in 2016 and I have been working
in the industry since. I am interested in
autonomous systems and AI with emphasis on
perception, decision making and
control.</p>
<p>I have started a PhD at City, University
of London in 2019. I am researching
abstract state representations for
reinforcement learning (e.g. using objects
and their relationships) to improve long
term planning.</p>
<p>I enjoy being a research engineer,
working on cutting edge technologies and
developing systems based on the latest
research results to solve real life
problems. Besides focusing on the technical
challenges, I also find the ethics of
technology crucial for making the right
decisions as we progress further as a
society.</p>
<p>For my education and employment history
please see my <a href=
"Vince_Jankovics_CV.pdf">CV</a> or connect
with me on <a href=
"https://www.linkedin.com/in/vincejankovics/">
LinkedIn</a>.</p>
</div>
<div class="col-4 col-12-mobile">
<article class="item">
<header>
<h3>Skills</h3>
<p></p>
<ul>
<li>Robotics</li>
<li>Artificial
Intelligence</li>
<li>Machine Learning</li>
<li>Deep Learning</li>
<li>Reinforcement Learning</li>
<li>Computer Vision</li>
<li>Python</li>
<li>C++</li>
<li>MLOps</li>
<li>Kubernetes</li>
<li>Ray</li>
</ul>
<p></p>
</header>
</article>
</div>
</div>
</div>
</section><!-- Projects -->
<section id="projects" class="two">
<div class="container">
<header>
<h2>Projects</h2>
</header>
<div id="projects-div" class="row grid"></div>
</div>
</section><!-- Academic -->
<section id="academic" class="three">
<div id="academic-div" class="container">
<header>
<h2>Academic contributions</h2>
</header>
<p></p>
<table></table>
</div>
</section>
</div><!-- Footer -->
<div id="footer">
<!-- Copyright -->
<ul class="copyright">
<li>© Vince Jankovics. All rights reserved.</li>
</ul>
</div><!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/masonry.pkgd.js"></script>
<script src="assets/js/imagesloaded.pkgd.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>