-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
325 lines (269 loc) · 12.3 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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
---
layout: default
title: Home
---
<!-- ========== BIO ========== -->
<div class="docs-section" id="bio">
<h4>Bio</h4>
<p>
Howdy! I am currently a Software Engineer (R & D) in Tiktok.Inc (from Feb. 2023 to Now).
I obtained my master's degree from the Department of Computer Science & Engineering, Texas A&M University in 2022.
And I obtained my bachelor's degree from the Department of Computer Science and Technology, University of Science and Technology of China in 2020.
</p>
<p>
My major focus on algorithms and machine learning.
Specifically, I am familiar with (1) software building and algorithms, and
(2) machine learning algorithms for graph data (Graph-Neural-Network).
</p>
</div>
<!-- ========== NEWS ========== -->
<!-- <div class="docs-section" id="news"> -->
<!-- <h4>News</h4> -->
<!-- <ul> -->
<!-- {% for nw in site.data.news.news %} -->
<!-- <a class="navbar-link" href={{ "/index.html#bio" | prepend: site.baseurl }}>Bio</a> -->
<!-- <div class="row"><div class="twop columns"><b>{{ nw.date }}</b></div> <div class="ten columns">{{ nw.title }} <i>{{ nw.subtitle }}</i></div></div> -->
<!-- {% endfor %} -->
<!-- </ul> -->
<!-- </div> -->
<!-- ========== PUBLICATIONS ========== -->
<div class="docs-section" id="publications">
<h4>Publications [<a href="{{ site.data.main_info.googlescholar }}" target="_blank">Google Scholar</a>]</h4>
<!-- <p>Most recent publications on <a href="{{ site.data.main_info.googlescholar }}" target="_blank">Google Scholar</a>.<br/> -->
* 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.UKSPNg %}
<a class="button" href="{{ paper.UKSPNg | prepend: site.baseurl }}" target="_blank">UKSP Nugget</a>
{% endif %}
{% if paper.blogpost %}
<a class="button" href="{{ paper.blogpost | prepend: site.baseurl }}" target="_blank">Blog post</a>
{% endif %}
{% if paper.video %}
<a class="button" href="{{ paper.video }}" target="_blank">Video</a>
{% endif %}
{% if paper.notebook %}
<a class="button" href="{{ paper.notebook }}" target="_blank">Python Notebook</a>
{% endif %}
{% if paper.repo %}
<a class="button" href="{{ paper.repo }}" target="_blank">Repo</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.preprint %}
<a class="button" href="{{ paper.preprint | prepend: site.baseurl }}" target="_blank">Preprint</a>
{% endif %}
{% if paper.paper_pdf %}
<a class="button" href="{{ paper.paper_pdf | prepend: site.baseurl }}" target="_blank">Paper</a>
{% endif %}
{% if paper.workshop_website %}
<a class="button" href="{{ paper.workshop_website | prepend: site.baseurl }}" target="_blank">Workshop Website</a>
{% endif %}
{% if paper.code %}
<a class="button" href="{{ paper.code | prepend: site.baseurl }}" target="_blank">Code</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.UKSPNg %}
<a class="button" href="{{ paper.UKSPNg | prepend: site.baseurl }}" target="_blank">UKSP Nugget</a>
{% endif %}
{% if paper.blogpost %}
<a class="button" href="{{ paper.blogpost | prepend: site.baseurl }}" target="_blank">Blog post</a>
{% endif %}
{% if paper.pressrel %}
<a class="button" href="{{ paper.pressrel | prepend: site.baseurl }}" target="_blank">Press Coverage</a>
{% endif %}
{% if paper.video %}
<a class="button" href="{{ paper.video }}" target="_blank">Video</a>
{% endif %}
{% if paper.notebook %}
<a class="button" href="{{ paper.notebook }}" target="_blank">Python Notebook</a>
{% endif %}
{% if paper.data %}
<a class="button" href="{{ paper.data }}" target="_blank">Data</a>
{% endif %}
{% if paper.literature_collection %}
<a class="button" href="{{ paper.literature_collection }}" target="_blank">Literature collection</a>
{% endif %}
</div>
</div>
{% endfor %} -->
{% for paper in site.data.publications.papers %}
<div class="paper">
<div class="row">
<div class="four columns">
<div class="figure">
<img src='{{ site.baseurl }}{{ paper.img }}' width="100%">
</div>
</div>
<div class="eight columns">
<!-- <div class="vertical-center"> -->
<p class="title"><b>{{ paper.title }}</b></p>
<p>{{ paper.authors }}</p>
<p><i>{{ paper.venue }}</i></p>
{% if paper.note %}
<p><b>{{ paper.note }}</b></p>
{% endif %}
<div class="paper-buttons">
{% if paper.preprint %}
<a class="button" href="{{ paper.preprint | prepend: site.baseurl }}" target="_blank">Preprint</a>
{% endif %}
{% if paper.paper_pdf %}
<a class="button" href="{{ paper.paper_pdf | prepend: site.baseurl }}" target="_blank">Paper</a>
{% endif %}
{% if paper.code %}
<a class="button" href="{{ paper.code | prepend: site.baseurl }}" target="_blank">Code</a>
{% endif %}
{% if paper.code_star %}
<img src='{{ site.baseurl }}{{ paper.code_star }}' height="20%" >
{% endif %}
{% if paper.documentation %}
<a class="button" href="{{ paper.documentation | prepend: site.baseurl }}" target="_blank">Documentation</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.supplement %}
<a class="button" href="{{ paper.supplement | prepend: site.baseurl }}" target="_blank">Supplement</a>
{% endif %}
{% if paper.UKSPNg %}
<a class="button" href="{{ paper.UKSPNg | prepend: site.baseurl }}" target="_blank">UKSP Nugget</a>
{% endif %}
{% if paper.blogpost %}
<a class="button" href="{{ paper.blogpost | prepend: site.baseurl }}" target="_blank">Blog post</a>
{% endif %}
{% if paper.pressrel %}
<a class="button" href="{{ paper.pressrel | prepend: site.baseurl }}" target="_blank">Press Coverage</a>
{% endif %}
{% if paper.video %}
<a class="button" href="{{ paper.video }}" target="_blank">Video</a>
{% endif %}
{% if paper.notebook %}
<a class="button" href="{{ paper.notebook }}" target="_blank">Python Notebook</a>
{% endif %}
{% if paper.data %}
<a class="button" href="{{ paper.data }}" target="_blank">Data</a>
{% endif %}
{% if paper.literature_collection %}
<a class="button" href="{{ paper.literature_collection }}" target="_blank">Paper collection</a>
{% endif %}
{% if paper.literature_collection_star %}
<img src='{{ site.baseurl }}{{ paper.literature_collection_star }}' height="20%" >
{% endif %}
</div>
<!-- </div> -->
</div>
</div>
</div>
{% endfor %}
<!-- </div>
</div> -->
</div>
<!-- ========== Projects ========== -->
<div class="docs-section" id="projects">
<h4>Projects</h4>
{% for pro in site.data.projects.projects %}
<div class="project">
<div class="row">
<div class="two columns">
<div class="figure">
<img src='{{ site.baseurl }}{{ pro.img }}' width="100%">
</div>
</div>
<div class="ten columns">
<span class="name", style="font-size: large;"><b>{{ pro.name }}</b></span>
{% if pro.link %}
<span><i><a href="{{pro.link}}"><b>Link</b></a></i></span>
{% endif %}
{% if pro.github_stars %}
<img src='{{ site.baseurl }}{{ pro.github_stars }}' height="20%" >
{% endif %}
{% if pro.description_1 %}
<div style="font-size: 10pt;">1. {{ pro.description_1 }}</div>
{% endif %}
{% if pro.description_2 %}
<div style="font-size: 10pt;">2. {{ pro.description_2 }}</div>
{% endif %}
{% if pro.description_3 %}
<div style="font-size: 10pt;">3. {{ pro.description_3 }}</div>
{% endif %}
</div>
</div>
</div>
<br/>
{% endfor %}
</div>
<!-- ========== Services ========== -->
<!-- <div class="docs-section" id="services"> -->
<!-- <h4>Services</h4> -->
<!-- <h5>Program Committee Member & Reviewer</h5> -->
<!-- {% for sv in site.data.services.services %} -->
<!-- <div class="paper"> -->
<!-- <p class="title">{{ sv.venue }} <i style="float:right;"> {{ sv.year }}</i></p> -->
<!-- </div> -->
<!-- {% endfor %} -->
<!-- </ul> -->
<!-- </div> -->
<!-- ========== reusme ========== -->
<div class="docs-section" id="resume">
<h4>Résumé</h4>
<p>My résumé is available <a href={{ "/assets/Jingtun_CV_111623.pdf" | prepend: site.baseurl }} target="_blank">here [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">
<div class="flag">{{ exp.place }}</div>
<br/>
<div class="time-wrapper">
<span class="time">{{ exp.time }}</span>
</div>
</div>
<div class="desc"><b>{{ exp.title }}</b> <br/> {{ exp.subtitle }}</div>
</div>
</li>
{% endfor %}
</ul>
</div>