forked from Jun-CEN/Jun-CEN.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1766 lines (1617 loc) · 75.2 KB
/
index.html
File metadata and controls
1766 lines (1617 loc) · 75.2 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
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<!-- <script async src="https://www.googletagmanager.com/gtag/js?id=G-RFR2GFKT75"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-RFR2GFKT75');
</script> -->
<!-- Google Tag Manager -->
<!-- <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
})(window,document,'script','dataLayer','GTM-NC38VTD');</script> -->
<!-- End Google Tag Manager -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- <meta http-equiv="refresh" content="0; URL=https://cs.stanford.edu/~leoyuan/"> -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <meta name="google-site-verification" content="u_--0s_Uw50r4zCgRrzltkmFhNCduYOJwPGlKVTuNJU" /> -->
<title>Jun CEN</title>
<meta name="description" lang="en" content="This is an academic website for Will Hua">
<meta name="keywords" lang="en" content="Jun CEN" />
<link rel="shortcut icon" href="images/J.jpeg">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/academicons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
<script src="js/jquery-2.1.3.min.js"> </script>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/r29/html5.min.js">
</script>
<![endif]-->
<script type="text/javascript">
function ShowHide(divId, linkDivId) {
if(document.getElementById(divId).style.display == 'none') {
document.getElementById(divId).style.display='block';
document.getElementById(linkDivId).style.display='none'; // Hide the "read more" link
}
else {
document.getElementById(divId).style.display = 'none';
}
}
</script>
<style>
/* 为所有列表项设置样式 */
li.indented {
position: relative;
padding-left: 90px; /* 这是对齐效果的关键,可以根据实际内容调整这个值 */
}
li.indented::before {
content: attr(data-date);
position: absolute;
left: 0;
top: 0;
white-space: nowrap;
}
</style>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<!-- <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NC38VTD"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> -->
<!-- End Google Tag Manager (noscript) -->
<header class="site-header">
<div class="wrapper">
<nav class="site-nav">
<a href="#" class="menu-icon">
<svg viewBox="0 0 18 15">
<path fill="#424242" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
<path fill="#424242" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484 h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
<path fill="#424242" d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z"/>
</svg>
</a>
<div class="trigger">
<a class="page-link" href="#bio"><b>Biography</b></a>
<a class="page-link" href="#timeline"><b>Experiences</b></a>
<a class="page-link" href="#publications"><b>Publications</b></a>
<a class="page-link" href="#codebase"><b>GitHub</b></a>
<a class="page-link" href="#awards"><b>Honors & Awards</b></a>
<a class="page-link" href="#academicservices"><b>Academic Services </b></a>
<!--<a class="page-link" href="#otherprojects">Projects</a>-->
<!-- Button for Posts -->
</div>
</nav>
</div>
</header>
<div id="profile-cover" class="cover shallow-bg img-responsive">
<div id="profile-namecard" class="profile-wrapper wrapper-light">
<div id="my-pic" class="profile-col profile-col-1">
<img id="profile-avatar" src="images/myself.jpg" alt="Me" class="circle-img border-dark"-/>
</div>
<div id="my-contact" class="profile-col profile-col-2">
<div id="my-name" class="text-grey-dark">
Jun CEN<br>
</div>
<div id="my-title" class="text-grey">
DAMO Academy, Alibaba
</div>
<div id="my-email" class="text-grey-light">
jcenaa [at] connect.ust.hk
</div>
</div>
<div class="social-media">
<a href="https://scholar.google.com/citations?user=7SKAhBwAAAAJ&hl=en" target="_blank" class="icon-button linkedin">
<i class="ai ai-google-scholar-square icon-linkedin"></i>
<span></span>
</a>
<a href="https://github.com/Jun-CEN" target="_blank" class="icon-button github">
<i class="fa fa-github icon-github"></i>
<span></span>
</a>
<a href="https://www.linkedin.com/in/jun-cen-45b995219/" target="_blank" class="icon-button linkedin">
<i class="fa fa-linkedin icon-linkedin"></i>
<span></span>
</a>
<a href="work/Resume_Jun_CEN.pdf" target="_blank" class="icon-button github">
<i class="ai ai-cv icon-github"></i>
<span></span>
</a>
<a href="mailto:jcenaa@connect.ust.hk" target="_blank" class="icon-button linkedin">
<i class="fa fa-envelope icon-linkedin"></i>
<span></span>
</a>
</div>
</div>
<!-- <div id="my-desc" class="profile-col profile-col-2 hide">
<div id="my-desc-title">
Another me.
</div>
<div id="my-desc-content">
I enjoy running, traveling, hiking, movies, music and so much more<br>
</div>
</div> -->
</div>
</div>
<!-- <script type="text/javascript">
function deepFeature()
{
$('#profile-avatar').attr('src', 'images/self-portrait/deep-me.jpg');
$('#profile-avatar').removeClass('border-dark');
$('#profile-avatar').addClass('border-bright');
$('#profile-cover').removeClass('shallow-bg');
$('#profile-cover').addClass('deep-bg');
$('#profile-namecard').removeClass('wrapper-light');
$('#profile-namecard').addClass('wrapper-dark');
$('#my-desc').removeClass('hide');
$('#my-contact').addClass('hide');
// console.log('Move in now...');
}
function shallowFeature()
{
$('#profile-avatar').attr('src', 'images/self-portrait/me.jpg');
$('#profile-avatar').removeClass('border-bright');
$('#profile-avatar').addClass('border-dark');
$('#profile-cover').removeClass('deep-bg');
$('#profile-cover').addClass('shallow-bg');
$('#profile-namecard').removeClass('wrapper-dark');
$('#profile-namecard').addClass('wrapper-light');
$('#my-contact').removeClass('hide');
$('#my-desc').addClass('hide');
// console.log('Move out now...');
}
$(function() {
$('#my-pic').hover(deepFeature, shallowFeature);
})
</script> -->
<div class="page-content">
<div class="wrapper">
<div id="bio" class="bio">
<h1 class="md-heading text-left">
<i class="fa fa-id-card" aria-hidden="true"></i>
About
</h1>
<div class="bio-body" style="overflow:hidden;">
<p>
I am an algorithm expert in <a href="https://damo.alibaba.com/?language=zh" target="_blank">DAMO Academy, Alibaba</a>, where I focus on multi-modality model and embodied AI.
I got my Ph.D. at the <a href="http://ri.ust.hk" target="_blank">Robotics Institute</a>, <a href="https://www.ust.hk" target="_blank">The Hong Kong University of Science and Technology</a>, where I work on computer vision and autonomous driving under the supervision of <a href="https://cqf.io/" target="_blank">Prof. Qifeng Chen</a> and <a href="https://scholar.google.com/citations?user=Oo7c22wAAAAJ&hl=zh-CN" target="_blank">Prof. Michael Yu Wang</a>.
I'm always looking for related colaboration. If you are interested to chat with me, feel free to drop me an <a href="mailto:jcenaa@connect.ust.hk" target="_blank">email</a>.
<br>
</p>
<div style="width: 50%; float:left">
<h3>
<i class="fa fa-star" aria-hidden="true"></i>
<strong>Interests</strong>
</h3>
<ul>
<!-- <li><b>Multi-modality</b></li> -->
<li><b>Embodied AI, Multi-modality LLM</b></li>
<a href="https://arxiv.org/pdf/2506.21539" target="_blank">[WorldVLA]</a><a href="https://arxiv.org/pdf/2509.15212" target="_blank">[RynnVLA-001]</a><a href="https://neurips.cc/virtual/2025/poster/120127" target="_blank">[HiMaCon]</a><a href="https://arxiv.org/pdf/2509.19460" target="_blank">[SEIL]</a><a href="https://arxiv.org/pdf/2503.03464" target="_blank">[Survey]</a><a href="https://arxiv.org/abs/2402.10534" target="_blank">[VLP]</a><a href="https://ieeexplore.ieee.org/abstract/document/9681231" target="_blank">[VPN]</a>
<li><b>Autonomous Driving</b></li>
<a href="https://arxiv.org/abs/2403.13261" target="_blank">[STC]</a><a href="https://arxiv.org/abs/2207.01452" target="_blank">[REAL]</a><a href="https://arxiv.org/abs/2108.04562" target="_blank">[DML]</a><a href="https://arxiv.org/abs/2112.01135" target="_blank">[MLUC]</a>
<li><b>3D Segmentation</b></li>
<a href="https://arxiv.org/abs/2409.08083" target="_blank">[SimMAT]</a><a href="https://arxiv.org/abs/2403.17010" target="_blank">[Calib3D]</a><a href="https://arxiv.org/abs/2305.14207" target="_blank">[Segment Any RGBD]</a><a href="https://arxiv.org/abs/2306.09347" target="_blank">[Segment Any Point Cloud]</a><a href="https://arxiv.org/abs/2405.10305" target="_blank">[PSG-4D]</a><a href="https://arxiv.org/abs/2307.04091" target="_blank">[CMDFusion]</a>
<li><b>Open-set Recognition</b></li>
<a href="https://openreview.net/forum?id=xLr0I_xYGAs" target="_blank">[UOSR]</a><a href="https://arxiv.org/abs/2303.15467" target="_blank">[PSL]</a>
<li><b>Continual Learning</b></li>
<a href="https://arxiv.org/abs/2403.08568" target="_blank">[CPrompt]</a><a href="https://arxiv.org/abs/2211.00833" target="_blank">[FrameMaker]</a><a href="https://ieeexplore.ieee.org/abstract/document/9665922" target="_blank">[KD-TIL]</a>
</ul>
</div>
<div style="width: 50%; float:right">
<h3>
<i class="fa fa-graduation-cap" aria-hidden="true"></i>
<strong>Education</strong>
</h3>
<b>The Hong Kong University of Science and Technology</b><br>
<ul>
<li>Ph.D in Robotics, Sep. 2020 - Oct. 2024</li>
<li>Mentor: <a href="https://cqf.io/" target="_blank">Prof. Qifeng Chen</a> and <a href="https://scholar.google.com/citations?user=Oo7c22wAAAAJ&hl=zh-CN" target="_blank">Prof. Michael Yu Wang</a> </li>
</ul>
<b>The Hong Kong University of Science and Technology</b><br>
<ul>
<li>M.Sc in Mechanical Engineering, Sep. 2019 - Oct. 2020</li>
<li>Mentor: <a href="https://seng.hkust.edu.hk/about/people/faculty/lilong-cai" target="_blank">Prof. Lilong Cai</a></li>
</ul>
<b>Zhejiang University</b><br>
<ul>
<li>B.Eng in Mechatronics Engineering, Sep. 2015 - Oct. 2019</li>
<li>Mentor: <a href="http://me.zju.edu.cn/meenglish/2016/1129/c15493a734703/page.htm" target="_blank">Prof. Jinghua Xu</a></li>
</ul>
</div>
</div>
</div>
<!-- <div id="news" class="bio">
<h1 class="md-heading text-left">
<i class="fa fa-tasks" aria-hidden="true"></i>
News
</h1>
<ul>
<li class="indented" data-date="[Feb, 2024]"> Give a talk on <a href="https://arxiv.org/pdf/2402.03675.pdf">protein-protein interaction prediction</a> to <a href="https://jian-tang.com/students/">Jian Tang's group</a>. [<a href="files/ppiretrieval.pdf">Slide</a>]</li>
<li class="indented" data-date="[Dec, 2023]"> Give a talk on <a href="https://arxiv.org/pdf/2304.14621.pdf">structure-based molecule design</a> at LoG2023 Montreal. [<a href="files/mudiff.pdf">Slide</a>][<a href="https://www.youtube.com/watch?v=Z5l-gaV-DUo">Video</a>]</li>
<li class="indented" data-date="[Nov, 2023]"> One paper accepted to 2nd Learning on Graphs Conference.</li>
<li class="indented" data-date="[Oct, 2023]"> One paper accepted to 37th Conference on Neural Information Processing Systems.</li>
<li class="indented" data-date="[Sep, 2023]"> One paper accepted to 12th International Conference on Complex Networks and their Applications.</li>
<li class="indented" data-date="[Oct, 2022]"> One paper accepted to 36th Conference on Neural Information Processing Systems, GLFrontiers, and selected for <b><span style="color: red;">Oral</span></b> presentation.</li>
<li class="indented" data-date="[Oct, 2022]"> Two papers accepted to 36th Conference on Neural Information Processing Systems, and one paper selected for <b><span style="color: red;">Spotlight</span></b> presentation.</li>
</ul>
</div> -->
<!-- <div class="wrapper"> -->
<div id="timeline" class="timeline-brief">
<h1 class="md-heading text-left">
<i class="fa fa-tasks" aria-hidden="true"></i>
Experiences
</h1>
<div class="timeline-body">
<div class="timeline-item">
<div class="timeline-date">
<img class="social-icon" src="images/damo_logo_2.avif"/>
Aug, 2024 - Now
</div>
<div class="timeline-title">
Algorithm Expert @ <a href="https://damo.alibaba.com/?language=zh" target="_blank">DAMO Academy, Alibaba</a>
</div>
<div class="timeline-desc">
<b> Join as <img class="social-icon" src="images/alistar.png" style="width:20px; height:20px; vertical-align:middle; position:relative; top:-2px;"/> <a href="https://talent.alibaba.com/activity/ali-star?lang=zh" target="_blank">AliStar,</a> focus on Embodied AI and VLA models. </b>
<div class="timeline-host">
<!-- Supervisor: <a href="https://prokia.github.io/">Shuangjia Zheng</a> -->
</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">
<img class="social-icon" src="images/MSRA_3.jpg"/>
Aug, 2023 - May, 2024
</div>
<div class="timeline-title">
Research Intern @ <a href="https://www.msra.cn/" target="_blank">MSRA</a>
</div>
<div class="timeline-desc">
<div class="timeline-host">
Supervisor: <a href="https://chenfei-wu.github.io//" target="_blank">Dr. Chenfei Wu</a>, <a href="https://nanduan.github.io//" target="_blank">Dr. Nan Duan</a>
</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">
<img class="social-icon" src="images/SUSTech_3.png"/>
Aug, 2023 - July, 2024
</div>
<div class="timeline-title">
Visiting Student @ <a href="https://www.sustech.edu.cn/en/" target="_blank">SUSTech</a>
</div>
<div class="timeline-desc">
<div class="timeline-host">
Supervisor: <a href="https://www.sustech.edu.cn/en/faculties/zhangjianguo.html" target="_blank">Prof. Jianguo Zhang</a>
</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">
<img class="social-icon" src="images/ntu_logo_2.png"/>
Mar, 2023 - Sep, 2023
</div>
<div class="timeline-title">
Visiting Student @ <a href="https://www.mmlab-ntu.com/" target="_blank">MMLab, NTU</a>
</div>
<div class="timeline-desc">
<div class="timeline-host">
Supervisor: <a href="https://liuziwei7.github.io/" target="_blank">Prof. Ziwei Liu</a>
</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">
<img class="social-icon" src="images/tongyi.png"/>
Mar, 2022 - Mar, 2023
</div>
<div class="timeline-title">
Research Intern @ <a href="https://tongyi.aliyun.com/welcome" target="_blank">Tongyi Lab, Alibaba</a>
</div>
<div class="timeline-desc">
<div class="timeline-host">
Supervisor: <a href="https://scholar.google.com/citations?user=ZO3OQ-8AAAAJ&hl=en" target="_blank">Dr. Shiwei Zhang</a>
</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">
<img class="social-icon" src="images/hikvision.jpg"/>
Mar, 2020 - July, 2020
</div>
<div class="timeline-title">
Algorithm Intern @ <a href="https://www.hikvision.com/en/" target="_blank">HIKVISION</a>
</div>
<div class="timeline-desc">
<div class="timeline-host">
Supervisor: <a href="https://ieeexplore.ieee.org/author/37088529015" target="_blank"> Dr. Yushi Zhu</a>
</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">
<img class="social-icon" src="images/cuhk_logo.png"/>
Nov, 2019 - Feb, 2020
</div>
<div class="timeline-title">
Research Assistant @ <a href="https://www.cuhk.edu.cn/en" target="_blank">CUHK(SZ)</a>
</div>
<div class="timeline-desc">
<div class="timeline-host">
Supervisor: <a href="https://sites.google.com/view/zhouliguang" target="_blank">Dr. Liguang Zhou</a>, <a href="https://sites.google.com/site/lamtinlun" target="_blank">Prof. Tin Lun Lam</a>
</div>
</div>
</div>
<br>
</div>
</div>
<div id="publications" class="publications">
<h1 class="md-heading text-left">
<i class="fa fa-file" aria-hidden="true"></i>
Publications (<button class="custom-button" id="show-selected-btn"> Show Representative </button> / <button class="custom-button" id="show-all-btn"> Show All </button>)
</h1>
<div class="pub-list">
<div class="pub" data-selected="true">
<div class="pub-left">
<img class="intro-img frame" src="images/worldvla.png">
</div>
<div class="pub-right">
<div class="title">
WorldVLA: Towards Autoregressive Action World Model
</div>
<div class="authors">
<font style="font-size: 11pt;">
<b>Jun Cen</b>, Chaohui Yu, Hangjie Yuan, Yuming Jiang, Siteng Huang, Jiayan Guo, Xin Li, Yibing Song, Hao Luo, Fan Wang, Deli Zhao, Hao Chen
</font>
</div>
<div class="publish">
<span class="place">Arxiv 2025</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/pdf/2506.21539" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/alibaba-damo-academy/WorldVLA" target="_blank">Code (Star 400+)</a>]
</div>
</div>
</div>
<div class="pub" data-selected="true">
<div class="pub-left">
<img class="intro-img frame" src="images/RynnVLA-001.png">
</div>
<div class="pub-right">
<div class="title">
RynnVLA-001: Using Human Demonstrations to Improve Robot Manipulation
</div>
<div class="authors">
<font style="font-size: 11pt;">
Yuming Jiang, Siteng Huang, Shengke Xue, Yaxi Zhao, <b>Jun Cen</b>, Sicong Leng, Kehan Li, Jiayan Guo, Kexiang Wang, Mingxiu Chen, Fan Wang, Deli Zhao, Xin Li
</font>
</div>
<div class="publish">
<span class="place">Arxiv 2025</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/pdf/2509.15212" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/alibaba-damo-academy/RynnVLA-001" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub" data-selected="true">
<div class="pub-left">
<img class="intro-img frame" src="images/self-evolve.png">
</div>
<div class="pub-right">
<div class="title">
Self-evolved Imitation Learning in Simulated World
</div>
<div class="authors">
<font style="font-size: 11pt;">
Yifan Ye, <b>Jun Cen</b>, Jing Chen, Zhihe Lu
</font>
</div>
<div class="publish">
<span class="place">Arxiv 2025</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/pdf/2509.19460" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/Jasper-aaa/SEIL" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub" data-selected="true">
<div class="pub-left">
<img class="intro-img frame" src="images/Himacon.png">
</div>
<div class="pub-right">
<div class="title">
Discovering Hierarchical Manipulation Concepts from Unlabeled Multi-Modal Data
</div>
<div class="authors">
<font style="font-size: 11pt;">
Ruizhe Liu, Pei Zhou, Qian Luo, Li Sun, <b>Jun Cen</b>, Yibing Song, Yanchao Yang
</font>
</div>
<div class="publish">
<span class="place">NeurIPS 2025</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="" target="_blank">Paper</a>]
[<a class="tag" href="" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub" data-selected="true">
<div class="pub-left">
<img class="intro-img frame" src="images/survey.png">
</div>
<div class="pub-right">
<div class="title">
Generative Artificial Intelligence in Robotic Manipulation: A Survey
</div>
<div class="authors">
<font style="font-size: 11pt;">
Kun Zhang*, Peng Yun*, <b>Jun Cen</b>, Junhao Cai, Didi Zhu, Hangjie Yuan, Chao Zhao, Tao Feng, Michael Yu Wang, Qifeng Chen, Jia Pan, Bo Yang†, Hua Chen†
</font>
</div>
<div class="publish">
<span class="place">Arxiv 2025</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/pdf/2503.03464" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/GAI4Manipulation/AwesomeGAIManipulation" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub" data-selected="true">
<div class="pub-left">
<img class="intro-img frame" src="images/lumos.png">
</div>
<div class="pub-right">
<div class="title">
Lumos-1: On Autoregressive Video Generation from a Unified Model Perspective
</div>
<div class="authors">
<font style="font-size: 11pt;">
Hangjie Yuan, Weihua Chen, <b>Jun Cen</b>, Hu Yu, Jingyun Liang, Shuning Chang, Zhihui Lin, Tao Feng, Pengwei Liu, Jiazheng Xing, Hao Luo, Jiasheng Tang, Fan Wang, Yi Yang
</font>
</div>
<div class="publish">
<span class="place">Arxiv 2025</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/pdf/2507.08801" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/alibaba-damo-academy/Lumos" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub" data-selected="false">
<div class="pub-left">
<img class="intro-img frame" src="images/wacv25.png">
</div>
<div class="pub-right">
<div class="title">
Calib3D: Calibrating Model Preferences for Reliable 3D Scene Understanding
</div>
<div class="authors">
<font style="font-size: 11pt;">
Lingdong Kong*, Xiang Xu*, <b>Jun Cen</b>, Wenwei Zhang, Liang Pan, Kai Chen, Ziwei Liu
</font>
</div>
<div class="publish">
<span class="place">WACV 2025 oral</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/pdf/2403.17010" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/ldkong1205/Calib3D" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub" data-selected="false">
<div class="pub-left">
<img class="intro-img frame" src="images/samcl.png">
</div>
<div class="pub-right">
<div class="title">
Continual Learning for Segment Anything Model Adaptation
</div>
<div class="authors">
<font style="font-size: 11pt;">
Jinglong Yang, Yichen Wu, <b>Jun Cen</b>, Wenjian Huang, Hong Wang, Jianguo Zhang
</font>
</div>
<div class="publish">
<span class="place">Arxiv 2024</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/pdf/2412.06418" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/yangjl1215/CoSAM" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub" data-selected="false">
<div class="pub-left">
<img class="intro-img frame" src="images/simcmf.png">
</div>
<div class="pub-right">
<div class="title">
SimCMF: A Simple Cross-modal Fine-tuning Strategy from Vision Foundation Models to Any Imaging Modality
</div>
<div class="authors">
<font style="font-size: 11pt;">
Chenyang Lei*, Liyi Chen*, <b>Jun Cen</b>, Xiao Chen, Zhen Lei, Felix Heide, Qifeng Chen, Zhaoxiang Zhang
</font>
</div>
<div class="publish">
<span class="place">Arxiv 2024</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/pdf/2411.18669" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/mt-cly/SimCMF" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub" data-selected="false">
<div class="pub-left">
<img class="intro-img frame" src="images/mm24.png">
</div>
<div class="pub-right">
<div class="title">
iControl3D: An Interactive System for Controllable 3D Scene Generation
</div>
<div class="authors">
<font style="font-size: 11pt;">
Xingyi Li, Yizheng Wu, <b>Jun Cen</b>, Juewen Peng, Kewei Wang, Ke Xian, Zhe Wang, Zhiguo Cao, Guosheng Lin
</font>
</div>
<div class="publish">
<span class="place">ACMMM 2024</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/pdf/2408.01678" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/xingyi-li/iControl3D" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub" data-selected="true">
<div class="pub-left">
<img class="intro-img frame" src="images/VLP.png">
</div>
<div class="pub-right">
<div class="title">
Using Left and Right Brains Together: Towards Vision and Language Planning
</div>
<div class="authors">
<font style="font-size: 11pt;">
<b>Jun Cen*</b>, Chenfei Wu*, Xiao Liu, Shengming Yin, Yixuan Pei, Jinglong Yang, Qifeng Chen, Nan Duan, Jianguo Zhang
</font>
</div>
<div class="publish">
<span class="place">ICML 2024</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/abs/2402.10534" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/Jun-CEN" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub">
<div class="pub-left">
<img class="intro-img frame" src="images/cvpr24-mp.png">
</div>
<div class="pub-right">
<div class="title">
Self-Supervised Class-Agnostic Motion Prediction with Spatial and Temporal Consistency Regularizations
</div>
<div class="authors">
<font style="font-size: 11pt;">
Kewei Wang, Yizheng Wu, <b>Jun Cen</b>, Zhiyu Pan, Xingyi Li, Zhe Wang, Zhiguo Cao, Guosheng Lin
</font>
</div>
<div class="publish">
<span class="place">CVPR 2024</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/abs/2403.13261" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/kwwcv/SelfMotion" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub">
<div class="pub-left">
<img class="intro-img frame" src="images/cvpr24-il.png">
</div>
<div class="pub-right">
<div class="title">
Consistent Prompting for Rehearsal-Free Continual Learning
</div>
<div class="authors">
<font style="font-size: 11pt;">
Zhanxin Gao, <b>Jun Cen</b>, Xiaobin Chang
</font>
</div>
<div class="publish">
<span class="place">CVPR 2024</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/abs/2403.08568" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/Zhanxin-Gao/CPrompt" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub" data-selected="true">
<div class="pub-left">
<img class="intro-img frame" src="images/iros_2023.png">
</div>
<div class="pub-right">
<div class="title">
CMDFusion: Bidirectional Fusion Network with Cross-modality Knowledge Distillation for LIDAR Semantic Segmentation
</div>
<div class="authors">
<font style="font-size: 11pt;">
<b>Jun Cen</b>, Shiwei Zhang, Yixuan Pei, Kun Li, Hang Zheng, Maochun Luo, Yingya Zhang, Qifeng Chen
</font>
</div>
<div class="publish">
<span class="place">RA-L 2023</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/abs/2307.04091" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/Jun-CEN/CMDFusion" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub" data-selected="true">
<div class="pub-left">
<img class="intro-img frame" src="images/logo_sad.png">
</div>
<div class="pub-right">
<div class="title">
SAD: Segment Any RGBD
</div>
<div class="authors">
<font style="font-size: 11pt;">
<b>Jun Cen</b>, Yizheng Wu, Kewei Wang, Xingyi Li, Jingkang Yang, Yixuan Pei, Lingdong Kong, Ziwei Liu, Qifeng Chen
<br>
</font>
</div>
<div class="publish">
<span class="place">NeurIPS 2023 workshop</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/abs/2305.14207" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/Jun-CEN/SegmentAnyRGBD" target="_blank">Code (Star 800+)</a>]
[<a class="tag" href="https://twitter.com/liuziwei7/status/1651461200956514306?s=46&t=MqA7wuLxDqLOBW0TfTNOMA" target="_blank">Twitter</a>]
</div>
</div>
</div>
<div class="pub">
<div class="pub-left">
<img class="intro-img frame" src="images/seg_pt.png">
</div>
<div class="pub-right">
<div class="title">
Segment Any Point Cloud Sequences by Distilling Vision Foundation Models
</div>
<div class="authors">
<font style="font-size: 11pt;">
Youquan Liu*, Lingdong Kong*, <b>Jun Cen</b>, Runnan Chen, Wenwei Zhang, Liang Pan, Kai Chen, Ziwei Liu
</font>
</div>
<div class="publish">
<span class="place">NeurIPS 2023 Spotlight</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/abs/2306.09347" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/youquanl/Segment-Any-Point-Cloud" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub">
<div class="pub-left">
<img class="intro-img frame" src="images/psg4d.png">
</div>
<div class="pub-right">
<div class="title">
4D Panoptic Scene Graph Generation
</div>
<div class="authors">
<font style="font-size: 11pt;">
Jingkang Yang, <b>Jun Cen</b>, Wenxuan Peng, Shuai Liu, Fangzhou Hong, Xiangtai Li, Kaiyang Zhou, Qifeng Chen, Ziwei Liu
</font>
</div>
<div class="publish">
<span class="place">NeurIPS 2023 Spotlight</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/abs/2405.10305" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/Jingkang50/PSG4D" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub">
<div class="pub-left">
<img class="intro-img frame" src="images/CLIPFSAR_arch.png">
</div>
<div class="pub-right">
<div class="title">
CLIP-guided Prototype Modulating for Few-shot Action Recognition
</div>
<div class="authors">
<font style="font-size: 11pt;">
Xiang Wang, Shiwei Zhang, <b>Jun Cen</b>, Changxin Gao, Yingya Zhang, Deli Zhao, Nong Sang
</font>
</div>
<div class="publish">
<span class="place">IJCV 2023</span>
<span class="place"></span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/abs/2303.02982" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/alibaba-mmai-research/CLIP-FSAR" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub" data-selected="true">
<div class="pub-left">
<img class="intro-img frame" src="images/cvpr_2023.png">
</div>
<div class="pub-right">
<div class="title">
Enlarge Instance-specific and Class-specific Information for Open-set Action Recognition
</div>
<div class="authors">
<font style="font-size: 11pt;">
<b>Jun Cen</b>, Shiwei Zhang, Xiang Wang, Yixuan Pei, Zhiwu Qing, Yingya Zhang, Qifeng Chen
</font>
</div>
<div class="publish">
<span class="place">CVPR 2023</span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/abs/2303.15467" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/Jun-CEN/PSL" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub" data-selected="true">
<div class="pub-left">
<img class="intro-img frame" src="images/iclr_2023.png">
</div>
<div class="pub-right">
<div class="title">
The Devil is in the Wrongly-classified Samples: Towards Unified Open-set Recognition
</div>
<div class="authors">
<font style="font-size: 11pt;">
<b>Jun Cen*</b>, Di Luan*, Shiwei Zhang, Yixuan Pei, Yingya Zhang, Deli Zhao, Shaojie Shen, Qifeng Chen
</font>
</div>
<div class="publish">
<span class="place">ICLR 2023</span>
</div>
<div class="tags">
[<a class="tag" href="https://openreview.net/forum?id=xLr0I_xYGAs" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/Jun-CEN/Unified_Open_Set_Recognition" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub">
<div class="pub-left">
<img class="intro-img frame" src="images/nips2022.png">
</div>
<div class="pub-right">
<div class="title">
Learning a Condensed Frame for Memory-Efficient Video Class-Incremental Learning
</div>
<div class="authors">
<font style="font-size: 11pt;">
Yixuan Pei*, Zhiwu Qing*, <b>Jun Cen</b>, Xiang Wang, Shiwei Zhang, Yaxiong Wang, Mingqian Tang, Nong Sang, Xueming Qian
</font>
</div>
<div class="publish">
<span class="place">NeurIPS 2022</span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/abs/2211.00833" target="_blank">Paper</a>]
</div>
</div>
</div>
<div class="pub" data-selected="true">
<div class="pub-left">
<img class="intro-img frame" src="images/eccv2022_2.png">
</div>
<div class="pub-right">
<div class="title">
Open-world Semantic Segmentation for LIDAR Point Clouds
</div>
<div class="authors">
<font style="font-size: 11pt;">
<b>Jun Cen</b>, Peng Yun, Shiwei Zhang, Junhao Cai, Di Luan, Michael Yu Wang, Ming Liu, Mingqian Tang
</font>
</div>
<div class="publish">
<span class="place">ECCV 2022</span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/abs/2207.01452" target="_blank">Paper</a>]
[<a class="tag" href="https://github.com/Jun-CEN/Open_world_3D_semantic_segmentation" target="_blank">Code</a>]
</div>
</div>
</div>
<div class="pub">
<div class="pub-left">
<img class="intro-img frame" src="images/ral2022.png">
</div>
<div class="pub-right">
<div class="title">
Real-Time Collision-Free Grasp Pose Detection With Geometry-Aware Refinement Using High-Resolution Volume
</div>
<div class="authors">
<font style="font-size: 11pt;">
Junhao Cai, <b>Jun Cen</b>, Haokun Wang, Michael Yu Wang
</font>
</div>
<div class="publish">
<span class="place">RA-L with ICRA 2022</span>
</div>
<div class="tags">
[<a class="tag" href="https://ieeexplore.ieee.org/abstract/document/9681231" target="_blank">Paper</a>]
[<a class="tag" href="https://sites.google.com/view/vpn-icra2022" target="_blank">Project Page and Code</a>]
</div>
</div>
</div>
<div class="pub" data-selected="true">
<div class="pub-left">
<img class="intro-img frame" src="images/3dv_2021.png">
</div>
<div class="pub-right">
<div class="title">
Open-set 3D Object Detection
</div>
<div class="authors">
<font style="font-size: 11pt;">
<b>Jun Cen</b>, Peng Yun, Junhao Cai, Michael Yu Wang, Ming Liu
</font>
</div>
<div class="publish">
<span class="place">3DV 2021</span>
</div>
<div class="tags">
[<a class="tag" href="https://arxiv.org/abs/2112.01135" target="_blank">Paper</a>]
</div>
</div>
</div>
<div class="pub">
<div class="pub-left">
<img class="intro-img frame" src="images/3dv_il.png">
</div>
<div class="pub-right">
<div class="title">
Conflicts between Likelihood and Knowledge Distillation in Task Incremental Learning for 3D Object Detection