forked from msaveski/www_personal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
271 lines (230 loc) · 11 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
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
---
layout: default
title: Home
---
<!-- ========== BIO ========== -->
<div class="docs-section" id="bio">
<h4>Bio</h4>
<p>
My research develops tools for analyzing <b>large-scale social data</b>, aiming to provide a better understanding of <b>social structure and behaviors</b> online while also impacting the <b>design of digital social systems</b>.
My recent work has focused on reducing political polarization online
[<a href="assets/publications/2022_newsbridge/paper.pdf" target="_blank">ICWSM'22a</a>,
<a href="assets/publications/2022_flipfeed/paper.pdf" target="_blank">ICWSM'22b</a>,
<a href="assets/publications/2021_balanced_inf_max/paper.pdf" target="_blank">WSDM'21</a>,
<a href="assets/publications/2018_social_mirror/paper.pdf" target="_blank">WWW'18</a>],
improving the health of online conversations
[<a href="assets/publications/2021_dtox/paper.pdf" target="_blank">WWW'21</a>,
<a href="assets/publications/2021_social_catalysts/paper.pdf" target="_blank">CSCW'21</a>],
and causal inference in social systems
[<a href="assets/publications/2017_detecting_network_effects/paper.pdf" target="_blank">KDD'17</a>
<a href="assets/publications/2019_biometrika/paper.pdf" target="_blank">Biometrika'19</a>].
My research often falls at the intersections of Social Networks, Machine Learning, and Causal Inference.
</p>
<p>
<b>I'm joining the University of Washington Information School as an Assistant Professor, starting September 2023.</b>
I am currently a Postdoc at Stanford University, mentored by <a href="https://web.stanford.edu/~jugander/" target="_blank">Johan Ugander</a>.
I received my Ph.D. from MIT in 2020 under the supervision of Deb Roy.
Before coming to MIT, I spent one year in Paris and one year in Barcelona doing a M.Sc. in Data mining and Knowledge Management.
I got my B.Sc. from Staffordshire University with First Class honors in Computer Science.
Throughout my graduate studies, I spent several summers doing internships in industry, including Yahoo! Labs, Amazon, LinkedIn, and Facebook.
</p>
</div>
<div class="docs-section" id="prospective-students">
<h4>Prospective Students</h4>
<p>
<b>I'm recruiting PhD students to start Fall 2023 at the University of Washington! </b>
I'm especially looking for students with a background and/or interest in <i>social network analysis, machine learning, causal inference, or natural language processing</i>, and are passionate about using computational methods to study how online social platforms can be reimagined to <i>enable better conversations, bridge political divides, and reduce the spread of misinformation</i>.
If you are interested, please apply to the UW iSchool <a href="https://ischool.uw.edu/programs/phd/admissions" target="_blank">PhD program</a> and mention me in your application.
If you have any questions, feel free to reach out by email!
</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>
<ul class="tab-nav">
<li><div class="button active" data-ref="#papers-selected">Selected</div></li>
<li><div class="button" data-ref="#papers-all">All</div></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="papers-selected">
{% assign selected_papers = site.data.publications.papers | where: "selected", "y" %}
{% for paper in selected_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.paper_pdf %}
<a class="button" href="{{ paper.paper_pdf | prepend: site.baseurl }}" target="_blank">Paper</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.data %}
<a class="button" href="{{ paper.data }}" target="_blank">Data</a>
{% endif %}
</div>
</div>
{% endfor %}
</div>
<div class="tab-pane" id="papers-all">
{% 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.paper_pdf %}
<a class="button" href="{{ paper.paper_pdf | prepend: site.baseurl }}" target="_blank">Paper</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.data %}
<a class="button" href="{{ paper.data }}" target="_blank">Data</a>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>
</div>
<!-- ========== PROJECTS ==========
<div class="docs-section" id="projects">
<h4>Projects</h4>
<ul class="tab-nav">
<li><div class="button active" data-ref="#projects-selected">Selected</div></li>
<li><div class="button" data-ref="#projects-all">All</div></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="projects-selected">
{% assign selected_projects = site.data.projects.projects | where: "selected", "y" %}
{% for project in selected_projects %}
{% assign index_modulo = forloop.index0 | modulo:3 %}
{% if index_modulo == 0 %}
<div class="row">
{% endif %}
<div class="four columns">
<div class="project-container">
<div class="project-image-container">
<a href="{{ project.url }}">
<img src="{{ project.thumbnail }}" class="u-max-full-width" />
</a>
</div>
<div class="project-caption">
<b>{{ project.title }}</b> <br/>
{{ project.subtitle }}
</div>
</div>
</div>
{% if index_modulo == 2 %}
</div>
{% endif %}
{% endfor %}
</div>
<div class="tab-pane" id="projects-all">
{% for project in site.data.projects.projects %}
{% assign index_modulo = forloop.index0 | modulo:3 %}
{% if index_modulo == 0 %}
<div class="row">
{% endif %}
<div class="four columns">
<div class="project-container">
<div class="project-image-container">
<a href="{{ project.url }}">
<img src="{{ project.thumbnail }}" class="u-max-full-width" />
</a>
</div>
<div class="project-caption">
<b>{{ project.title }}</b> <br/>
{{ project.subtitle }}
</div>
</div>
</div>
{% if index_modulo == 2 %}
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
-->
<!-- ========== RESUME ========== -->
<div class="docs-section" id="resume">
<h4>Vitæ</h4>
<p>Full Resume in <a href={{ "/assets/cv/cv_web.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>Website Design</h4>
Since I made this website, many people have found this Jekyll template useful
<a href="https://people.csail.mit.edu/davidam/" target="_blank">[1</a>,
<a href="https://thashim.github.io/" target="_blank">2</a>,
<a href="https://pauljwright.github.io/" target="_blank">3</a>,
<a href="https://bayesianbrad.github.io/" target="_blank">4</a>,
<a href="https://ahxt.github.io/" target="_blank">5</a>,
<a href="https://code-terminator.github.io/" target="_blank">6</a>,
<a href="https://dinacmistry.github.io/" target="_blank">7</a>,
<a href="https://stanniszhou.github.io/" target="_blank">8</a>,
<a href="http://binghongchen.net/" target="_blank">9</a>,
<a href="https://jirvin16.github.io/" target="_blank">10</a>,
<a href="https://mengliu1998.github.io/" target="_blank">11</a>,
<a href="https://amir-rahimi.github.io/" target="_blank">12</a>,
<a href="https://taoyds.github.io/" target="_blank">13</a>,
<a href="https://zhangjingtun.com/" target="_blank">14</a>,
<a href="https://www.saraiht.com/" target="_blank">15</a>,
<a href="https://tomyan555.github.io/" target="_blank">16</a>,
<a href="https://abhishekgrewal.github.io/" target="_blank">17</a>,
<a href="https://xuezhemax.github.io/" target="_blank">18</a>,
<a href="https://mmeendez8.github.io/" target="_blank">19</a>,
<a href="https://pkassraie.github.io/" target="_blank">20</a>,
<a href="https://ninasakhnini.dev/" target="_blank">21</a>,
<a href="http://www.yapengtian.com/" target="_blank">22</a>,
<a href="https://weijian-li.github.io/" target="_blank">23</a>,
<a href="https://www.seas.upenn.edu/~elenter/" target="_blank">24</a>,
<a href="https://cm-bf.github.io/" target="_blank">25</a>,
<a href="https://stuartburrell.github.io/" target="_blank">26</a>].
<!--<br/>-->
You can find all the code needed to build your website in this <a href="https://github.com/msaveski/www_personal" target="_blank">GitHub repo</a>.
Feel free to use it. <br/>
If you end up using it, please link to here and drop me an email.
I'm always happy to see people using it.
</div>