-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (89 loc) · 3.81 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
---
layout: default
title: Personal Webpage
---
<!-- ========== BIO ========== -->
<div class="docs-section" id="bio">
<h4>About</h4>
<p>
I am a Senior Research Scientist at <a href="https://www.deepmind.com/">Google DeepMind</a>. My current research interests are in building compositional generative models, and the associated inference and learning problems.
</p>
<p>
Before <a href="https://deepmind.google/">Google DeepMind</a>, I worked for 3 years as a Research Scientist at <a href="https://www.vicarious.com/">Vicarious AI</a> (acquired by <a href="https://abc.xyz/">Alphabet</a>). I obtained my Ph.D. in applied math at <a href="https://www.brown.edu/academics/applied-mathematics/">Brown University</a>, advised by Prof. <a href="http://www.dam.brown.edu/people/geman/">Stuart Geman</a>, and my bachelor degrees from <a href="http://english.pku.edu.cn/">Peking University</a>.
</p>
</div>
<!-- ========== PUBLICATIONS ========== -->
<div class="docs-section" id="publications">
<h4>Publications</h4>
<p>Most recent publications on <a href="{{ site.data.main_info.google_scholar }}" target="_blank">Google Scholar</a>.<br/>
<sup>‡</sup> indicates equal contribution.
</p>
{% for paper in site.data.publications.papers %}
<div class="paper">
<p class="title"><b>{{ paper.title }}</b></p>
<p>{{ paper.authors }}</p>
<p><i>{{ paper.venue }}</i></p>
<div class="paper-buttons">
{% if paper.doi %}
<a class="button" href="{{ paper.doi }}" target="_blank">DOI</a>
{% endif %}
{% if paper.website %}
<a class="button" href="{{ paper.website | prepend: site.baseurl }}" target="_blank">Website</a>
{% endif %}
{% if paper.paper_pdf %}
<a class="button" href="{{ paper.paper_pdf | prepend: site.baseurl }}" target="_blank">Pdf</a>
{% endif %}
{% if paper.preprint %}
<a class="button" href="{{ paper.preprint }}" target="_blank">Preprint</a>
{% endif %}
{% if paper.erratum %}
<a class="button" href="{{ paper.erratum | prepend: site.baseurl }}" target="_blank">Erratum</a>
{% endif %}
{% if paper.slides %}
<a class="button" href="{{ paper.slides | prepend: site.baseurl }}" target="_blank">Slides</a>
{% endif %}
{% if paper.poster %}
<a class="button" href="{{ paper.poster | prepend: site.baseurl }}" target="_blank">Poster</a>
{% endif %}
{% if paper.video %}
<a class="button" href="{{ paper.video }}" target="_blank">Video</a>
{% endif %}
{% if paper.code %}
<a class="button" href="{{ paper.code }}" target="_blank">Code</a>
{% endif %}
{% if paper.blog %}
<a class="button" href="{{ paper.blog }}" target="_blank">Blog</a>
{% endif %}
</div>
</div>
{% endfor %}
</div>
<!-- ========== RESUME ========== -->
<div class="docs-section" id="resume">
<h4>Vitæ</h4>
<p>Full Resume in <a href={{ "/cv/cv.pdf" | prepend: site.baseurl }} target="_blank">PDF</a>.</p>
<!-- The Timeline -->
<ul class="timeline">
{% for exp in site.data.experience.experiences %}
<li>
{% if exp.category == "work" %}
<div class="direction-l">
{% else %}
<div class="direction-r">
{% endif %}
<div class="flag-wrapper">
<span class="flag">{{ exp.place }}</span>
<span class="time-wrapper"><span class="time">{{ exp.time }}</span></span>
</div>
<div class="desc"><b>{{ exp.title }}</b> <br/> {{ exp.subtitle }}</div>
</div>
</li>
{% endfor %}
</ul>
</div>
<div class="docs-section" id="template">
<h4>Acknowledgement</h4>
<p>
This website uses the website design and template by <a href="https://github.com/msaveski/www_personal">Martin Saveski</a>
</p>
</div>