-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresearch.html
More file actions
2251 lines (2053 loc) · 125 KB
/
research.html
File metadata and controls
2251 lines (2053 loc) · 125 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 lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Weidi Xie</title>
<meta name="author" content="Weidi Xie">
<meta name="viewport" content="width=device-width", initial-scale="1.0">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<link rel="icon" type="image/svg+xml" href="images/icon.svg">
</head>
<body>
<table id="container">
<tr>
<td>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tr>
<p align="center">
<a href=index.html>Home</a> / 
<a href=about.html>About Me</a> / 
<a href=team.html>Team</a> / 
<a href=people.html>Collaborators</a> / 
<a href=research.html>Research</a>
</p>
<hr>
</tr>
</table>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tr>
<td>
</ol>
<h2>2026</h2>
<h3>AI4Science</h3>
<ol>
<li style="border: 2px solid #000000; padding: 10px; border-radius: 1px; background-color: #f0f0f0; max-width: 900px;">
<a href="https://www.nature.com/articles/s41586-025-10097-9">
<papertitle>An Agentic System for Rare Disease Diagnosis with Traceable Reasoning.</papertitle>
</a>
<br>
Weike Zhao, Chaoyi Wu, Yanjie Fan, Xiaoman Zhang, Pengcheng Qiu, Yuze Sun, Xiao Zhou, Yanfeng Wang, Ya Zhang, Yongguo Yu, Kun Sun, <strong>Weidi Xie</strong>
<br>
In: <em>Nature</em> (Impact Factor = 48.5), 2026.   <font color="red"><strong>(new)</strong></font> <br>
<a href="https://www.nature.com/articles/s41586-025-10097-9">Paper</a> |
<a href="http://raredx.cn">Web App</a>
</li>
<p> </p>
<li style="border: 2px solid #000000; padding: 10px; border-radius: 1px; background-color: #f0f0f0; max-width: 700px;">
<a href="https://www.cell.com/cancer-cell/fulltext/S1535-6108(26)00058-9">
<papertitle>A Knowledge-enhanced Pathology Vision-language Foundation Model for Cancer Diagnosis.</papertitle>
</a>
<br>
Xiao Zhou, Luoyi Sun, Dexuan He, Wenbin Guan, Ruifen Wang, Ge Wang, Lifeng Wang, Xiaojun Yuan, Xin Sun, Ya Zhang, Kun Sun, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em>Cancer Cell</em> (Impact Factor = 44.5), 2026. <font color="red"><strong>(new)</strong></font> <br>
<a href="https://www.cell.com/cancer-cell/fulltext/S1535-6108(26)00058-9">Paper</a> |
<a href="https://github.com/MAGIC-AI4Med/KEEP">Code</a>
</li>
<p> </p>
<li style="border: 2px solid #000000; padding: 10px; border-radius: 1px; background-color: #f0f0f0; max-width: 700px;">
<a href="https://arxiv.org/abs/2508.15904">
<papertitle>Boosting Pathology Foundation Models via Few-shot Prompt-tuning for Rare Cancer Subtyping</papertitle>
</a>
<br>
Dexuan He, Xiao Zhou, Wenbin Guan, Liyuan Zhang, Xiaoman Zhang, Sinuo Xu, Ge Wang, Lifeng Wang, Xiaojun Yuan,
Xin Sun, Yanfeng Wang, Kun Sun, Ya Zhang, <strong>Weidi Xie</strong>
<br>
To appear at <em>Nature Communications</em>, 2026. (5-Year Impact Factor: ~16.1, in press)  <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2508.15904">Arxiv</a> |
<a href="">Code</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2506.03238">
<papertitle>Rethinking Whole-Body CT Image Interpretation: An Abnormality-Centric Approach</papertitle>
</a>
<br>
Ziheng Zhao, Lisong Dai, Ya Zhang, Yangfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em>Conference on Computer Vision and Pattern Recognition (CVPR) Findings </em>, 2026.   <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2503.04653">Arxiv</a> |
<a href="https://github.com/zhaoziheng/OminiAbnorm-CT">Code</a>
</li>
<p> </p>
<li>
<a href="https://www.biorxiv.org/content/10.64898/2026.02.28.708711v1">
<papertitle>Phenotypic Bioactivity Prediction as Open-set Biological Assay Querying</papertitle>
</a>
<br>
Yuze Sun*, Xiaoman Zhang*, Qiaoyu Zheng, Hanzheng Li, Jianming Zhang, Liang Hong, Yanfeng Wang, Ya Zhang, <strong>Weidi Xie</strong>.
Under Review, 2026. <font color="red"><strong>(New)</strong></font> <br>
<a href="https://www.biorxiv.org/content/10.64898/2026.02.28.708711v1">Arxiv</a> |
<a href="">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://www.biorxiv.org/content/10.64898/2026.02.25.708091v1">
<papertitle>MAP: A Knowledge-driven Framework for Predicting Single-cell Responses for Unprofiled Drugs</papertitle>
</a>
<br>
Jinghao Feng, Ziheng Zhao, Xiaoman Zhang, Mingfei Liu, Jingyi Chen, Xingran Quan, Jian Zhang, Yanfeng Wang, Ya Zhang, <strong>Weidi Xie</strong>.
Under Review, 2026. <font color="red"><strong>(New)</strong></font> <br>
<a href="https://www.biorxiv.org/content/10.64898/2026.02.25.708091v1">Arxiv</a> |
<a href="">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2510.08668">
<papertitle>Hulu-med: A Transparent Generalist Model Towards Holistic Medical Vision-language Understanding</papertitle>
</a>
<br>
Songtao Jiang, Yuan Wang, Sibo Song, Tianxiang Hu, Chenyi Zhou, Bin Pu, Yan Zhang, Zhibo Yang, Yang Feng, Joey Tianyi Zhou, Jin Hao, Zijian Chen,
Ruijia Wu, Tao Tang, Junhui Lv, Hongxia Xu, Hongwei Wang, Jun Xiao, Bin Feng, Fudong Zhu, Kenli Li, <strong>Weidi Xie^†</strong>, Jimeng Sun^† Jian Wu^†, Zuozhu Liu^†.
Under Revision, 2026. <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2510.08668">Arxiv</a> |
<a href="https://github.com/ZJUI-AI4H/Hulu-Med">Code & Model</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2510.25628">
<papertitle>EHR-R1: A Reasoning-Enhanced Foundational Language Model for Electronic Health Record Analysis</papertitle>
</a>
<br>
Yusheng Liao, Chaoyi Wu, Junwei Liu, Shuyang Jiang, Pengcheng Qiu, Haowen Wang, Yun Yue, Shuai Zhen, Jian Wang, Qianrui Fan, Jinjie Gu, Ya Zhang, Yanfeng Wang, Yu Wang, <strong>Weidi Xie</strong>
<br>
Under Review, 2026. <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2510.25628">Arxiv</a> |
<a href="">Code</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2510.24654">
<papertitle>Evolving Diagnostic Agents in a Virtual Clinical Environment</papertitle>
</a>
<br>
Pengcheng Qiu, Chaoyi Wu, Junwei Liu, Qiaoyu Zheng, Yusheng Liao, Haowen Wang, Yun Yue, Qianrui Fan, Shuai Zhen, Jian Wang, Jinjie Gu, Yanfeng Wang, Ya Zhang and <strong>Weidi Xie</strong>
<br>
Under Review, 2026. <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2510.24654">Arxiv</a> |
<a href="">Code</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2508.15746">
<papertitle>End-to-End Agentic RAG System Training for Traceable Diagnostic Reasoning</papertitle>
</a>
<br>
Qiaoyu Zheng, Yuze Sun, Chaoyi Wu, Weike Zhao, Pengcheng Qiu, Yongguo Yu, Kun Sun, Yanfeng Wang, Ya Zhang and <strong>Weidi Xie</strong>
<br>
Under Review, 2026. <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2508.15746">Arxiv</a> |
<a href="">Code</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2602.06184">
<papertitle>PhenoLIP: Integrating Phenotype Ontology Knowledge into Medical Vision-Language Pretraining.</papertitle>
</a>
<br>
Cheng Liang, Chaoyi Wu, Weike Zhao, Ya Zhang, Yanfeng Wang, and <strong>Weidi Xie</strong>
<br>
Under Review, 2026. <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2602.06184">Arxiv</a> |
<a href="https://github.com/MAGIC-AI4Med/PhenoLIP">Code</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2504.20930">
<papertitle>ChestX-Reasoner: Advancing Radiology Foundation Models with Reasoning through Step-by-Step Verification
</papertitle>
</a>
<br>
Ziqing Fan, Cheng Liang, Chaoyi Wu, Ya Zhang, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
Under Revision at <em>Nature Communications Medicine</em>, 2026.   <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2504.20930">Arxiv</a> |
<a href="">Code</a>
</li>
<p> </p>
</ol>
<h3>Computer Vision</h3>
<ol>
<li style="border: 2px solid #000000; padding: 10px; border-radius: 1px; background-color: #f0f0f0; max-width: 700px;">
<a href="https://ieeexplore.ieee.org/abstract/document/11442640">
<papertitle>Track-On2: Enhancing Online Point Tracking with Memory.</papertitle>
</a>
<br>
Görkay Aydemir, <strong>Weidi Xie*</strong>, Fatma Guney*
<br>
To appear at <em>Transactions on Pattern Analysis and Machine Intelligence</em>, 2026. (Impact Factor: ~18.6).   <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2509.19115">Arxiv</a> |
<a href="https://kuis-ai.github.io/track_on2/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2602.12155">
<papertitle>FAIL: Flow Matching Adversarial Imitation Learning for Image Generation.</papertitle>
</a>
<br>
Yeyao Ma, Chen Li, Xiaosong Zhang, Han Hu, and <strong>Weidi Xie</strong>
<br>
In: <em>International Conference on Machine Learning (ICML) </em>, 2026.   <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2602.12155">Arxiv</a> |
<a href="https://github.com/HansPolo113/FAIL">Code </a>
</li>
<p> </p>
<li>
<a href="hhttps://arxiv.org/abs/2505.17012">
<papertitle>SpatialScore: Towards Comprehensive Evaluation for Spatial Intelligence.</papertitle>
</a>
<br>
Haoning Wu, Xiao Huang, Yaohui Chen, Ya Zhang, Yanfeng Wang, and <strong>Weidi Xie</strong>
<br>
In: <em>Conference on Computer Vision and Pattern Recognition (CVPR) </em>, 2026.   <font color="red"><strong>(New)</strong></font> <br>
<a href=https://arxiv.org/abs/2505.17012">Arxiv</a> |
<a href="https://haoningwu3639.github.io/SpatialScore/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2603.12217">
<papertitle>Real-World Point Tracking with Verifier-Guided Pseudo-Labeling.</papertitle>
</a>
<br>
Görkay Aydemir, Fatma Guney*, <strong>Weidi Xie*</strong>
<br>
In: <em>Conference on Computer Vision and Pattern Recognition (CVPR) </em>, 2026.   <font color="red"><strong>(New)</strong></font> <br>
<a href=https://arxiv.org/abs/2603.12217">Arxiv</a> |
<a href="https://kuis-ai.github.io/track_on_r/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2512.11016">
<papertitle>SoccerMaster: A Vision Foundation Model for Soccer Understanding.</papertitle>
</a>
<br>
Haolin Yang, Jiayuan Rao, Haoning Wu, <strong>Weidi Xie</strong>
<br>
In: <em>Conference on Computer Vision and Pattern Recognition (CVPR) </em>, 2026.   <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2512.11016">Arxiv</a> |
<a href="https://haolinyang-hlyang.github.io/SoccerMaster/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2602.05829">
<papertitle>Weaver: End-to-End Agentic System Training for Video Interleaved Reasoning.</papertitle>
</a>
<br>
Yudi Shi, Shangzhe Di, Qirui Chen, Qinian Wang, Jiayin Cai, Xiaolong Jiang, Yao Hu, <strong>Weidi Xie</strong>
<br>
In: <em>Conference on Computer Vision and Pattern Recognition (CVPR) Findings </em>, 2026.   <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2602.05829">Arxiv</a> |
<a href="https://zhengrongz.github.io/Weaver/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2502.04326">
<papertitle>WorldSense: Evaluating Real-world Omnimodal Understanding for Multimodal LLMs.</papertitle>
</a>
<br>
Jack Hong, Shilin Yan, Jiayin Cai, Xiaolong Jiang, Yao Hu, <strong>Weidi Xie</strong>
<br>
In: <em> The Thirteenth International Conference on Learning Representations (ICLR) </em>, 2026.   <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2502.04326">Arxiv</a> |
<a href="https://jaaackhongggg.github.io/WorldSense/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2508.15769">
<papertitle>SceneGen: Single-Image 3D Scene Generation in One Feedforward Pass.</papertitle>
</a>
<br>
Yanxu Meng, Haoning Wu, Ya Zhang, <strong>Weidi Xie</strong>
<br>
In: <em>International Conference on 3D Vision (3DV)</em>, 2026.   <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2508.15769">Arxiv</a> |
<a href="https://mengmouxu.github.io/SceneGen/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2604.11786">
<papertitle>GenTac: Generative Modeling and Forecasting of Soccer Tactics.</papertitle>
</a>
<br>
Jiayuan Rao, Tianlin Gui, Haoning Wu, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
Under Review, 2026.   <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2604.11786">Arxiv</a> |
<a href="https://jyrao.github.io/GenTac/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2603.12265">
<papertitle>OmniStream: Mastering Perception, Reconstruction and Action in Continuous Streams.</papertitle>
</a>
<br>
Yibin Yan, Jilan Xu, Shangzhe Di, Haoning Wu, <strong>Weidi Xie</strong>
<br>
In submission, 2026.   <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2603.12265">Arxiv</a> |
<a href="https://github.com/Jazzcharles/AuroLA">Code</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2602.18010">
<papertitle>Scaling Audio-Text Retrieval with Multimodal Large Language Models.</papertitle>
</a>
<br>
Jilan Xu, Carl Thomé, Danijela Horak, <strong>Weidi Xie</strong>, Andrew Zisserman
<br>
In submission, 2026.   <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2602.18010">Arxiv</a> |
<a href="https://go2heart.github.io/omnistream/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2602.09934">
<papertitle>VersaViT: Enhancing MLLM Vision Backbones via Task-Guided Optimization.</papertitle>
</a>
<br>
Yikun Liu, Yuan Liu, Shangzhe Di, Haicheng Wang, Zhongyin Zhao, Le Tian, Xiao Zhou, Jie Zhou, Jiangchao Yao, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In submission, 2026.   <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2602.09934">Arxiv</a> |
<a href="https://code-kunkun.github.io/VersaViT/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2601.13886">
<papertitle>Revisiting Multi-Task Visual Representation Learning.</papertitle>
</a>
<br>
Shangzhe Di, Zhonghua Zhai, <strong>Weidi Xie</strong>
<br>
In Submission, 2026.   <font color="red"><strong>(New)</strong></font> <br>
<a href="https://arxiv.org/abs/2601.13886">Arxiv</a> |
<a href="https://github.com/Becomebright/MTV">Code</a>
</li>
<p> </p>
</ol>
<h2>2025</h2>
<h3>AI4Medicine</h3>
<ol>
<li style="border: 2px solid #000000; padding: 10px; border-radius: 1px; background-color: #f0f0f0; max-width: 700px;">
<a href="https://www.nature.com/articles/s41467-025-62385-7">
<papertitle>Towards Generalist Foundation Model for Radiology by Leveraging Web-scale 2D & 3D Medical Data.</papertitle>
</a>
<br>
Chaoyi Wu*, Xiaoman Zhang*, Ya Zhang, Yanfeng Wang, <strong>Weidi Xie</strong> <br>
In: <em> Nature Communications</em>, 2025. (5-Year Impact Factor: ~16.1)<br>
<a href="https://chaoyi-wu.github.io/RadFM/">Project Page</a> |
<a href="https://github.com/chaoyi-wu/RadFM">Code & Model</a> |
<a href="https://arxiv.org/abs/2308.02463">Arxiv</a></li>
<p> </p>
<li style="border: 2px solid #000000; padding: 10px; border-radius: 1px; background-color: #f0f0f0; max-width: 700px;">
<a href="https://www.nature.com/articles/s41467-025-64769-1">
<papertitle>Quantifying the Reasoning Abilities of LLMs on Real-world Clinical Cases.</papertitle>
</a>
<br>
Pengcheng Qiu, Chaoyi Wu, Shuyu Liu, Weike Zhao, Ya Zhang, Yanfeng Wang, <strong>Weidi Xie</strong> <br>
In: <em> Nature Communications</em>, 2025. (5-Year Impact Factor: ~16.1)<br>
<a href="https://arxiv.org/abs/2503.04691">Arxiv</a> |
<a href="https://github.com/MAGIC-AI4Med/MedRBench">Code</a>
</li>
<p> </p>
<li style="border: 2px solid #000000; padding: 10px; border-radius: 1px; background-color: #f0f0f0; max-width: 700px;">
<a href="https://www.nature.com/articles/s41746-025-01964-w">
<papertitle> Large-Vocabulary Segmentation for Medical Images with Text Prompts.</papertitle>
</a>
<br>
Ziheng Zhao, Yao Zhang, Chaoyi Wu, Xiaoman Zhang, Xiao Zhou, Ya Zhang, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em>Npj Digital Medicine (Nature Portfolio)</em>, 2025. (5-Year Impact Factor: ~15.2)<br>
<a href="https://zhaoziheng.github.io/SAT/">Project Page</a> |
<a href="https://github.com/zhaoziheng/SAT">Code</a>|
<a href="https://arxiv.org/abs/2312.17183">Arxiv</a>
</li>
<p> </p>
<li style="border: 2px solid #000000; padding: 10px; border-radius: 1px; background-color: #f0f0f0; max-width: 700px;">
<a href="https://www.nature.com/articles/s41746-024-01390-4">
<papertitle> Towards Evaluating and Building Versatile Large Language Models for Medicine.</papertitle>
</a>
<br>
Chaoyi Wu, Pengcheng Qiu, Jinxin Liu, Hongfei Gu, Na Li, Ya Zhang, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em>Npj Digital Medicine (Nature Portfolio)</em>, 2025. (5-Year Impact Factor: ~15.2)<br>
<a href="https://www.nature.com/articles/s41746-024-01390-4">Paper</a> |
<a href="https://github.com/MAGIC-AI4Med/MedS-Ins">Code</a>|
<a href="https://henrychur.github.io/MedS-Bench/">Leaderboard</a>
</li>
<p> </p>
<li style="border: 2px solid #000000; padding: 10px; border-radius: 1px; background-color: #f0f0f0; max-width: 700px;">
<a href="https://www.nature.com/articles/s43856-024-00709-2">
<papertitle> Development of A Large-scale Medical Visual Question-Answering Dataset (PMC-VQA). </papertitle>
</a>
<br>
Xiaoman Zhang, Chaoyi Wu, Ziheng Zhao, Weixiong Lin, Ya Zhang, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em> Nature Communications Medicine</em>, 2025. (2-Year Impact Factor: ~5.4)<br>
<a href="https://xiaoman-zhang.github.io/PMC-VQA/">Project Page</a> |
<a href="https://arxiv.org/pdf/2305.10415">Arxiv</a> </li>
<p> </p>
<li style="border: 2px solid #000000; padding: 10px; border-radius: 1px; background-color: #f0f0f0; max-width: 700px;">
<a href="https://www.nature.com/articles/s41597-025-05922-9">
<papertitle>Radgenome-chest CT: A Grounded Vision-language Dataset for Chest CT Analysis</papertitle>
</a>
<br>
Xiaoman Zhang, Chaoyi Wu, Ziheng Zhao, Jiayu Lei, Ya Zhang, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em>Scientific Data (Nature Research)</em>, 2025. (5-year Impact Factor: ~8.7) <br>
<a href="https://arxiv.org/abs/2404.16754">Arxiv</a> |
<a href=https://huggingface.co/datasets/RadGenome/RadGenome-ChestCT">huggingface</a>
</li>
<p> </p>
<li>
<a href="hhttps://arxiv.org/abs/2412.04106">
<papertitle>MRGen: Diffusion-based Controllable Data Engine for MRI Segmentation towards Unannotated Modalities.</papertitle>
</a>
<br>
Haoning Wu, Ziheng Zhao, Ya Zhang, <strong>Weidi Xie</strong>, Yanfeng Wang
<br>
In: <em> International Conference on Computer Vision (ICCV)</em> , 2025. <br>
<a href="https://arxiv.org/abs/2412.04106">Arxiv</a> |
<a href="https://haoningwu3639.github.io/MRGen/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2503.04653">
<papertitle>RadIR: A Scalable Framework for Multi-Grained Medical Image Retrieval via Radiology Report Mining</papertitle>
</a>
<br>
Tengfei Zhang, Ziheng Zhao, Chaoyi Wu, Xiao Zhou, Ya Zhang, Yangfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em> International Conference on Medical Image Computing and Computer Assisted Intervention (MICCAI)</em>, 2025.<br>
<a href="https://arxiv.org/abs/2503.04653">Arxiv</a> |
<a href="">Code</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2502.20301">
<papertitle>M^3Builder: A Multi-Agent System for Automated Machine Learning in Medical Imaging</papertitle>
</a>
<br>
Jinghao Feng, Qiaoyu Zheng, Chaoyi Wu, Ziheng Zhao, Ya Zhang, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em>MICCAI Workshop (Agentic AI for Medicine)</em>, 2025.<br>
<a href="https://arxiv.org/abs/2502.20301">Arxiv</a> |
<a href="https://github.com/MAGIC-AI4Med/M3Builder">Code</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2407.16684">
<papertitle>AutoRG-Brain: Grounded Report Generation for Brain MRI.</papertitle>
</a>
<br>
Jiayu Lei, Xiaoman Zhang, Chaoyi Wu, Lisong Dai, Ya Zhang, Yanyong Zhang, Yanfeng Wang, <strong>Weidi Xie</strong>, Yuehua Li
<br>
In: <em>IEEE Journal of Biomedical and Health Informatics (JBHI)</em>.<br>
<a href="https://arxiv.org/abs/2407.16684">Arxiv</a> |
<a href="">Model</a> |
<a href="">Code</a>
</li>
<p> </p>
<li>
<a href="https://www.sciencedirect.com/science/article/abs/pii/S0895611125000254">
<papertitle>Unibrain: Universal brain mri diagnosis with hierarchical knowledge-enhanced pre-training</papertitle>
</a>
<br>
Jiayu Lei, Lisong Dai, Haoyun Jiang, Chaoyi Wu, Xiaoman Zhang, Yao Zhang, Jiangchao Yao, <strong>Weidi Xie</strong>, Yanyong Zhang, Yuehua Li, Ya Zhang, Yanfeng Wang
<br>
In: <em>Computerized Medical Imaging and Graphics (CMIG)</em>, 2025.<br>
<a href="https://arxiv.org/pdf/2309.06828">Arxiv</a> |
<a href="https://github.com/ljy19970415/UniBrain">Code</a>
</li>
<p> </p>
</ol>
<h3>Computer Vision</h3>
<ol>
<li>
<a href="https://arxiv.org/abs/2506.18883">
<papertitle>Universal Video Temporal Grounding with Generative Multi-modal Large Language Models.</papertitle>
</a>
<br>
Zeqian Li, Shangzhe Di, Zhonghua Zhai, Weilin Huang, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In <em>Conference on Neural Information Processing Systems (NeurIPS)</em>, 2025. <br>
<a href="https://arxiv.org/abs/2506.18883">Arxiv</a> |
<a href="https://lzq5.github.io/UniTime/">Project Page</a>
</li>
<p> </p>
<li>
<a href="">
<papertitle>Character-Centric Understanding of Animated Movies.</papertitle>
</a>
<br>
Zhongrui Gui, Junyu Xie, Tengda Han, <strong>Weidi Xie</strong>, Andrew Zisserman
<br>
In: <em>ACM Multimedia</em>, 2025. <br>
<a href="">Arxiv</a> |
<a href="">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2505.03735">
<papertitle>Multi-Agent System for Comprehensive Soccer Understanding.</papertitle>
</a>
<br>
Jiayuan Rao, Zifeng Li, Haoning Wu, Ya Zhang, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em>ACM Multimedia</em>, 2025. <br>
<a href="https://arxiv.org/abs/2505.03735">Arxiv</a> |
<a href="https://jyrao.github.io/SoccerAgent/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2507.19599">
<papertitle>Object-centric Video Question Answering with Visual Grounding and Referring.</papertitle>
</a>
<br>
Haochen Wang, Qirui Chen, Cilin Yan, Jiayin Cai, Xiaolong Jiang, Yao Hu, <strong>Weidi Xie</strong>, Stratis Gavves
<br>
In: <em> International Conference on Computer Vision (ICCV)</em> , 2025. <br>
<a href="https://arxiv.org/abs/2507.19599">Arxiv</a> |
<a href="https://qirui-chen.github.io/RGA3-release/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2504.20041">
<papertitle>Learning Streaming Video Representation via Multitask Training.</papertitle>
</a>
<br>
Yibin Yan, Jilan Xu, Shangzhe Di, Yikun Liu, Yudi Shi, Qirui Chen, Zeqian Li, Yifei Huang, <strong>Weidi Xie</strong>
<br>
In: <em> International Conference on Computer Vision (ICCV)</em> , 2025. <br>
<a href="https://arxiv.org/abs/2504.20041">Arxiv</a> |
<a href="https://go2heart.github.io/streamformer/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2504.01020">
<papertitle>Shot-by-Shot: Film-Grammar-Aware Training-Free Audio Description Generation.</papertitle>
</a>
<br>
unyu Xie, Tengda Han, Max Bain, Arsha Nagrani, Eshika Khandelwal, Gül Varol, <strong>Weidi Xie</strong>, Andrew Zisserman
<br>
In: <em> International Conference on Computer Vision (ICCV)</em> , 2025. <br>
<a href="https://arxiv.org/abs/2504.01020">Arxiv</a> |
<a href="https://www.robots.ox.ac.uk/~vgg/research/shot-by-shot/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2412.01820">
<papertitle>Towards Universal Soccer Video Understanding.</papertitle>
</a>
<br>
Jiayuan Rao, Haoning Wu, Hao Jiang, Ya Zhang, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em>Conference on Computer Vision and Pattern Recognition (CVPR) </em>, 2025. <br>
<a href="https://arxiv.org/abs/2412.01820">Arxiv</a> |
<a href="https://jyrao.github.io/UniSoccer/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2412.01694">
<papertitle>Unlocking Video-LLM via Agent-of-Thoughts Distillation.</papertitle>
</a>
<br>
Yudi Shi, Shangzhe Di, Qirui Chen, <strong>Weidi Xie</strong>
<br>
In: <em>Conference on Computer Vision and Pattern Recognition (CVPR) </em>, 2025. <br>
<a href="https://arxiv.org/abs/2412.01694">Arxiv</a> |
<a href="https://zhengrongz.github.io/AoTD/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2412.01720">
<papertitle>LamRA: Large Multimodal Model as Your Advanced Retrieval Assistant.</papertitle>
</a>
<br>
Yikun Liu, Pingan Chen, Jiayin Cai, Xiaolong Jiang, Yao Hu, Jiangchao Yao, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em>Conference on Computer Vision and Pattern Recognition (CVPR) </em>, 2025. <br>
<a href="https://arxiv.org/abs/2412.01720">Arxiv</a> |
<a href="https://code-kunkun.github.io/LamRA/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://shilinyan99.github.io/AIDE">
<papertitle>A Sanity Check for AI-generated Image Detection.</papertitle>
</a>
<br>
Shilin Yan, Ouxiang Li, Jiayin Cai, Yanbin Hao, Xiaolong Jiang, Yao Hu, <strong>Weidi Xie</strong>
<br>
In: <em> The Thirteenth International Conference on Learning Representations (ICLR) </em>, 2025. <br>
<a href="https://arxiv.org/abs/2406.19435">Arxiv</a> |
<a href="https://shilinyan99.github.io/AIDE">Project Page</a> |
<a href="">公众号介绍</a>
</li>
<p> </p>
<li>
<a href="https://kuis-ai.github.io/track_on">
<papertitle>Track-On: Transformer-based Online Point Tracking with Memory.</papertitle>
</a>
<br>
Görkay Aydemir, Xiongyi Cai, <strong>Weidi Xie</strong>, Fatma Guney
<br>
In: <em> The Thirteenth International Conference on Learning Representations (ICLR) </em>, 2025. <br>
<a href="https://arxiv.org/pdf/2501.18487">Arxiv</a> |
<a href="https://kuis-ai.github.io/track_on">Project Page</a> |
<a href="https://mp.weixin.qq.com/s/ccddIWLvF0Vya7tNGv2L9A">公众号介绍</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2504.11732">
<papertitle>X-Gen: Ego-centric Video Prediction by Watching Exo-centric Videos.</papertitle>
</a>
<br>
Jilan Xu, Yifei Huang, Baoqi Pei, Junlin Hou, Qingqiu Li, Guo Chen, Yuejie Zhang, Rui Feng, <strong>Weidi Xie</strong>
<br>
In: <em> The Thirteenth International Conference on Learning Representations (ICLR) </em>, 2025.<br>
<a href="https://arxiv.org/abs/2504.11732">Arxiv</a> |
<a href="">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2503.00986">
<papertitle>Modeling Fine-Grained Hand-Object Dynamics for Egocentric Video Representation Learning.</papertitle>
</a>
<br>
Baoqi Pei, Yifei Huang, Jilan Xu, Guo Chen, Yuping He, Lijin Yang, Yali Wang, <strong>Weidi Xie</strong>, Yu Qiao, Fei Wu, Limin Wang
<br>
In: <em> The Thirteenth International Conference on Learning Representations (ICLR) </em>, 2025.</font> <br>
<a href="https://arxiv.org/abs/2503.00986">Arxiv</a> |
<a href="https://github.com/OpenRobotLab/EgoHOD/">Code</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2408.14469">
<papertitle>Grounded Multi-Hop VideoQA in Long-Form Egocentric Videos.</papertitle>
</a>
<br>
Qirui Chen, Shangzhe Di, <strong>Weidi Xie</strong>
<br>
In: <em> Thirty-Ninth AAAI Conference on Artificial Intelligence (AAAI) </em>, 2025</font> <br>
<a href="https://arxiv.org/abs/2408.14469">Arxiv</a> |
<a href="https://qirui-chen.github.io/MultiHop-EgoQA">Project Page</a> |
<a href="https://mp.weixin.qq.com/s/VW20R6-hC5WpwwptHYJBuQ">公众号介绍</a>
</li>
<p> </p>
<li style="border: 2px solid #000000; padding: 10px; border-radius: 1px; background-color: #f0f0f0; max-width: 700px;">
<a href="https://link.springer.com/article/10.1007/s11263-025-02369-8">
<papertitle>Diagnosing Human-Object Interaction Detectors.</papertitle>
</a>
<br>
Fangrui Zhu, Yiming Xie, <strong>Weidi Xie</strong>, Huaizu Jiang
<br>
In: <em> International Journal of Computer Vision</em>, 2025. (IJCV, 5-year Impact Factor: ~14.5) <br>
<a href="https://link.springer.com/article/10.1007/s11263-025-02369-8">Paper</a> |
<a href="https://neu-vi.github.io/Diag-HOI/">Project Page</a>
</li>
<p> </p>
</ol>
<h2>2024</h2>
<h3>AI4Medicine</h3>
<ol>
<li style="border: 2px solid #000000; padding: 10px; border-radius: 1px; background-color: #f0f0f0; max-width: 700px;">
<a href="https://arxiv.org/abs/2304.14454">
<papertitle> PMC-LLaMA: Towards Building Open-source Language Models for Medicine. </papertitle>
</a>
<br>
Chaoyi Wu*, Weixiong Lin*, Xiaoman Zhang, Ya Zhang, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em>Journal of the American Medical Informatics Association</em>, 2024. (JAMIA, Impact Factor: ~7.9) <br>
<a href="https://arxiv.org/abs/2304.14454">Arxiv</a> |
<a href="https://huggingface.co/chaoyi-wu/PMC_LLAMA_7B">Model</a> |
<a href="https://github.com/chaoyi-wu/PMC-LLaMA">Code</a>
</li>
<p> </p>
<li style="border: 2px solid #000000; padding: 10px; border-radius: 1px; background-color: #f0f0f0; max-width: 700px;">
<a href="https://www.nature.com/articles/s41467-024-52417-z">
<papertitle> Towards Building Multilingual Language Model for Medicine.</papertitle>
</a>
<br>
Pengcheng Qiu*, Chaoyi Wu*, Xiaoman Zhang, Weixiong Lin, Haicheng Wang, Ya Zhang, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em> Nature Communications</em>, 2024. (5-Year Impact Factor: ~16.1)<br>
<a href="https://www.nature.com/articles/s41467-024-52417-z">Paper</a> |
<a href="https://github.com/MAGIC-AI4Med/MMedLM">Code</a>|
<a href="https://github.com/MAGIC-AI4Med/MMedLM">Model</a>|
<a href="https://github.com/MAGIC-AI4Med/MMedLM">Dataset</a>
</li>
<p> </p>
<li style="border: 2px solid #000000; padding: 10px; border-radius: 1px; background-color: #f0f0f0; max-width: 700px;">
<a href="https://www.nature.com/articles/s41467-024-54424-6">
<papertitle>Large-scale Long-tailed Disease Diagnosis on Radiology Images.</papertitle>
</a>
<br>
Qiaoyu Zheng, Weike Zhao, Chaoyi Wu, Xiaoman Zhang, Ya Zhang, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em> Nature Communications</em>, 2024. (5-Year Impact Factor: ~16.1)<br>
<a href="https://www.nature.com/articles/s41467-024-54424-6">Paper</a> |
<a href="https://qiaoyu-zheng.github.io/RP3D-Diag">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://www.medrxiv.org/content/10.1101/2024.06.24.24309405v1">
<papertitle>RaTEScore: A Metric for Radiology Report Generation.</papertitle>
</a>
<br>
Weike Zhao, Chaoyi Wu, Xiaoman Zhang, Ya Zhang, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em> Empirical Methods in Natural Language Processing (EMNLP)</em>, 2024.<br>
<a href="https://www.medrxiv.org/content/10.1101/2024.06.24.24309405v1">medRxiv</a> |
<a href="https://github.com/MAGIC-AI4Med/RaTEScore">Code</a> |
<a href="https://angelakeke.github.io/RaTEScore/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2404.09942">
<papertitle> Knowledge-enhanced Visual-Language Pretraining for Computational Pathology.</papertitle>
</a>
<br>
Xiao Zhou, Xiaoman Zhang, Chaoyi Wu, Ya Zhang, <strong>Weidi Xie</strong>, Yanfeng Wang
<br>
In: <em> European Conference on Computer Vision (ECCV)</em>, 2024.<br>
<a href="https://arxiv.org/abs/2404.09942">Arxiv</a> |
<a href="https://github.com/MAGIC-AI4Med/KEP">Code</a> |
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjcyNTQ1MQ==&mid=2247483850&idx=1&sn=8484ae383e53525a9e5d371283b5349c&chksm=c233a5eef5442cf82cda84f9d67003fc50ec36dda853c22f146479f6d81c4e6e262e86b70fb3&token=794637245&lang=zh_CN#rd">公众号介绍</a>
</li>
<p> </p>
<li>
<a href="https://www.sciencedirect.com/science/article/pii/S1361841524000720">
<papertitle>Sensorless Volumetric Reconstruction of Fetal Brain Freehand Ultrasound Scans with Deep Implicit Representation.</papertitle>
</a>
<br>
Pak-Hei Yeung, Linde S. Hesse, Moska Aliasi, Monique C. Haak, INTERGROWTH-21st Consortium, <strong>Weidi Xie</strong>, Ana I.L. Namburete
<br> In: <em>Medical Image Analysis, 2024. </em>(Impact Factor: ~11)<br>
</li>
<p> </p>
</ol>
<h3>Computer Vision</h3>
<ol>
<li>
<a href="https://arxiv.org/abs/2309.11500">
<papertitle>A General Protocol to Probe Large Vision Models for 3D Physical Understanding</papertitle>
</a>
<br>
Guanqi Zhan, Chuanxia Zheng, <strong>Weidi Xie</strong>, Andrew Zisserman<br>
In: <em>Conference on Neural Information Processing Systems (NeurIPS) </em>, 2024. <br>
<a href="">Project Page</a> |
<a href="https://arxiv.org/abs/2310.06836">Arxiv</a> </li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2406.18530">
<papertitle>MatchTime: Towards Automatic Soccer Game Commentary Generation.</papertitle>
</a>
<br>
Jiayuan Rao, Haoning Wu, Chang Liu, Yanfeng Wang, <strong>Weidi Xie</strong>
<br>
In: <em> Empirical Methods in Natural Language Processing (EMNLP)</em>, 2024.<br>
<a href="https://arxiv.org/abs/2406.18530">Arxiv</a> |
<a href="https://haoningwu3639.github.io/MatchTime/">Project Page</a> |
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjcyNTQ1MQ==&mid=2247483856&idx=1&sn=33854777c861b435e431655e9238daf0&chksm=c233a5f4f5442ce205035e945c51cb7981582ccfc6892d1aa4869cba0636931ebf7d8b182df3&token=794637245&lang=zh_CN#rd">公众号介绍</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2407.12735">
<papertitle>EchoSight: Advancing Visual-Language Models with Wiki Knowledge.</papertitle>
</a>
<br>
Yibin Yan, <strong>Weidi Xie</strong>
<br>
In: <em> Empirical Methods in Natural Language Processing (EMNLP)</em>, 2024.<br>
<a href="https://arxiv.org/abs/2407.12735">Arxiv</a> |
<a href="https://github.com/Go2Heart/EchoSight">Code</a> |
<a href="https://go2heart.github.io/echosight/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2407.15850">
<papertitle>AutoAD-Zero: A Training-Free Framework for Zero-Shot Audio Description.</papertitle>
</a>
<br>
Junyu Xie, Tengda Han, Max Bain, Arsha Nagrani, Gül Varol, <strong>Weidi Xie</strong>, Andrew Zisserman
<br>
In: <em> Asian Conference on Computer Vision (ACCV)</em>, 2024.<br>
<a href="https://arxiv.org/abs/2407.15850">Arxiv</a> |
<a href="https://www.robots.ox.ac.uk/~vgg/research/autoad-zero/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2404.12389">
<papertitle>Moving Object Segmentation: All You Need Is SAM (and Flow).</papertitle>
</a>
<br>
Junyu Xie, Charig Yang, <strong>Weidi Xie</strong>, Andrew Zisserman
<br>
In: <em> Asian Conference on Computer Vision (ACCV)</em>, 2024.<br>
<a href="https://arxiv.org/abs/2404.12389">Arxiv</a> |
<a href="https://www.robots.ox.ac.uk/~vgg/research/flowsam/">Project Page</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2309.11500">
<papertitle>A Large-scale Dataset for Audio-Language Representation Learning.</papertitle>
</a>
<br>
Luoyi Sun, Xuenan Xu, Mengyue Wu, <strong>Weidi Xie</strong><br>
In: <em>ACM Multimedia</em>, 2024.<br>
<a href="https://auto-acd.github.io">Project Page</a> |
<a href="https://arxiv.org/abs/2309.11500">Arxiv</a> </li>
<p> </p>
<li>
<a href="https://lzq5.github.io/Video-Text-Alignment/">
<papertitle>Multi-Sentence Grounding for Long-term Instructional Video.</papertitle>
</a>
<br>
Zeqian Li*, Qirui Chen*, Tengda Han, Ya Zhang, Yanfeng Wang, <strong>Weidi Xie</strong><br>
In: <em> European Conference on Computer Vision (ECCV)</em>, 2024.<br>
<a href="https://lzq5.github.io/Video-Text-Alignment/">Project Page</a> |
<a href="https://arxiv.org/abs/2312.14055">Paper</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2312.11463">
<papertitle>Appearance-based Refinement for Object-Centric Motion Segmentation.</papertitle>
</a>
<br>
Junyu Xie, <strong>Weidi Xie</strong>, Andrew Zisserman <br>
In: <em> European Conference on Computer Vision (ECCV)</em>, 2024.<br>
<a href="">Project Page</a> |
<a href="https://arxiv.org/abs/2312.11463">Paper</a></li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2407.11325">
<papertitle>VISA: Reasoning Video Object Segmentation via Large Language Model.</papertitle>
</a>
<br>
Cilin Yan, Haochen Wang, Shilin Yan, Xiaolong Jiang, Yao Hu, Guolaing Kang, <strong>Weidi Xie</strong>, Efstratios Gavves <br>
In: <em> European Conference on Computer Vision (ECCV)</em>, 2024.<br>
<a href="https://github.com/cilinyan/VISA">Code & Model</a> |
<a href="https://arxiv.org/abs/2407.11325">Paper</a></li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2404.16828">
<papertitle>Made to Order: Discovering Monotonic Temporal Changes via Self-supervised Video Ordering.</papertitle>
</a>
<br>
Charig Yang, <strong>Weidi Xie</strong>, Andrew Zisserman<br>
In: <em> European Conference on Computer Vision (ECCV)</em>, 2024. <br>
<a href="https://charigyang.github.io/order/">Project Page</a> |
<a href="https://arxiv.org/abs/2404.16828">Paper</a></li>
<p> </p>
<li>
<a href="https://haoningwu3639.github.io/StoryGen_Webpage/">
<papertitle>Intelligent Grimm - Open-ended Visual Storytelling via Latent Diffusion Models.</papertitle>
</a>
<br>
Chang Liu*, Haoning Wu*, Yujie Zhong, Xiaoyun Zhang, Yanfeng Wang, <strong>Weidi Xie</strong> <br>
In: <em>Conference on Computer Vision and Pattern Recognition (CVPR) </em>, 2024. <br>
<a href="https://haoningwu3639.github.io/StoryGen_Webpage/">Project Page</a> |
<a href="https://arxiv.org/abs/2306.00973">Arxiv</a></li>
</li>
<p> </p>
<li>
<a href="https://www.robots.ox.ac.uk/~vgg/research/autoad/">
<papertitle>AutoAD III: The Prequel -- Back to the Pixels.</papertitle>
</a>
<br>
Tengda Han, Max Bain, Arsha Nagrani, Gül Varol, <strong>Weidi Xie</strong>, Andrew Zisserman <br>
In: <em>Conference on Computer Vision and Pattern Recognition (CVPR) </em>, 2024. <br>
<a href="https://www.robots.ox.ac.uk/~vgg/research/autoad/">Project Page</a> |
<a href="https://arxiv.org/abs/2404.14412">Paper</a></li>
</li>
<p> </p>
<li>
<a href="https://fcjian.github.io/InstaGen/">
<papertitle>InstaGen: Enhancing Object Detection by Training on Synthetic Dataset.</papertitle>
</a>
<br>
Chengjian Feng, Yujie Zhong, Zequn Jie^†, <strong>Weidi Xie^†</strong>, Lin Ma<br>
In: <em>Conference on Computer Vision and Pattern Recognition (CVPR) </em>, 2024. <br>
<a href="https://fcjian.github.io/InstaGen/">Project Page</a> |
<a href="https://arxiv.org/abs/2402.05937">Paper</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2401.00789">
<papertitle>Retrieval-Augmented Egocentric Video Captioning.</papertitle>
</a>
<br>
Jilan Xu, Yifei Huang, Junlin Hou, Guo Chen, Yuejie Zhang, Rui Feng, <strong>Weidi Xie</strong><br>
In: <em>Conference on Computer Vision and Pattern Recognition (CVPR) </em>, 2024.<br>
<a href="">Project Page</a> |
<a href="https://arxiv.org/abs/2401.00789">Paper</a>
</li>
<p> </p>
<li>
<a href="https://arxiv.org/abs/2312.06505">
<papertitle>Grounded Question-Answering in Long Egocentric Videos.</papertitle>
</a>
<br>
Shangzhe Di, <strong>Weidi Xie</strong> <br>
In: <em>Conference on Computer Vision and Pattern Recognition (CVPR) </em>, 2024.<br>
<a href="https://dszdsz.cn/GroundVQA/index.html">Project Page</a> |
<a href="https://arxiv.org/abs/2312.06505">Paper</a>
</li>
<p> </p>
<li>
<a href="https://www.robots.ox.ac.uk/~vgg/research/amodal/">
<papertitle>Amodal Ground Truth and Completion in the Wild.</papertitle>
</a>
<br>
Guanqi Zhan, Chuanxia Zheng, <strong>Weidi Xie</strong>, Andrew Zisserman <br>
In: <em>Conference on Computer Vision and Pattern Recognition (CVPR) </em>, 2024. <br>
<a href="https://www.robots.ox.ac.uk/~vgg/research/amodal/">Project Page</a> |
<a href="https://arxiv.org/abs/2312.17247">Paper</a></li>