-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
365 lines (313 loc) · 13.5 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
362
363
364
365
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rui Wu</title>
<link rel="shortcut icon" href="logo.jpg">
<meta content="Rui Wu, barryrun.github.io" name="keywords" />
<style media="screen" type="text/css">
:root {
--primary-color: #2196F3;
--hover-color: #1976D2;
--text-color: #333;
--bg-color: #f5f5f5;
--card-bg: #ffffff;
--border-color: #e0e0e0;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
transition: all 0.3s ease;
}
body {
position: relative;
margin: 0 auto;
padding: 2rem;
max-width: 1000px;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
font-size: 16px;
line-height: 1.6;
color: var(--text-color);
background: var(--bg-color);
}
a {
color: var(--primary-color);
text-decoration: none;
font-weight: 500;
}
a:hover {
color: var(--hover-color);
}
h2 {
font-size: 1.8rem;
font-weight: 700;
margin: 2rem 0 1rem;
color: var(--text-color);
border-bottom: 2px solid var(--primary-color);
padding-bottom: 0.5rem;
}
.profile-container {
background: var(--card-bg);
border-radius: 12px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
gap: 2rem;
}
.profile-image {
width: 200px;
height: 200px;
border-radius: 50%;
object-fit: cover;
}
.profile-info {
flex: 1;
}
.profile-info h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--text-color);
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links img {
width: 24px;
height: 24px;
transition: transform 0.3s ease;
}
.social-links img:hover {
transform: scale(1.1);
}
.section {
margin-bottom: 2rem;
}
.paper {
background: var(--card-bg);
border-radius: 8px;
padding: 1.5rem;
margin-bottom: 1.5rem;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
display: flex;
gap: 1.5rem;
}
.paper:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
img.paper {
width: 180px;
height: auto;
border-radius: 4px;
margin: 0;
}
.paper-content {
flex: 1;
}
ul {
list-style: none;
padding-left: 1.2rem;
}
li {
position: relative;
padding: 0.5rem 0;
margin: 0;
}
li::before {
content: "•";
color: var(--primary-color);
position: absolute;
left: -1.2rem;
}
@media (max-width: 768px) {
body {
padding: 1rem;
}
.profile-container {
flex-direction: column;
text-align: center;
}
.profile-image {
width: 150px;
height: 150px;
}
.social-links {
justify-content: center;
}
.paper {
flex-direction: column;
}
img.paper {
width: 100%;
max-width: 300px;
margin: 0 auto;
}
}
.clustrmaps {
margin-top: 2rem;
text-align: center;
}
footer {
text-align: right;
margin-top: 2rem;
padding: 1rem 0;
border-top: 1px solid var(--border-color);
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<!-- <script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-45959174-3', 'ho.github.io');
ga('send', 'pageview');
</script>
-->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-66888300-1', 'auto');
ga('send', 'pageview');
</script>
<body>
<div class="profile-container">
<img class="profile-image" title="Rhys Wu" src="profile.jpg" />
<div class="profile-info">
<h1>Rui Wu</h1>
<p>Deep Learning Engineer</p>
<p>Alipay, Ant Group</p>
<p>Hangzhou, China</p>
<p><strong>Email</strong>: RhysWu [at] outlook [dot] com</p>
<div class="social-links">
<a href='https://github.com/BarryRun'><img src="img/git.jpg" alt="GitHub" /></a>
<a href='https://scholar.google.com/citations?user=9MFTGxUAAAAJ&hl=zh-CN'><img src="img/gs.jpg" alt="Google Scholar" /></a>
<a href='https://www.linkedin.cn/injobs/in/%E9%94%90-%E5%90%B4-30636b1a7'><img src="img/in.jfif" alt="LinkedIn" /></a>
<a href='https://www.zhihu.com/people/wu-rui-2-95'><img src="img/zh.jpg" alt="Zhihu" /></a>
</div>
</div>
</div>
<div class="section">
<h2>About Me</h2>
<div class="paper">
<p>I obtained my master degree from Southeast University (SEU) in 2022. After graduation, I joined <a href='https://www.antgroup.com/'>Ant Group</a> as a deep learning engineer. During my time at Alipay, I have conducted research in various domains chronologically: starting with technical risk control systems, then moving on to RAG-based question answering assistants, and later exploring multimodal LLM-based agents. Currently, I am focusing on code copilot technology, dedicated to improving the development efficiency for Alipay engineers.</p>
</div>
</div>
<div class="section">
<h2>News</h2>
<div class="paper">
<ul>
<li>11/2024: One paper was accepted by NeurIPS 2024(Workshop on Open-World Agents).</li>
<li>03/2024: Two papers were accepted by DASFAA 2024(Industry Track).</li>
<li>01/2023: One paper was accepted by DASFAA 2023(Industry Track).</li>
<li>07/2022: Graduated from Southeast University and joined Ant Group(Alipay).</li>
<li>01/2022: One paper was accepted by WWW 2022.</li>
</ul>
</div>
</div>
<div class="section">
<h2>Publications</h2>
<div class="paper">
<img class="paper" src="img/mobileflow.png" alt="MobileFlow" title="MobileFlow: A Multimodal LLM for Mobile GUI Agent" />
<div class="paper-content">
<h3>MobileFlow: A Multimodal LLM for Mobile GUI Agent</h3>
<p>S. Nong*, J. Zhu*, <strong>R. Wu*</strong>, J. Jin, S. Shan, X. Huang, and W. Xu</p>
<p>Neural Information Processing Systems Workshop(<strong>NeurIPS</strong>), 2024.</p>
<p><a href='https://arxiv.org/abs/2407.04346'>Paper</a></p>
</div>
</div>
<div class="paper">
<img class="paper" src="img/mateeval.png" alt="MATEval" title="MATEval: A Multi-Agent Discussion Framework for Advancing Open-Ended Text Evaluation" />
<div class="paper-content">
<h3>MATEval: A Multi-Agent Discussion Framework for Advancing Open-Ended Text Evaluation</h3>
<p>Y. Li, S. Zhang, <strong>R. Wu</strong>, X. Huang, Y. Chen, W. Xu, G. Qi, D. Min</p>
<p>International Conference on Database Systems for Advanced Applications(<strong>DASFAA</strong>), 2024.</p>
<p><a href='https://arxiv.org/abs/2403.19305'>Paper</a></p>
</div>
</div>
<div class="paper">
<img class="paper" src="img/dee.png" alt="DEE" title="DEE: Dual-stage Explainable Evaluation Method for Text Generation" />
<div class="paper-content">
<h3>DEE: Dual-stage Explainable Evaluation Method for Text Generation</h3>
<p>S. Zhang, Y. Li, <strong>R. Wu</strong>, X. Huang, Y. Chen, W. Xu, G. Qi</p>
<p>International Conference on Database Systems for Advanced Applications(<strong>DASFAA</strong>), 2024.</p>
<p><a href='https://arxiv.org/abs/2403.11509'>Paper</a></p>
</div>
</div>
<div class="paper">
<img class="paper" src="img/dasfaa_model.png" alt="UFL" title="Customer Complaint Guided Fault Localization Based on Domain Knowledge Graph" />
<div class="paper-content">
<h3>Customer Complaint Guided Fault Localization Based on Domain Knowledge Graph</h3>
<p>S. Sun, Z. Chai, <strong>R. Wu</strong>, J. Jin, Y. Wang, W. Xu, and G. Qi</p>
<p>International Conference on Database Systems for Advanced Applications(<strong>DASFAA</strong>), 2022.</p>
<p><a href='https://doi.org/10.1007/978-3-031-30678-5_43'>Paper</a> | <a href='papers/slide_ufl.pdf'>Slide</a></p>
</div>
</div>
<div class="paper">
<img class="paper" src="papers/CopyDrug.png" alt="CopyDrug" title="Conditional Generation Net for Medication Recommendation" />
<div class="paper-content">
<h3>Conditional Generation Net for Medication Recommendation</h3>
<p><strong>R. Wu</strong>, Z. Qiu, J. Jiang, G. Qi, and X. Wu</p>
<p>The Web Conference(<strong>WWW</strong>), 2022.</p>
<p><a href='https://dl.acm.org/doi/10.1145/3485447.3511936'>Paper</a> | <a href='papers/slides_COGNet.pdf'>Slide</a> | <a href='https://github.com/BarryRun/COGNet'>Code</a></p>
</div>
</div>
<div class="paper">
<img class="paper" src="papers/highway.png" alt="Highway" title="A Two-Phase Approach for Predicting Highway Passenger Volume" />
<div class="paper-content">
<h3>A Two-Phase Approach for Predicting Highway Passenger Volume</h3>
<p>Y. Xiang, J. Chen, W. Yu, <strong>R. Wu</strong>, B. Liu, B. Wang, and Z. Li</p>
<p>Applied Sciences, 2021.</p>
</div>
</div>
<div class="paper">
<img class="paper" src="papers/icivc.png" alt="LSTM UNet" title="LSTM Multi-modal UNet for Brain Tumor Segmentation" />
<div class="paper-content">
<h3>LSTM Multi-modal UNet for Brain Tumor Segmentation</h3>
<p>F. Xu, H. Ma, J. Sun, <strong>R. Wu</strong>, X. Liu, and Y. Kong</p>
<p>IEEE Conference on Image, Vision and Computing(<strong>ICIVC</strong>), 2019.</p>
<p><a href='https://ieeexplore.ieee.org/document/8981027'>Paper</a> | <a href='papers/slides_icivc.pdf'>Presentation</a> | <a href='https://github.com/HowieMa/lstm_multi_modal_UNet'>Code</a></p>
</div>
</div>
</div>
<div class="section">
<h2>Contests</h2>
<div class="paper">
<ul>
<li><strong>Alipay NLP contest: multi-label classification task</strong>, Rank: 5/201 (Top 3%)</li>
<li><strong>Baidu <a href='https://aistudio.baidu.com/aistudio/competition/detail/58/0/introduction'>Entity Linking for Chinese Short Text</a></strong>, Rank: 6/112 (Third Prize)</li>
<li><strong>Biendata <a href='https://www.biendata.xyz/competition/zhihu2019/'>Zhihu-Expert Discovery Algorithm Competition</a></strong>, Rank: 33/334 (Top 10%)</li>
</ul>
</div>
</div>
<div class="section">
<h2>Awards</h2>
<div class="paper">
<ul>
<li>Outstanding Star Youth, Ant Group, 2024</li>
<li>Sapphire Award - Outstanding Individual, Ant Group, 2023</li>
<li>Excellent graduate, Southeast University, 2022</li>
<li>Huawei Scholarship, 2022</li>
<li>Excellent graduate, Southeast University, 2019</li>
<li>Principal Scholarship, 2018</li>
<li>Min Yu Scholarship, 2017</li>
</ul>
</div>
</div>
<footer>
<p>Published with <a href='https://pages.github.com/'>GitHub Pages</a></p>
</footer>
<hr>
<script type='text/javascript' id='clustrmaps' src='//cdn.clustrmaps.com/map_v2.js?cl=ffffff&w=a&t=tt&d=aSiVS7XiAP-D8X5xneblJjTCgv8PMWpY_H0Edo_oVdw'></script>
</body>
</html>