-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
650 lines (571 loc) · 24.8 KB
/
Copy pathindex.html
File metadata and controls
650 lines (571 loc) · 24.8 KB
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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Xuebo Liu (刘学博) | HIT Shenzhen</title>
<meta content="Xuebo Liu, sunbowliu.github.io, NLP, HIT Shenzhen" name="keywords" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="css/visitor-map.css">
<style>
:root {
--primary-color: #2563eb; /* 科技蓝 */
--secondary-color: #1e293b; /* 深灰蓝 */
--bg-color: #f8fafc; /* 极浅灰背景 */
--card-bg: #ffffff;
--text-main: #334155;
--text-light: #64748b;
--accent: #f59e0b; /* 金色点缀 */
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-color);
color: var(--text-main);
line-height: 1.7;
font-size: 16px;
}
a {
color: var(--primary-color);
text-decoration: none;
transition: color 0.2s;
}
a:hover {
color: var(--secondary-color);
text-decoration: underline;
}
/* 布局容器 */
.container {
max-width: 1000px;
margin: 40px auto;
padding: 0 20px;
display: grid;
grid-template-columns: 300px 1fr; /* 左侧边栏,右侧内容 */
gap: 40px;
}
/* 左侧个人信息卡片 */
.profile-card {
position: sticky;
top: 40px;
background: var(--card-bg);
padding: 30px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
text-align: center;
height: fit-content;
}
.profile-img {
width: 180px;
height: 180px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 20px;
border: 4px solid #e2e8f0;
transition: transform 0.3s ease;
}
.profile-img:hover {
transform: scale(1.05);
border-color: var(--primary-color);
}
.name-en {
font-size: 1.5rem;
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 5px;
}
.name-cn {
font-size: 1.2rem;
font-weight: 400;
color: var(--text-light);
margin-bottom: 15px;
}
.role-badge {
background: #e0f2fe;
color: #0284c7;
padding: 5px 12px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
display: inline-block;
margin-bottom: 20px;
}
.affiliation {
font-size: 0.9rem;
color: var(--text-light);
margin-bottom: 20px;
text-align: left;
line-height: 1.5;
}
.social-links {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 20px;
}
.social-icon {
width: 40px;
height: 40px;
border-radius: 50%;
background: #f1f5f9;
display: flex;
align-items: center;
justify-content: center;
color: var(--text-main);
transition: all 0.3s;
}
.social-icon:hover {
background: var(--primary-color);
color: white;
text-decoration: none;
transform: translateY(-3px);
}
/* 右侧主要内容 */
.main-content {
display: flex;
flex-direction: column;
gap: 30px;
}
.section-card {
background: var(--card-bg);
padding: 30px;
border-radius: 16px;
box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
h2.section-title {
font-size: 1.4rem;
color: var(--secondary-color);
border-left: 5px solid var(--primary-color);
padding-left: 15px;
margin-bottom: 20px;
display: flex;
align-items: center;
}
/* Bio 样式 */
.bio-text {
font-size: 1.05rem;
color: #374151;
text-align: justify;
}
.hiring-alert {
margin-top: 15px;
padding: 15px;
background: #fffbeb;
border-left: 4px solid var(--accent);
color: #92400e;
font-size: 0.95rem;
border-radius: 4px;
}
/* News 列表样式 (带滚动) */
.news-container {
max-height: 300px; /* 限制高度 */
overflow-y: auto; /* 允许滚动 */
padding-right: 10px;
}
/* 自定义滚动条 */
.news-container::-webkit-scrollbar {
width: 6px;
}
.news-container::-webkit-scrollbar-track {
background: #f1f5f9;
}
.news-container::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 3px;
}
.news-list {
list-style: none;
}
.news-item {
display: flex;
gap: 15px;
margin-bottom: 12px;
font-size: 0.95rem;
}
.news-date {
font-weight: 600;
color: var(--primary-color);
min-width: 80px;
font-family: monospace;
}
/* 经历 Timeline 样式 */
.timeline {
position: relative;
border-left: 2px solid #e2e8f0;
margin-left: 10px;
padding-left: 25px;
}
.timeline-item {
position: relative;
margin-bottom: 25px;
}
.timeline-item::before {
content: '';
position: absolute;
left: -31px;
top: 6px;
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--primary-color);
border: 2px solid white;
box-shadow: 0 0 0 2px #e0f2fe;
}
.time-period {
font-size: 0.85rem;
color: var(--text-light);
font-weight: 600;
margin-bottom: 4px;
display: block;
}
.role-title {
font-weight: 700;
color: var(--secondary-color);
}
.role-loc {
font-style: italic;
color: var(--text-main);
}
/* 按钮样式 */
.btn {
display: inline-block;
padding: 10px 20px;
background: var(--primary-color);
color: white;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
transition: background 0.3s;
}
.btn:hover {
background: #1d4ed8;
text-decoration: none;
color: white;
}
/* 底部杂项 */
.misc-list li {
margin-bottom: 10px;
list-style-type: disc;
margin-left: 20px;
}
/* 响应式适配 */
@media (max-width: 768px) {
.container {
grid-template-columns: 1fr; /* 变为单列 */
margin: 20px auto;
}
.profile-card {
position: relative;
top: 0;
}
}
/* Research Interests 专属样式 */
.interests-grid {
display: grid;
grid-template-columns: minmax(280px, 1fr);
gap: 20px;
margin-top: 15px;
justify-content: center;
}
.interest-item {
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 12px;
padding: 20px;
transition: transform 0.2s, box-shadow 0.2s;
}
.interest-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1); /* 悬停时的蓝色光晕 */
border-color: var(--primary-color);
}
.interest-header {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 15px;
border-bottom: 2px solid #e2e8f0;
padding-bottom: 10px;
}
.interest-icon {
font-size: 1.2rem;
color: var(--primary-color);
background: #e0f2fe;
width: 36px;
height: 36px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
}
.interest-title-text {
font-weight: 700;
color: var(--secondary-color);
font-size: 1.05rem;
}
.interest-summary {
color: #475569;
font-size: 0.98rem;
line-height: 1.72;
margin-bottom: 20px;
text-wrap: pretty;
}
.focus-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px 18px;
margin-bottom: 4px;
}
.focus-block {
border-left: 3px solid #bfdbfe;
padding-left: 12px;
}
.focus-title {
display: flex;
align-items: center;
gap: 8px;
color: var(--secondary-color);
font-size: 0.9rem;
font-weight: 700;
margin-bottom: 8px;
}
.focus-title i {
color: var(--primary-color);
width: 16px;
text-align: center;
}
.tag-container {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.tech-tag {
font-size: 0.85rem;
background: #ffffff;
color: #475569;
padding: 4px 10px;
border-radius: 6px;
border: 1px solid #cbd5e1;
font-weight: 500;
}
@media (max-width: 640px) {
.focus-grid {
grid-template-columns: 1fr;
}
}
/* 不同类别的标签微调 */
.interest-item:hover .tech-tag {
background: var(--primary-color);
color: white;
border-color: var(--primary-color);
}
</style>
</head>
<body>
<div class="container">
<aside class="profile-card">
<img src="other/updated-profile-photo.png" alt="Xuebo Liu" class="profile-img">
<div class="name-en">Xuebo Liu</div>
<div class="name-cn">刘学博</div>
<div class="role-badge">Associate Professor</div>
<div class="affiliation">
<p>School of Computer Science and Technology</p>
<p><strong>Harbin Institute of Technology, Shenzhen</strong></p>
<p style="margin-top:10px; font-size: 0.85rem; color: #64748b;">
<i class="fas fa-map-marker-alt"></i> Shenzhen, Guangdong, China
</p>
</div>
<div class="social-links">
<a href="mailto:liuxuebo@hit.edu.cn" class="social-icon" title="Email">
<i class="fas fa-envelope"></i>
</a>
<a href="https://scholar.google.com/citations?user=XkDl9aoAAAAJ&hl=en" class="social-icon" title="Google Scholar">
<i class="fas fa-graduation-cap"></i>
</a>
<a href="https://www.linkedin.com/in/xuebo-liu-47877b195/" class="social-icon" title="LinkedIn">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://homepage.hit.edu.cn/liuxuebo" class="social-icon" title="Chinese Homepage" style="font-weight: 700; font-size: 1.1rem;">
中
</a>
</div>
<div style="margin-top: 14px; padding-top: 12px; border-top: 1px solid #e2e8f0; text-align: center;">
<div class="visitor-map" data-width="230" aria-label="Visitor footprint map">
<div class="visitor-map__canvas">
<div class="visitor-map__loading"><span class="visitor-map__spinner"></span> Loading map</div>
<div class="visitor-map__tooltip"></div>
</div>
<div class="visitor-map__caption">Loading visits</div>
</div>
</div>
</aside>
<main class="main-content">
<section class="section-card">
<h2 class="section-title">Biography</h2>
<div class="bio-text">
<p>
I am an Associate Professor at the School of Computer Science and Technology, Harbin Institute of Technology, Shenzhen.
</p>
<p style="margin-top: 10px;">
Before that, I received my PhD degree at University of Macau (2021), advised by <a href="https://personal.fic.um.edu.mo/derek-wong/">Prof. Derek F. Wong</a> and was a member of NLP2CT Lab.
I was a postgraduate intern at Tsinghua NLP Group (2018), advised by <a href="http://nlp.csai.tsinghua.edu.cn/~ly/">Prof. Yang Liu</a> and a research intern at Tencent AI Lab (2019-2021), advised by <a href="http://www.zptu.net/">Dr. Zhaopeng Tu</a> and <a href="http://www.longyuewang.com/">Dr. Longyue Wang</a>.
</p>
<div class="hiring-alert">
<i class="fas fa-bullhorn"></i> <strong>Looking for Students:</strong> Looking for self-motivated students and interns to join our team. Please feel free to contact me if you have interests!
</div>
</div>
</section>
<section class="section-card">
<h2 class="section-title">Research Interests</h2>
<div class="interests-grid">
<div class="interest-item">
<div class="interest-header">
<div class="interest-icon"><i class="fas fa-network-wired"></i></div>
<div class="interest-title-text">LLM-based Multi-agent Systems</div>
</div>
<p class="interest-summary">
I build efficient and controllable LLM-based multi-agent systems across their full lifecycle, from team initialization and pre-run optimization to runtime optimization. Around this pipeline, I study how memory and evolution mechanisms turn collaboration experience into lasting capability, and develop the open infrastructure that carries these methods into real‑world applications.
</p>
<div class="focus-grid">
<div class="focus-block">
<div class="focus-title"><i class="fas fa-route"></i> Lifecycle Optimization</div>
<div class="tag-container">
<span class="tech-tag">System Initialization</span>
<span class="tech-tag">Pre-run Optimization</span>
<span class="tech-tag">Runtime Optimization</span>
</div>
</div>
<div class="focus-block">
<div class="focus-title"><i class="fas fa-brain"></i> Memory and Evolution</div>
<div class="tag-container">
<span class="tech-tag">Memory Management</span>
<span class="tech-tag">Context Injection</span>
<span class="tech-tag">Error Attribution</span>
<span class="tech-tag">Credit Assignment</span>
</div>
</div>
<div class="focus-block">
<div class="focus-title"><i class="fas fa-layer-group"></i> MAS Infrastructure</div>
<div class="tag-container">
<span class="tech-tag">Collaboration Traces</span>
<span class="tech-tag">Collaboration-Native Models</span>
<span class="tech-tag">Evaluation Benchmarks</span>
<span class="tech-tag">Interactive Sandboxes</span>
</div>
</div>
<div class="focus-block">
<div class="focus-title"><i class="fas fa-flask"></i> Applications</div>
<div class="tag-container">
<span class="tech-tag">Deep Research</span>
<span class="tech-tag">Scientific Discovery</span>
<span class="tech-tag">Social Simulation</span>
<span class="tech-tag">Game Intelligence</span>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section-card">
<h2 class="section-title">News</h2>
<div class="news-container">
<ul class="news-list">
<li class="news-item"><span class="news-date">[05.2026]</span> <span>Seven papers are accepted to ICML 2026.</span></li>
<li class="news-item"><span class="news-date">[04.2026]</span> <span>Serving as Senior Area Chair of EMNLP 2026.</span></li>
<li class="news-item"><span class="news-date">[03.2026]</span> <span>Three papers are accepted to ACL 2026 and its findings.</span></li>
<li class="news-item"><span class="news-date">[01.2026]</span> <span>One paper is accepted to ICLR 2026.</span></li>
<li class="news-item"><span class="news-date">[12.2025]</span> <span>Serving as Senior Area Chair of ACL 2026.</span></li>
<li class="news-item"><span class="news-date">[08.2025]</span> <span>Seven papers are accepted to EMNLP 2025 and its findings.</span></li>
<li class="news-item"><span class="news-date">[05.2025]</span> <span>Five papers are accepted to ACL 2025 and its findings.</span></li>
<li class="news-item"><span class="news-date">[05.2025]</span> <span>Serving as Senior Area Chair of AACL 2025.</span></li>
<li class="news-item"><span class="news-date">[05.2025]</span> <span>Serving as Senior Area Chair of EMNLP 2025.</span></li>
<li class="news-item"><span class="news-date">[01.2025]</span> <span>One paper is accepted to ICLR 2025.</span></li>
<li class="news-item"><span class="news-date">[12.2024]</span> <span>One paper is accepted to AAAI 2025.</span></li>
<li class="news-item"><span class="news-date">[11.2024]</span> <span>One paper is accepted to COLING 2025.</span></li>
<li class="news-item"><span class="news-date">[10.2024]</span> <span>Serving as Area Chair of NAACL 2025.</span></li>
<li class="news-item"><span class="news-date">[09.2024]</span> <span>Two papers are accepted to NeurIPS 2024.</span></li>
<li class="news-item"><span class="news-date">[09.2024]</span> <span>Five papers are accepted to EMNLP 2024 and its findings.</span></li>
<li class="news-item"><span class="news-date">[06.2024]</span> <span>Serving as Area Chair of EMNLP 2024.</span></li>
<li class="news-item"><span class="news-date">[05.2024]</span> <span>Eight papers are accepted to ACL 2024 and its findings.</span></li>
<li class="news-item"><span class="news-date">[02.2024]</span> <span>Serving as Area Chair of ACL 2024.</span></li>
<li class="news-item"><span class="news-date">[02.2024]</span> <span>One paper is accepted to CVPR 2024.</span></li>
<li class="news-item"><span class="news-date">[02.2024]</span> <span>Two papers are accepted to COLING 2024.</span></li>
</ul>
</div>
</section>
<section class="section-card" style="display: flex; justify-content: space-between; align-items: center;">
<div>
<h2 class="section-title" style="margin-bottom: 5px;">Publications</h2>
<p style="color: var(--text-light);">View the complete list of published works.</p>
</div>
<a href="pub.html" class="btn">View Publications <i class="fas fa-arrow-right" style="margin-left: 5px;"></i></a>
</section>
<section class="section-card">
<h2 class="section-title">Experiences</h2>
<div class="timeline">
<div class="timeline-item">
<span class="time-period">01.2025 - Present</span>
<div class="role-title">Associate Professor</div>
<div class="role-loc">School of Computer Science and Technology, Harbin Institute of Technology, Shenzhen</div>
</div>
<div class="timeline-item">
<span class="time-period">09.2021 - 12.2024</span>
<div class="role-title">Assistant Professor</div>
<div class="role-loc">School of Computer Science and Technology, Harbin Institute of Technology, Shenzhen</div>
</div>
<div class="timeline-item">
<span class="time-period">03.2016 - 06.2021</span>
<div class="role-title">Research Assistant</div>
<div class="role-loc">NLP2CT Lab, University of Macau (Advised by Prof. Derek F. Wong)</div>
</div>
<div class="timeline-item">
<span class="time-period">12.2019 - 03.2021</span>
<div class="role-title">Research Intern</div>
<div class="role-loc">NLP Center, Tencent AI Lab (Advised by Dr. Zhaopeng Tu & Dr. Longyue Wang)</div>
</div>
<div class="timeline-item">
<span class="time-period">05.2018 - 11.2018</span>
<div class="role-title">Postgraduate Intern</div>
<div class="role-loc">NLP Lab, Tsinghua University (Advised by Prof. Yang Liu)</div>
</div>
</div>
</section>
<section class="section-card">
<h2 class="section-title">Professional Services</h2>
<div class="bio-text" style="font-size: 0.95rem;">
<ul style="list-style: none;">
<li style="margin-bottom: 8px;"><strong>Senior Area Chair:</strong> ACL 2026; EMNLP 2025-2026; AACL 2025</li>
<li style="margin-bottom: 8px;"><strong>Area Chair:</strong> ACL 2022, 2024-2025; EMNLP 2022-2024; NAACL 2024-2025; EACL 2024; CCL 2023-2025; NLPCC 2024</li>
<li style="margin-bottom: 8px;"><strong>Journal Reviewer:</strong> TASLP 2022-2024; CL 2021; Neurocomputing 2020-2022; TALLIP 2018-2019, 2021-2024</li>
<li style="margin-bottom: 8px;"><strong>Conference Reviewer:</strong> ICLR 2022-2025; ICML 2022-2025; NeurIPS 2020-2025; ACL 2019, 2021-2024; EMNLP 2021-2024; NAACL 2021-2024; AAAI 2019, 2021-2024; IJCAI 2022-2024; COLING 2020-2025; NLPCC 2019-2024</li>
</ul>
</div>
</section>
<section class="section-card">
<h2 class="section-title">Miscellaneous</h2>
<ul class="misc-list">
<li>My first name Xuebo means studying (Xue) for a doctorate (Bo). I have achieved it on May 27, 2021.</li>
<li>If you are also interested in Vision Transformer, please take a look at my friend <a href="https://vinthony.github.io/">Dr. Xiaodong Cun</a>.</li>
</ul>
</section>
</main>
</div>
<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>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.8.5/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/3.0.2/topojson.min.js"></script>
<script src="js/visitor-map.js"></script>
</body>
</html>