-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
361 lines (304 loc) · 16.8 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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>
Zeying Gong
</title>
<meta name="description" content="Personal academic website homepage of Zeying Gong.">
<!-- Bootstrap & MDB -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"
integrity="sha512-MoRNloxbStBcD8z3M/2BmnT+rg4IsMxPkXaGh2zD6LGNNFE80W3onsAhRcMAMrSoyWL9xD7Ert0men7vR8LUZg=="
crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.1/css/mdb.min.css"
integrity="sha512-RO38pBRxYH3SoOprtPTD86JFOclM51/XTIdEPh5j8sj4tp8jmQIx26twG52UaLi//hQldfrh7e51WzP9wuP32Q=="
crossorigin="anonymous" />
<!-- Fonts & Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
crossorigin="anonymous">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.9.0/css/academicons.min.css"
integrity="sha512-W4yqoT1+8NLkinBLBZko+dFB2ZbHsYLDdr50VElllRcNt2Q4/GSs6u71UHKxB7S6JEMCp5Ve4xjh3eGQl/HRvg=="
crossorigin="anonymous">
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:100,300,400,500,700|Material+Icons">
<!-- Code Syntax Highlighting -->
<link rel="stylesheet"
href="https://gitcdn.link/repo/jwarby/jekyll-pygments-themes/master/github.css" />
<!-- Styles -->
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🧑🏻🚀</text></svg>">
<link rel="stylesheet" href="/assets/css/main.css">
<link rel="canonical" href="/">
<style>
/* 减轻导航栏的阴影效果 */
#navbar {
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* 居中导航栏中的链接 */
.nav-link {
text-align: center;
}
/* 为图标添加间距 */
.contact-icons a {
margin: 0 10px;
}
</style>
</head>
<body class="fixed-top-nav sticky-bottom-footer">
<!-- Header -->
<header>
<!-- Nav Bar -->
<nav id="navbar" class="navbar navbar-light navbar-expand-sm fixed-top">
<div class="container">
<!-- Navbar Toggle -->
<button class="navbar-toggler ml-auto" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="sr-only">Toggle navigation</span>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse text-right" id="navbarNav">
<ul class="navbar-nav ml-auto">
<!-- About -->
<li class="nav-item active">
<a class="nav-link" href="/">About</a>
</li>
<!-- Publications -->
<li class="nav-item">
<a class="nav-link" href="#publications">Publications</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<script>
let prevScrollpos = window.pageYOffset;
window.onscroll = function () {
let currentScrollPos = window.pageYOffset;
// 检测滚动方向:如果向下滚动则隐藏,向上滚动则显示
if (prevScrollpos > currentScrollPos) {
document.getElementById("navbar").style.top = "0"; // 显示导航栏
} else {
document.getElementById("navbar").style.top = "-60px"; // 隐藏导航栏(向上移动)
}
prevScrollpos = currentScrollPos;
}
</script>
<!-- Content -->
<div class="container mt-8">
<div class="post">
<header class="post-header" style="margin-top: 100px;">
<h1 class="post-title">
<span class="font-weight-bold">Zeying Gong</span>
</h1>
<p class="desc"></p>
</header>
<article>
<div class="row">
<!-- 左边的文字内容 -->
<div class="col-md-8">
<p>Zeying is a Ph.D. student in Artificial Intelligence major at the Hong Kong University of Science and Technology (Guangzhou), under the primary supervision of <a href="https://junweiliang.me/" target="_blank" rel="noopener noreferrer">Prof. Junwei Liang</a>. During his master's studies, he was co-supervised by <a href="https://personal.hkust-gz.edu.cn/lqyang/" target="_blank" rel="noopener noreferrer">Prof. Liuqing Yang</a>.</p>
<p>Before embarking on his research journey, Zeying spent over a year as a 5G network engineer at Huawei. There, he served as one of the technical leaders for the delivery of High-speed Railway 4G & 5G base station project in Jiangxi Province. He was also involved in the technical development of MetaAAU and the ultra-long coverage features of 700M antennas. He earned his Bachelor's degree in Electronic Information Science and Technology from Sun Yat-sen University, supervised by <a href="https://sece.sysu.edu.cn/szll/js/zngz/1408949.htm" target="_blank" rel="noopener noreferrer">Prof. Bin Rao</a>.</p>
<p>His current research interest is <strong>Embodied AI</strong>, especially <strong>Social Navigation</strong>.</p>
</div>
<!-- 右边的图片及图标 -->
<div class="col-md-4 text-center">
<img class="img-fluid z-depth-1 rounded mb-2" src="img/profile-picture.jpeg" alt="Profile Picture">
<div class="contact-icons d-flex justify-content-center">
<a href="mailto:[email protected]" target="_blank" title="Email" style="font-size: 2.2rem;"
rel="noopener noreferrer"><i class="fas fa-envelope fa-xs"></i></a>
<a href="CV/Zeying_CV.pdf" target="_blank" title="CV" style="font-size: 2.2rem;" rel="noopener noreferrer"><i
class="ai ai-cv fa-xs"></i></a>
<a href="https://github.com/zeying-gong" target="_blank" title="GitHub" style="font-size: 2.2rem;"
rel="noopener noreferrer"><i class="fab fa-github fa-xs"></i></a>
<a href="https://scholar.google.com/citations?user=ze2Wh9EAAAAJ&hl=zh-CN&oi=ao" style="font-size: 2.2rem;"
target="_blank" title="Google Scholar" rel="noopener noreferrer"><i class="ai ai-google-scholar fa-xs"></i></a>
<a href="https://www.linkedin.com/in/zeying-gong" target="_blank" title="LinkedIn" style="font-size: 2.2rem;"
rel="noopener noreferrer"><i class="fab fa-linkedin fa-xs"></i></a>
</div>
</div>
</div>
<div class="news mt-5">
<h2><strong>News</strong></h2>
<div class="table-responsive">
<table class="table table-sm table-borderless mt-3">
<tr>
<th scope="row">Sep 2024</th>
<td>
Submitted one academic paper to the top Robotic conference <a href="https://2025.ieee-icra.org/"><strong>ICRA'2025</strong></a>.
</td>
</tr>
<tr>
<th scope="row">Aug 2024</th>
<td>
Heading to Jeju Island, Korea for <a href="https://ijcai24.org/"><strong>IJCAI'2024</strong></a> -- My first academic oral presentation with an exciting journey!
</td>
</tr>
<tr>
<th scope="row">June 2024</th>
<td>
Master's degree accomplished, PhD admission ahead.
</td>
</tr>
</table>
</div>
</div>
<div class="publications mt-5" id="publications">
<h2><strong>Publications</strong></h2>
<ul class="bibliography list-unstyled mt-3">
<li>
<!-- 第一个出版物 -->
<div class="row mt-4">
<div class="col-md-4 abbr position-relative">
<abbr class="badge badge-success position-absolute" style="top: 10px; left: 10px; padding: 5px;">Falcon</abbr>
<img class="publication-media img-fluid" src="img/falcon.gif" alt="Falcon">
</div>
<div id="falcon" class="col-md-8">
<div class="title font-weight-bold">From Cognition to Precognition: A Future-Aware Framework for Social Navigation</div>
<div class="author mt-2">
<strong>Zeying Gong,</strong>
<a href="https://hutslib.github.io/" target="_blank" rel="noopener noreferrer">Tianshuai Hu</a>,
<a href="https://precognition.team/" target="_blank" rel="noopener noreferrer">Ronghe Qiu</a>,
<a href="https://junweiliang.me/" target="_blank" rel="noopener noreferrer">Junwei Liang</a>
</div>
<div class="periodical font-italic mt-2">
Arxiv, 2024
</div>
<div class="links mt-3">
<a href="https://arxiv.org/abs/2409.13244" class="btn btn-outline-dark btn-sm" role="button" target="_blank"
rel="noopener noreferrer">ARXIV</a>
<a href="projects/falcon/index.html" class="btn btn-outline-dark btn-sm" role="button">WEBSITE</a>
<a href="https://github.com/Zeying-Gong/Falcon" class="btn btn-outline-dark btn-sm" role="button" target="_blank"
rel="noopener noreferrer">CODE</a>
</div>
</div>
</div>
<!-- 其他出版物,按照相同的结构进行调整 -->
<!-- 第二个出版物 -->
<div class="row mt-4">
<div class="col-md-4 abbr position-relative">
<abbr class="badge badge-success position-absolute" style="top: 10px; left: 10px; padding: 5px;">PatchMixer</abbr>
<img class="publication-media img-fluid" src="img/PatchMixer.png" alt="PatchMixer">
</div>
<div id="patchmixer" class="col-md-8">
<div class="title font-weight-bold">PatchMixer: A Patch-Mixing Architecture for Long-Term Time Series Forecasting</div>
<div class="author mt-2">
<strong>Zeying Gong,</strong>
<a href="https://yyyujintang.github.io/" target="_blank" rel="noopener noreferrer">Yujin Tang</a>,
<a href="https://junweiliang.me/" target="_blank" rel="noopener noreferrer">Junwei Liang</a>
</div>
<div class="periodical font-italic mt-2">
The 6th Data Science Meets Optimisation Workshop at <em>IJCAI</em>, 2024
</div>
<div class="links mt-3">
<a href="https://arxiv.org/abs/2310.00655" class="btn btn-outline-dark btn-sm" role="button" target="_blank"
rel="noopener noreferrer">Paper</a>
<a href="https://github.com/Zeying-Gong/PatchMixer" class="btn btn-outline-dark btn-sm" role="button" target="_blank"
rel="noopener noreferrer">CODE</a>
</div>
</div>
</div>
<!-- 第三个出版物 -->
<div class="row mt-4">
<div class="col-md-4 abbr position-relative">
<abbr class="badge badge-success position-absolute" style="top: 10px; left: 10px; padding: 5px;">PostRainBench</abbr>
<img class="publication-media img-fluid" src="img/PostRainBench.png" alt="PostRainBench">
</div>
<div id="postrainbench" class="col-md-8">
<div class="title font-weight-bold">PostRainBench: A comprehensive benchmark and a new model for precipitation forecasting</div>
<div class="author mt-2">
<a href="https://yyyujintang.github.io/" target="_blank" rel="noopener noreferrer">Yujin Tang</a>,
<a href="https://jiaming-zhou.github.io/" target="_blank" rel="noopener noreferrer">Jiaming Zhou</a>,
<a href="https://www.researchgate.net/profile/Xiang_Pan12" target="_blank" rel="noopener noreferrer">Xiang Pan</a>,
<strong>Zeying Gong,</strong>
<a href="https://junweiliang.me/" target="_blank" rel="noopener noreferrer">Junwei Liang</a>
</div>
<div class="periodical font-italic mt-2">
Tackling Climate Change with Machine Learning Workshop at <em>ICLR</em>, 2024
</div>
<div class="links mt-3">
<a href="https://www.climatechange.ai/papers/iclr2024/34" class="btn btn-outline-dark btn-sm" role="button" target="_blank"
rel="noopener noreferrer">Paper</a>
<a href="https://github.com/yyyujintang/PostRainBench" class="btn btn-outline-dark btn-sm" role="button" target="_blank"
rel="noopener noreferrer">CODE</a>
</div>
</div>
</div>
<!-- 第四个出版物 -->
<div class="row mt-4">
<div class="col-md-4 abbr position-relative">
<abbr class="badge badge-success position-absolute" style="top: 10px; left: 10px; padding: 5px;">ISAR</abbr>
<img class="publication-media img-fluid" src="img/Isar.png" alt="ISAR">
</div>
<div id="isar" class="col-md-8">
<div class="title font-weight-bold">Cluster Unmanned Aerial Vehicle Electromagnetic Calculations and Applications</div>
<div class="author mt-2">
<strong>Zeying Gong,</strong>
<a href="https://sece.sysu.edu.cn/szll/js/zngz/1408949.htm" target="_blank" rel="noopener noreferrer">Bin Rao</a>
</div>
<div class="periodical font-italic mt-2">
2021 <em>CIE</em> International Conference on Radar (Radar)
</div>
<div class="links mt-3">
<a href="https://ieeexplore.ieee.org/document/10027968" class="btn btn-outline-dark btn-sm" role="button" target="_blank"
rel="noopener noreferrer">Paper</a>
<a href="https://xueshu.baidu.com/usercenter/paper/show?paperid=1y5h0x901c2406n0rv4n0cg0d5482032&site=xueshu_se" class="btn btn-outline-dark btn-sm" role="button" target="_blank"
rel="noopener noreferrer">Patent</a>
</div>
</div>
</div>
</li>
</ul>
</div>
</article>
</div>
</div>
<!-- Footer -->
<hr>
<footer class="sticky-bottom mt-3 mb-3">
<div class="container text-center">
© Copyright 2024 Zeying Gong.
</div>
</footer>
</body>
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"
integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg=="
crossorigin="anonymous"></script>
<!-- Bootstrap & MDB scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.4.4/umd/popper.min.js"
integrity="sha512-eUQ9hGdLjBjY3F41CScH3UX+4JDSI9zXeroz7hJ+RteoCaY+GP/LDoM8AO+Pt+DRFw3nXqsjh9Zsts8hnYv8/A=="
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
integrity="sha512-M5KW3ztuIICmVIhjSqXe01oV2bpe248gOxqmlcYrEzAvws7Pw3z6BK0iGbrwvdrUQUhi3eXgtxp5I8PDo9YfjQ=="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.1/js/mdb.min.js"
integrity="sha512-Mug9KHKmroQFMLm93zGrjhibM2z2Obg9l6qFG2qKjXEXkMp/VDkI4uju9m4QKPjWSwQ6O2qzZEnJDEeCw0Blcw=="
crossorigin="anonymous"></script>
<!-- 其他脚本 -->
<!-- Mansory & imagesLoaded -->
<script defer src="https://unpkg.com/masonry-layout@4/dist/masonry.pkgd.min.js"></script>
<script defer src="https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.min.js"></script>
<script defer src="/assets/js/mansory.js" type="text/javascript"></script>
<!-- Medium Zoom JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/medium-zoom.min.js"
integrity="sha256-EdPgYcPk/IIrw7FYeuJQexva49pVRZNmt3LculEr7zM=" crossorigin="anonymous"></script>
<script src="/assets/js/zoom.js"></script>
<!-- Load Common JS -->
<script src="/assets/js/common.js"></script>
<!-- MathJax -->
<script type="text/javascript">
window.MathJax = {
tex: {
tags: 'ams'
}
};
</script>
<script defer type="text/javascript" id="MathJax-script"
src="https://cdn.jsdelivr.net/npm/[email protected]/es5/tex-mml-chtml.js"></script>
<script defer src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
</html>