-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpublication.html
3115 lines (2709 loc) · 220 KB
/
publication.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
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
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<title>Publication | Yue Zhang</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-responsive.min.css">
<style type="text/css">
.nav {}
.nav li {
float: left;
width: 110px;
}
.container {
background-color: #ffffff;
padding: 30px;
}
.content {
padding: 30px;
}
body,
h1,
h2,
h3,
h4 {
font-family: "Trebuchet MS", "Helvetica Neue", Arial, Helvetica, sans-serif, "Georgia";
}
body {
background-color: #eeeeee;
}
header {
width: 100%;
}
blockquote p {
font-size: 14px;
}
/** for new templates **/
.navt li {
float: left;
width: 200px;
}
.btn {
font: bold 14px Arial;
}
.t1 {
/**placeholder for the first topic**/
/*display: list-item;*/
}
.t2 {
/**placeholder for the second topic**/
/*display: list-item;*/
}
.t3 {
/**placeholder for the third topic**/
/*display: list-item;*/
}
.t4 {
/**placeholder for the fourth topic**/
/*display: list-item;*/
}
.t5 {
/**placeholder for the fifth topic**/
/*display: list-item;*/
}
.t6 {
/**placeholder for the sixth topic**/
/*display: list-item;*/
}
.t7 {
/**placeholder for the seventh topic**/
/*display: list-item;*/
}
.t8 {
/**placeholder for the eighth topic**/
/*display: list-item;*/
}
.t9 {
/**placeholder for the ninth topic**/
/*display: list-item;*/
}
.t10 {
/**placeholder for the tenth topic**/
/*display: list-item;*/
}
/** for new templates **/
</style>
<script>
const topicSet = new Set(["t1", "t2", "t3", "t4", "t5", "t6", "t7", "t8", "t9", "t10"]);
function changeTopic(topic) {
//const topicSet = new Set(["t1", "t2", "t3", "t4", "t5", "t6", "t7","t8", "t9", "t10"]);
if (topicSet.has(topic)) {
hideAllTopics();
showTopic(topic);
} else {
showAllTopics();
}
}
const yearsSet = new Set(["C2021", "C2020", "C2019", "C2018", "C2017", "C2016", "C2015", "C2014", "C2013",
"C2012", "C2011", "C2010", "Cbefore", "B2021", "B2019",
"B2018", "B2015", "J2021", "J2020", "J2019", "J2018", "J2017", "J2016", "J2015", "J2011"
]);
function showTopic(topic) {
showAllYears();
var years = new Set();
var elements = document.getElementsByClassName(topic);
for (index in elements) {
element = elements[index];
if (typeof element.style === 'undefined')
continue;
for (let cn of element.classList)
if (yearsSet.has(cn))
years.add(cn);
if (typeof element.style.display === 'undefined')
element.style.display = "list-item";
element.style.display = "list-item";
}
//hide the years without any publication
for (let item of yearsSet)
if (!years.has(item)) {
var el1v = document.getElementsByClassName(item);
el1v[0].style.display = "none";
}
}
function hideTopic(topic) {
var elements = document.getElementsByClassName(topic);
for (index in elements) {
element = elements[index];
if (typeof element.style === 'undefined')
continue
if (typeof element.style.display === 'undefined')
element.style.display = "none";
element.style.display = "none";
}
}
function showAllYears() {
//show all the years
for (let item of yearsSet) {
var el1v = document.getElementsByClassName(item);
el1v[0].style.display = "list-item";
}
}
function showAllTopics() {
//or you can use set, just simple and naive implementation
topicSet.forEach(showTopic);
showAllYears();
/*
showTopic("t1");
showTopic("t2");
showTopic("t3");
showTopic("t4");
showTopic("t5");
showTopic("t6");
showTopic("t7");
showTopic("t8");
showTopic("t9");
showTopic("t10");*/
}
function hideAllTopics() {
//or you can use set, just simple and naive implementation
topicSet.forEach(hideTopic);
/*
hideTopic("t1");
hideTopic("t2");
hideTopic("t3");
hideTopic("t4");
hideTopic("t5");
hideTopic("t6");
hideTopic("t7");
hideTopic("t8");
hideTopic("t9");
hideTopic("t10");*/
}
</script>
<body>
<div class="table-bordered container">
<header class="header">
<div style="padding-bottom: 40px" class="row">
<div style="padding-top: 30px" class="col-md-10">
<div class="row">
<div class="col-md-12">
<h2 class="pull-right">Yue Zhang</h2>
</div>
</div>
<p></p>
<div class="row">
<div class="col-md-12"><span class="pull-right">Phone: +86 571 87381107</span></div>
</div>
<div class="row">
<div class="col-md-12"><span class="pull-right">Email:yue.zhang@wias.org.cn</span></div>
</div>
</div>
<div class="col-md-2">
<img class="pull-right img-responsive img-thumbnail" src="yue_zhang.jpg" />
</div>
</div>
<div class="row">
<div class="col-md-12">
<ul class="nav">
<li><a href="index.html">Homepage</a></li>
<li><a href="publication.html">Publications</a></li>
<li><a href="teaching.html">Teaching</a></li>
<!--
<li><a href="software.html">Software</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="services.html">Services</a></li>
-->
</ul>
</div>
</div>
</header>
<div class="content">
<div class="row">
<!--new template-->
<div class="col-md-12">
<h3>By topics: </h3>
<ul class="navt">
<!--
-->
<button type="button" class="btn" onclick="showAllTopics()">Show All</button>
<button type="button" class="btn" onclick="changeTopic('t1')">Fundamental NLP</button>
<button type="button" class="btn" onclick="changeTopic('t2')">Information Extraction</button>
<button type="button" class="btn" onclick="changeTopic('t3')">Text Generation</button>
<button type="button" class="btn" onclick="changeTopic('t4')">Transfer Learning</button>
<button type="button" class="btn" onclick="changeTopic('t5')">Sentiment</button>
<button type="button" class="btn" onclick="changeTopic('t6')">Chinese NLP</button>
<button type="button" class="btn" onclick="changeTopic('t7')">Applications</button>
<button type="button" class="btn" onclick="changeTopic('t8')">Joint Models</button>
<button type="button" class="btn" onclick="changeTopic('t9')">Knowledge Based Methods</button>
<button type="button" class="btn" onclick="changeTopic('t10')">Transition Based Models</button>
</ul>
</div>
<div class="col-md-12">
<!--
Instruction for writing a new publication entry: insert an <li> item within the <ul> item.
Instruction for starting another year: insert an <h4> item and a <ul> item, then insert a group of <li> items.
-->
<h3>Conference proceedings:</h3>
<h4 class="C2025">2025</h4>
<ul>
<li class="t3 C2025">Yixuan Weng, Minjun Zhu, Guangsheng Bao, Hongbo Zhang, Jindong Wang, Yue Zhang, Linyi Yang. 2025.
<em>CycleResearcher: Improving Automated Research via Automated Review.</em>
In Proceedings of The Thirteenth International Conference on Learning Representations (ICLR 2025), Singapore.
<a href="">[PDF]</a>
<a href="">[BIB]</a>
</li>
<li class="t3 C2025">Jian Wu, Linyi Yang, Zhen Wang, Manabu Okumura, Yue Zhang. 2025.
<em>CofCA: A STEP-WISE Counterfactual Multi-hop QA benchmark.</em>
In Proceedings of The Thirteenth International Conference on Learning Representations (ICLR 2025), Singapore.
<a href="">[PDF]</a>
<a href="">[BIB]</a>
</li>
<li class="t3 C2025">Guangsheng Bao, Yanbin Zhao, Juncai He, Yue Zhang. 2025.
<em>Glimpse: Enabling White-Box Methods to Use Proprietary Models for Zero-Shot LLM-Generated Text Detection.</em>
In Proceedings of The Thirteenth International Conference on Learning Representations (ICLR 2025), Singapore.
<a href="">[PDF]</a>
<a href="">[BIB]</a>
</li>
<li class="t3 C2025">Qiujie Xie, Qiming Feng, Tianqi Zhang, Qingqiu Li, Linyi Yang, Yuejie Zhang, Rui Feng, Liang He, Shang Gao, Yue Zhang. 2025.
<em>Human Simulacra: Benchmarking the Personification of Large Language Models.</em>
In Proceedings of The Thirteenth International Conference on Learning Representations (ICLR 2025), Singapore.
<a href="">[PDF]</a>
<a href="">[BIB]</a>
</li>
<li class="t3 C2025">Futing Wang, Jianhao (Elliott) Yan, Yue Zhang, Tao Lin. 2025.
<em>ELICIT: LLM Augmentation Via External In-context Capability.</em>
In Proceedings of The Thirteenth International Conference on Learning Representations (ICLR 2025), Singapore.
<a href="">[PDF]</a>
<a href="">[BIB]</a>
</li>
<li class="t3 C2025">Qiujie Xie, Qingqiu Li, Zhuohao Yu, Yuejie Zhang, Yue Zhang, Linyi Yang. 2025.
<em>An Empirical Analysis of Uncertainty in Large Language Model Evaluations.</em>
In Proceedings of The Thirteenth International Conference on Learning Representations (ICLR 2025), Singapore.
<a href="">[PDF]</a>
<a href="">[BIB]</a>
</li>
<li class="t3 C2025">Jian Wu, Linyi Yang, Dongyuan Li, Yuliang Ji, Manabu Okumura, Yue Zhang. 2025.
<em>MMQA: Evaluating LLMs with Multi-Table Multi-Hop Complex Questions.</em>
In Proceedings of The Thirteenth International Conference on Learning Representations (ICLR 2025), Singapore.
<a href="">[PDF]</a>
<a href="">[BIB]</a>
</li>
<li class="t3 C2025">Cunxiang Wang, Ruoxi Ning, Boqi Pan, Tonghui Wu, Qipeng Guo, Cheng Deng, Guangsheng Bao, Xiangkun Hu, Zheng Zhang, Qian Wang, Yue Zhang. 2025.
<em>NovelQA: Benchmarking Question Answering on Documents Exceeding 200K Tokens.</em>
In Proceedings of The Thirteenth International Conference on Learning Representations (ICLR 2025), Singapore.
<a href="">[PDF]</a>
<a href="">[BIB]</a>
</li>
<li class="t3 C2025">Minjun Zhu, Yixuan Weng, Linyi Yang, Yue Zhang. 2025.
<em>Personality Alignment of Large Language Models.</em>
In Proceedings of The Thirteenth International Conference on Learning Representations (ICLR 2025), Singapore.
<a href="">[PDF]</a>
<a href="">[BIB]</a>
</li>
<li class="t3 C2025">Di Wu, Siyuan Li, Chen Feng, Lu Cao, Yue Zhang, Jie Yang, Mohamad Sawan. 2025.
<em>Towards Homogeneous Lexical Tone Decoding from Heterogeneous Intracranial Recordings.</em>
In Proceedings of The Thirteenth International Conference on Learning Representations (ICLR 2025), Singapore.
<a href="">[PDF]</a>
<a href="">[BIB]</a>
</li>
<li class="t3 C2025">Guangsheng Bao*, Hongbo Zhang*, Cunxiang Wang, Linyi Yang, Yue Zhang. 2025.
<em>How Likely Do LLMs with CoT Mimic Human Reasoning? </em>
In Proceedings of the 31st International Conference on Computational Linguistics (COLING 2025), Abu Dhabi.
<a href="https://aclanthology.org/2025.coling-main.524.pdf">[PDF]</a>
<a href="https://aclanthology.org/2025.coling-main.524.bib">[BIB]</a>
</li>
<li class="t3 C2025">Chiyu Song, Zhanchao Zhou, Jianhao Yan, Yuejiao Fei, Zhenzhong Lan, Yue Zhang. 2025.
<em>Dynamics of Instruction Fine-Tuning for Chinese Large Language Models.</em>
In Proceedings of the 31st International Conference on Computational Linguistics (COLING 2025), Abu Dhabi.
<a href="https://aclanthology.org/2025.coling-main.689.pdf">[PDF]</a>
<a href="https://aclanthology.org/2025.coling-main.689.bib">[BIB]</a>
</li>
<li class="t3 C2025">Shichen Li, Zhongqing Wang*, Zheyu Zhao, Yue Zhang, Peifeng Li. 2025.
<em>Exploring Model Editing for LLM-based Aspect-Based Sentiment Classification.</em>
In Proceedings of the 39th Annual AAAI Conference on Artificial Intelligence (AAAI 2025), Philadelphia, Pennsylvania, USA
<a href="">[PDF]</a>
<a href">[BIB]</a>
</li>
</ul>
<h4 class="C2024">2024</h4>
<ul>
<!-----emnlp 2024-->
<li class="t3 C2024">Yongjing Yin, Jiali Zeng, Yafu Li, Fandong Meng, Yue Zhang. 2024.
<em> LexMatcher: Dictionary-centric Data Curation for LLM-based Machine Translation.</em>
In Findings of the Association for Computational Linguistics: EMNLP 2024, Miami, Florida, November.
<a href="https://aclanthology.org/2024.findings-emnlp.866.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.findings-emnlp.866.bib">[BIB]</a>
</li>
<li class="t3 C2024">Yongjing Yin, Wenyang Gao, Haodong Wu, Jianhao Yan, Yue Zhang. 2024.
<em>Empirical Prior for Text Autoencoders.</em>
In Findings of the Association for Computational Linguistics: EMNLP 2024, Miami, Florida, November.
<a href="https://aclanthology.org/2024.findings-emnlp.796.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.findings-emnlp.796.bib">[BIB]</a>
</li>
<li class="t3 C2024">Liu Pai, Wenyang Gao, Wenjie Dong, Lin Ai, Ziwei Gong, Songfang Huang, Li Zongsheng, Ehsan Hoque, Julia Hirschberg, Yue Zhang. 2024.
<em>A Survey on Open Information Extraction from Rule-based Model to Large Language Model.</em>
In Findings of the Association for Computational Linguistics: EMNLP 2024, Miami, Florida, November.
<a href="https://aclanthology.org/2024.findings-emnlp.560.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.findings-emnlp.560.bib">[BIB]</a>
</li>
<li class="t3 C2024">Xuanwang Zhang, Yun-Ze Song, Yidong Wang, Shuyun Tang, Xinfeng Li, Zhengran Zeng, Zhen Wu, Wei Ye, Wenyuan Xu, Yue Zhang, Xinyu Dai, Shikun Zhang, Qingsong Wen. 2024.
<em>RAGLAB: A Modular and Research-Oriented Unified Framework for Retrieval-Augmented Generation.</em>
In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing (EMNLP 2024), Miami, Florida, November.
<a href="https://aclanthology.org/2024.emnlp-demo.43.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.emnlp-demo.43.bib">[BIB]</a>
</li>
<li class="t3 C2024">Zhuohao Yu, Chang Gao, Wenjin Yao, Yidong Wang, Zhengran Zeng, Wei Ye, Jindong Wang, Yue Zhang, Shikun Zhang. 2024.
<em>FreeEval: A Modular Framework for Trustworthy and Efficient Evaluation of Large Language Models.</em>
In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing: System Demonstrations, Miami, Florida, November.
<a href="https://aclanthology.org/2024.emnlp-demo.1.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.emnlp-demo.1.bib">[BIB]</a>
</li>
<li class="t3 C2024">Yongjing Yin, Junran Ding, Kai Song, Yue Zhang. 2024.
<em>Semformer: Transformer Language Models with Semantic Planning.</em>
In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing (EMNLP 2024), Miami, Florida, November.
<a href="https://aclanthology.org/2024.emnlp-main.1039.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.emnlp-main.1039.bib">[BIB]</a>
</li>
<li class="t3 C2024">Ziqi Zhang, Cunxiang Wang, Xiao Xiong, Yue Zhang, Donglin Wang. 2024.
<em>Nash CoT: Multi-Path Inference with Preference Equilibrium.</em>
In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing (EMNLP 2024), Miami, Florida, November.
<a href="https://aclanthology.org/2024.emnlp-main.807.pdf">[PDF]</a>
<a href=https://aclanthology.org/2024.emnlp-main.807.bib"">[BIB]</a>
</li>
<li class="t3 C2024">Rongwu Xu, Zehan Qi, Zhijiang Guo, Cunxiang Wang, Hongru Wang, Yue Zhang, Wei Xu. 2024.
<em>Knowledge Conflicts for LLMs: A Survey.</em>
In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing (EMNLP 2024), Miami, Florida, November.
<a href="https://aclanthology.org/2024.emnlp-main.486.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.emnlp-main.486.bib">[BIB]</a>
</li>
<li class="t3 C2024">Cheng Jiayang, Chunkit Chan, Qianqian Zhuang, Lin Qiu, Tianhang Zhang, Tengxiao Liu, Yangqiu Song, Yue Zhang, Pengfei Liu, Zheng Zhang. 2024.
<em>ECON: On the Detection and Resolution of Evidence Conflicts.</em>
In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing (EMNLP 2024), Miami, Florida, November.
<a href="https://aclanthology.org/2024.emnlp-main.447.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.emnlp-main.447.bib">[BIB]</a>
</li>
<li class="t3 C2024">Xiangkun Hu, Dongyu Ru, Lin Qiu, Qipeng Guo, Tianhang Zhang, Yang Xu, Yun Luo, Pengfei Liu, Yue Zhang, Zheng Zhang. 2024.
<em>Knowledge-Centric Hallucination Detection.</em>
In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing (EMNLP 2024), Miami, Florida, November.
<a href="https://aclanthology.org/2024.emnlp-main.395.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.emnlp-main.395.bib">[BIB]</a>
</li>
<li class="t3 C2024">
Tengxiao Liu, Qipeng Guo, Xiangkun Hu, Cheng Jiayang, Yue Zhang, Xipeng Qiu, Zheng Zhang. 2024.
<em>Can Language Models Learn to Skip Steps?</em>
In Proceedings of the SoCal NLP Symposium 2024, University of California, San Diego | Nov 22, 2024.
<a href="https://openreview.net/pdf/4a83957d2b46e1316f6bcdc680cbad91fa6b7a65.pdf">[PDF]</a>
<a href="pub/Can Language Models Learn to Skip Steps.bib">[BIB]</a>
</li>
<li class="t3 C2024">
Yulong Chen, Yang Liu, Jianhao Yan, Xuefeng Bai, Ming Zhong, Yinghao Yang, Ziyi Yang, Chenguang Zhu, Yue Zhang. 2024.
<em>See What LLMs Cannot Answer: A Self-Challenge Framework for Uncovering LLM Weaknesses.</em>
In Proceedings of the First Conference on Language Modeling, University of Pennsylvania Philadelphia, PA October 7-9, 2024.
<a href="https://www.arxiv.org/pdf/2408.08978">[PDF]</a>
<a href="pub/See What LLMs Cannot Answer.bib">[BIB]</a>
</li>
<li class="t3 C2024">
Hanxu Hu, Hongyuan Lu, Huajian Zhang, Yun-Ze Song, Wai Lam, Yue Zhang. 2024.
<em>Chain-of-Symbol Prompting For Spatial Reasoning in Large Language Models.</em>
In Proceedings of the First Conference on Language Modeling, University of Pennsylvania Philadelphia, PA October 7-9, 2024.
<a href="https://arxiv.org/pdf/2305.10276">[PDF]</a>
<a href="pub/Chain-of-Symbol Prompting For Spatial Reasoning in Large Language Models.bib">[BIB]</a>
</li>
<li class="t3 C2024">
Yingjie Li, Yue Zhang. 2024.
<em>Pro-Woman, Anti-Man? Identifying Gender Bias in Stance Detection.</em>
In <b>Findings</b> of the 62nd Annual Meeting of the Association for Computational Linguistics (ACL 2024). Bangkok, Thailand from August 11th to 16th, 2024.
<a href="https://aclanthology.org/2024.findings-acl.192.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.findings-acl.192.bib">[BIB]</a>
</li>
<li class="t3 C2024">
Jianhao Yan, Yun Luo, Yue Zhang. 2024.
<em>RefuteBench: Evaluating Refuting Instruction-Following for Large Language Models.</em>
In <b>Findings</b> of the 62nd Annual Meeting of the Association for Computational Linguistics (ACL 2024). Bangkok, Thailand from August 11th to 16th, 2024.
<a href="https://aclanthology.org/2024.findings-acl.818.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.findings-acl.818.bib">[BIB]</a>
</li>
<li class="t3 C2024">
Chenye Zhao, Yingjie Li, Cornelia Caragea, Yue Zhang. 2024.
<em>ZeroStance: Leveraging ChatGPT for Open-Domain Stance Detection via Dataset Generation.</em>
In <b>Findings</b> of the 62nd Annual Meeting of the Association for Computational Linguistics (ACL 2024). Bangkok, Thailand from August 11th to 16th, 2024.
<a href="https://aclanthology.org/2024.findings-acl.794.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.findings-acl.794.bib">[BIB]</a>
</li>
<li class="t3 C2024">
Runzhe Zhan, Xinyi Yang, Derek F. Wong, Lidia S. Chao, Yue Zhang. 2024.
<em>Prefix Text as a Yarn: Eliciting Non-English Alignment in Foundation Language Model.</em>
In <b>Findings</b> of the 62nd Annual Meeting of the Association for Computational Linguistics (ACL 2024). Bangkok, Thailand from August 11th to 16th, 2024.
<a href="https://aclanthology.org/2024.findings-acl.722.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.findings-acl.722.bib">[BIB]</a>
</li>
<li class="t3 C2024">
Yafu Li, Huajian Zhang, Jianhao Yan, Yongjing Yin, Yue Zhang. 2024.
<em>What Have We Achieved on Non-autoregressive Translation?</em>
In <b>Findings</b> of the 62nd Annual Meeting of the Association for Computational Linguistics (ACL 2024). Bangkok, Thailand from August 11th to 16th, 2024.
<a href="https://aclanthology.org/2024.findings-acl.452.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.findings-acl.452.bib">[BIB]</a>
</li>
<li class="t3 C2024">
Yafu Li, Zhilin Wang, Leyang Cui, Wei Bi, Shuming Shi, Yue Zhang. 2024.
<em>Spotting AI’s Touch: Identifying LLM-Paraphrased Spans in Text.</em>
In <b>Findings</b> of the 62nd Annual Meeting of the Association for Computational Linguistics (ACL 2024). Bangkok, Thailand from August 11th to 16th, 2024.
<a href="https://aclanthology.org/2024.findings-acl.423.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.findings-acl.423.bib">[BIB]</a>
</li>
<li class="t3 C2024">
Naihao Deng, Zhenjie Sun, Ruiqi He, Aman Sikka, Yulong Chen, Lin Ma, Yue Zhang, Rada Mihalcea. 2024.
<em>Tables as Texts or Images: Evaluating the Table Reasoning Ability of LLMs and MLLMs.</em>
In <b>Findings</b> of the 62nd Annual Meeting of the Association for Computational Linguistics (ACL 2024). Bangkok, Thailand from August 11th to 16th, 2024.
<a href="https://aclanthology.org/2024.findings-acl.23.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.findings-acl.23.bib">[BIB]</a>
</li>
<li class="t3 C2024">
Yafu Li, Qintong Li, Leyang Cui, Wei Bi, Zhilin Wang, Longyue Wang, Linyi Yang, Shuming Shi, Yue Zhang. 2024.
<em>MAGE: Machine-generated Text Detection in the Wild.</em>
In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (ACL 2024). Bangkok, Thailand from August 11th to 16th, 2024.
<a href="https://aclanthology.org/2024.acl-long.3.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.acl-long.3.bib">[BIB]</a>
</li>
<li class="t3 C2024">
Qingkai Min, Qipeng Guo, Xiangkun Hu, Songfang Huang, Zheng Zhang, Yue Zhang. 2024.
<em>Synergetic Event Understanding: A Collaborative Approach to Cross-Document Event Coreference Resolution with Large Language Models.</em>
In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (ACL 2024). Bangkok, Thailand from August 11th to 16th, 2024.
<a href="https://aclanthology.org/2024.acl-long.164.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.acl-long.164.bib">[BIB]</a>
</li>
<li class="t3 C2024">
Zhuohao Yu, Chang Gao, Wenjin Yao, Yidong Wang, Wei Ye, Jindong Wang, Xing Xie, Yue Zhang, Shikun Zhang. 2024.
<em>KIEval: A Knowledge-grounded Interactive Evaluation Framework for Large Language Models.</em>
In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (ACL 2024). Bangkok, Thailand from August 11th to 16th, 2024.
<a href="https://aclanthology.org/2024.acl-long.325.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.acl-long.325.bib">[BIB]</a>
</li>
<li class="t3 C2024">Dandan Huang, Lu Cao, Zhenting Li and Yue Zhang. 2024.
<em>Which Sense Dominates Multisensory Semantic Understanding? A Brain Decoding Study.</em>
In Proceedings of the 2024 joint international Conference on Computational Linguistics, Language Resource and Evaluation (LREC-COLING 2024), Torino, Italy.
<a href="https://aclanthology.org/2024.lrec-main.1527.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.lrec-main.1527.bib">[BIB]</a>
</li>
<li class="t3 C2024">Jianhao Yan, Jin Xu, Fandong Meng, Jie Zhou and Yue Zhang. 2024.
<em>DC-MBR: Distributional Cooling for Minimum Bayesian Risk Decoding.</em>
In Proceedings of the 2024 joint international Conference on Computational Linguistics, Language Resource and Evaluation (LREC-COLING 2024), Torino, Italy.
<a href="https://aclanthology.org/2024.lrec-main.395.pdf">[PDF]</a>
<a href="https://aclanthology.org/2024.lrec-main.395.bib">[BIB]</a>
</li>
<li class="t3 C2024">Guangsheng Bao, Yanbin Zhao, Zhiyang Teng, Linyi Yang, Yue Zhang. 2024.
<em>Fast-DetectGPT: Efficient Zero-Shot Detection of Machine-Generated Text via Conditional Probability Curvature.</em>
In Proceedings of the Internation Conference on Learning Representation (ICLR 2024), Vienna, Austria.
<a href="https://openreview.net/forum?id=Bpcgcr8E8Z">[PDF]</a>
<a href="https://openreview.net/forum?id=Bpcgcr8E8Z">[BIB]</a>
</li>
<li class="t3 C2024">
Jianhao (Elliott) Yan, Jin Xu, Chiyu Song, Chenming Wu, Yafu Li, Yue Zhang. 2024.
<em>Understanding In-Context Learning from Repetitions. </em>
In Proceedings of the Internation Conference on Learning Representation (ICLR 2024) Vienna, Austria.
<a href="https://openreview.net/pdf?id=bGGYcvw8mp">[PDF]</a>
<a href="https://openreview.net/pdf?id=bGGYcvw8mp">[BIB]</a>
</li>
<li class="t3 C2024">Yidong Wang, Zhuohao Yu, Zhengran Zeng, Linyi Yang, Cunxiang Wang, Hao Chen, Chaoya Jiang, Rui Xie, Jindong Wang, Xing Xie, Wei Ye, Shikun Zhang, Yue Zhang. 2024.
<em>PandaLM: An Automatic Evaluation Benchmark for LLM Instruction Tuning Optimization.</em>
In Proceedings of the Internation Conference on Learning Representation (ICLR 2024), Vienna, Austria.
<a href="https://openreview.net/forum?id=5Nn2BLV7SB">[PDF]</a>
<a href="https://openreview.net/forum?id=5Nn2BLV7SB">[BIB]</a>
</li>
<li class="t3 C2024">Linyi Yang, Shuibai Zhang, Zhuohao Yu, Guangsheng Bao, Yidong Wang, Jindong Wang, Ruochen Xu, Wei Ye, Xing Xie, Weizhu Chen, Yue Zhang. 2024.
<em>Supervised Knowledge Makes Large Language Models Better In-context Learners.</em>
In Proceedings of the Internation Conference on Learning Representation (ICLR 2024), Vienna, Austria.
<a href="https://openreview.net/forum?id=bAMPOUF227">[PDF]</a>
<a href="https://openreview.net/forum?id=bAMPOUF227">[BIB]</a>
</li>
</ul>
<h4 class="C2023">2023</h4>
<ul>
<!-----EMNLP 2023-->
<li class="t3 C2023">Guangsheng Bao, Zebin Ou, Yue Zhang.
<em>GEMINI: Controlling The Sentence-Level Summary Style in Abstractive Text Summarization.</em>
In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP 2023), Singapore, December.
<a href="https://aclanthology.org/2023.emnlp-main.53.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.emnlp-main.53.bib">[BIB]</a>
</li>
<li class="t3 C2023">Libo Qin, Wenbo Pan, Qiguang Chen, Lizi Liao, Zhou Yu, Yue Zhang, Wanxiang Che, Min Li.
<em>End-to-end Task-oriented Dialogue: A Survey of Tasks, Methods, and Future Directions.</em>
In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP 2023), Singapore, December.
<a href="https://aclanthology.org/2023.emnlp-main.363.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.emnlp-main.363.bib">[BIB]</a>
</li>
<li class="t3 C2023">Linyi Yang, Yaoxian Song, Xuan Ren, Chenyang Lyu, Yidong Wang, Jingming Zhuo, Lingqiao Liu, Jindong Wang, Jennifer Foster, Yue Zhang.
<em>Out-of-Distribution Generalization in Natural Language Processing: Past, Present, and Future.</em>
In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP 2023), Singapore, December.
<a href="https://aclanthology.org/2023.emnlp-main.276.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.emnlp-main.276.bib">[BIB]</a>
</li>
<li class="t3 C2023">Tianhang Zhang, Lin Qiu, Qipeng Guo, Cheng Deng, Yue Zhang, Zheng Zhang, Chenghu Zhou, Xinbing Wang, Luoyi Fu.
<em>Enhancing Uncertainty-Based Hallucination Detection with Stronger Focus.</em>
In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP 2023), Singapore, December.
<a href="https://aclanthology.org/2023.emnlp-main.58.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.emnlp-main.58.bib">[BIB]</a>
</li>
<li class="t3 C2023">Jiayang Cheng, Lin Qiu, Tsz Ho CHAN, Tianqing Fang, Weiqi Wang, Chunkit Chan, Qipeng Guo, Hongming Zhang, Yangqiu Song, Yue Zhang, Zheng Zhang.
<em>STORYANALOGY: Deriving Story-level Analogies from Large Language Models to Unlock Analogical Understanding.</em>
In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP 2023), Singapore, December.
<a href="https://aclanthology.org/2023.emnlp-main.706.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.emnlp-main.706.bib">[BIB]</a>
</li>
<li class="t3 C2023">Tengxiao Liu, Qipeng Guo, Yuqing Yang, Xiangkun Hu, Yue Zhang, Xipeng Qiu, Zheng Zhang.
<em>Plan, Verify and Switch: Integrated Reasoning with Diverse X-of-Thoughts.</em>
In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP 2023), Singapore, December.
<a href="https://aclanthology.org/2023.emnlp-main.169.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.emnlp-main.169.bib">[BIB]</a>
</li>
<li class="t3 C2023">Chen Jia, Yue Zhang.
<em>Memory-Based Invariance Learning for Out-of-Domain Text Classification.</em>
In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP 2023), Singapore, December.
<a href="https://aclanthology.org/2023.emnlp-main.101.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.emnlp-main.101.bib">[BIB]</a>
</li>
<li class="t3 C2023">Jianling Li, Meishan Zhang, Peiming Guo, Min Zhang, Yue Zhang.
<em>LLM-enhanced Self-training for Cross-doamin Constituency Parsing.</em>
In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP 2023), Singapore, December.
<a href="https://aclanthology.org/2023.emnlp-main.508.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.emnlp-main.508.bib">[BIB]</a>
</li>
<li class="t3 C2023">Guangsheng Bao, Zhiyang Teng, Hao Zhou, Jianhao Yan, Yue Zhang.
<em>Non-Autoregressive Document-Level Machine Translation.</em>
In <b>Findings</b> of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP 2023), Singapore, December.
<a href="https://aclanthology.org/2023.findings-emnlp.986.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.findings-emnlp.986.bib">[BIB]</a>
</li>
<li class="t3 C2023">Yun Luo, Zhen Yang, Fandong Meng, Yingjie Li, Jie Zhou, Yue Zhang.
<em>Enhancing Argument Structure Extraction with Efficient Leverage of Contextual Information.</em>
In <b>Findings</b> of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP 2023), Singapore, December.
<a href="https://aclanthology.org/2023.findings-emnlp.507.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.findings-emnlp.507.bib">[BIB]</a>
</li>
<li class="t3 C2023">Hanmeng Liu, Zhiyang Teng, Leyang Cui, Chaoli Zhang, Qiji Zhou, Yue Zhang.
<em>LogiCoT: Logical Chain-of-Thought Instruction Tuning.</em>
In <b>Findings</b> of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP 2023), Singapore, December.
<a href="https://aclanthology.org/2023.findings-emnlp.191.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.findings-emnlp.191.bib">[BIB]</a>
</li>
<li class="t3 C2023">Haofei Yu, Cunxiang Wang, Yue Zhang, Wei Bi.
<em>TRAMS: Training-free Memory Selection for Long-range Language Modeling.</em>
In <b>Findings</b> of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP 2023), Singapore, December.
<a href="https://aclanthology.org/2023.findings-emnlp.331.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.findings-emnlp.331.bib">[BIB]</a>
</li>
<li class="t3 C2023">Cunxiang Wang, Sirui Cheng, Qipeng Guo, Yuanhao Yue, Bowen Ding, Zhikun Xu, Yidong Wang, Xiangkun Hu, Zheng Zhang, Yue Zhang. 2023.
<em>Evaluating Open-QA Evaluation.</em>
In Proceedings of the Advances in Neural Information Processing Systems 36 (NeurIPS 2023) Datasets and Benchmarks Track.
<a href="https://papers.nips.cc/paper_files/paper/2023/file/f323d594aa5d2c68154433a131c07959-Paper-Datasets_and_Benchmarks.pdf">[PDF]</a>
<a href="https://papers.nips.cc/paper_files/paper/20232-/bibtex">[BIB]</a>
</li>
<li class="t3 C2023">
Linyi Yang, Yingpeng Ma and Yue Zhang. 2023.
<em>Measuring Consistency in Text-based Financial Forecasting Models.</em>
In Proceedings of the 61th Annual Meeting of the Association for Computational Linguistics (ACL2023). Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.acl-long.769.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.acl-long.769.bib">[BIB]</a>
</li>
<li class="t3 C2023">
Yulong Chen, Huajian Zhang, Yijie Zhou, Xuefeng Bai, Yueguan Wang, Ming Zhong, Jianhao Yan, Yafu Li, Judy Li, Michael Zhu and Yue Zhang. 2023.
<em>Revisiting Cross-Lingual Summarization: A Corpus-based Study and A New Benchmark with Improved Annotation.</em>
In Proceedings of the 61th Annual Meeting of the Association for Computational Linguistics (ACL2023).Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.acl-long.519.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.acl-long.519.bib">[BIB]</a>
</li>
<li class="t3 C2023">
Yulong Chen, Yang Liu, Ruochen Xu, Ziyi Yang, Chenguang Zhu, Michael Zeng and Yue Zhang. 2023.
<em>UniSumm and SummZoo: Unified Model and Diverse Benchmark for Few-Shot Summarization.</em>
In Proceedings of the 61th Annual Meeting of the Association for Computational Linguistics (ACL2023).Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.acl-long.718.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.acl-long.718.bib">[BIB]</a>
</li>
<li class="t3 C2023">
Guangsheng Bao, Zhiyang Teng, and Yue Zhang. 2023.
<em>Target-Side Augmentation for Document-Level Machine Translation.</em>
In Proceedings of the 61th Annual Meeting of the Association for Computational Linguistics (ACL2023). Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.acl-long.599.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.acl-long.599.bib">[BIB]</a>
</li>
<li class="t3 C2023">
Yafu Li, Leyang Cui, Jianhao Yan, Yongjing Yin, Wei Bi, Shuming Shi and Yue Zhang. 2023.
<em>Explicit Syntactic Guidance for Neural Text Generation.</em>
In Proceedings of the 61th Annual Meeting of the Association for Computational Linguistics (ACL2023). Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.acl-long.788.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.acl-long.788.bib">[BIB]</a>
</li>
<li class="t3 C2023">
Yongjing Yin, Jiali Zeng, Yafu Li, Fandong Meng, Jie Zhou and Yue Zhang. 2023.
<em>Consistency Regularization Training for Compositional Generalization.</em>
In Proceedings of the 61th Annual Meeting of the Association for Computational Linguistics (ACL2023).Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.acl-long.72v2.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.acl-long.72.bib">[BIB]</a>
</li>
<li class="t3 C2023">
Yuqing Yang, Qipeng Guo, Xiangkun Hu, Yue Zhang, Xipeng Qiu and Zheng Zhang. 2023.
<em>An AMR-based Link Prediction Approach for Document-level Event Argument Extraction.</em>
In Proceedings of the 61th Annual Meeting of the Association for Computational Linguistics (ACL2023).Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.acl-long.720.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.acl-long.720.bib">[BIB]</a>
</li>
<li class="t3 C2023">
Dongyu Ru, Lin Qiu, Xipeng Qiu, Yue Zhang, Zheng Zhang. 2023.
<em>Distributed Marker Representation for Ambiguous Discourse Markers and Entangled Relations.</em>
In Proceedings of the 61th Annual Meeting of the Association for Computational Linguistics (ACL2023).Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.acl-long.292.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.acl-long.292.bib">[BIB]</a>
</li>
<li class="t3 C2023">
Qipeng Guo, Xiangkun Hu, Yue Zhang, Xipeng Qiu and Zheng Zhang. 2023.
<em>Dual Cache for Long Document Neural Coreference Resolution.</em>
In Proceedings of the 61th Annual Meeting of the Association for Computational Linguistics (ACL2023).Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.acl-long.292.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.acl-long.292.bib">[BIB]</a>
</li>
<li class="t3 C2023">
Xiaoyi Bao, Xiaotong Jiang, Zhongqing Wang, Yue Zhang and Guodong Zhou. 2023.
<em>Opinion Tree Parsing for Aspect-based Sentiment Analysis.</em>
In <b>Findings</b> of the 61th Annual Meeting of the Association for Computational Linguistics (ACL2023).Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.findings-acl.505.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.findings-acl.505.bib">[BIB]</a>
</li>
<li class="t3 C2023">
Linyi Yang, Shuibai Zhang, Libo Qin, Yafu Li, Yidong Wang, Hanmeng Liu, Jindong Wang, Xing Xie and Yue Zhang. 2023.
<em>GLUE-X: Evaluating Natural Language Understanding Models from an Out-of-Distribution Generalization Perspective.</em>
In <b>Findings</b> of the 61th Annual Meeting of the Association for Computational Linguistics (ACL2023). Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.findings-acl.806.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.findings-acl.806.bib">[BIB]</a>
</li>
<li class="t3 C2023">
Yingjie Niu, Linyi Yang, Ruihai Dong and Yue Zhang. 2023.
<em>Learning to Generalize for Cross-domain QA.</em>
In <b>Findings</b> of the 61th Annual Meeting of the Association for Computational Linguistics (ACL2023). Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.findings-acl.84.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.findings-acl.84.bib">[BIB]</a>
</li>
<li class="t3 C2023">
Chenyang Lyu, Linyi Yang, Yue Zhang, Yvette Graham and Jennifer Foster. 2023.
<em>Exploiting Rich Textual User-Product Context for Improving Personalized Sentiment Analysis.</em>
In <b>Findings</b> of the of the 61th Annual Meeting of the Association for Computational Linguistics (ACL2023).Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.findings-acl.92.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.findings-acl.92.bib">[BIB]</a>
</li>
<li class="t3 C2023">
Cunxiang Wang, Qipeng Guo, Zhikun Xu, Xiangkun Hu, Xuefeng Bai, Zheng Zhang and Yue Zhang. 2023.
<em>Exploiting Abstract Meaning Representation for Open-Domain Question Answering.</em>
In <b>Findings</b> of the 61th Annual Meeting of the Association for Computational Linguistics (ACL2023). Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.findings-acl.131.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.findings-acl.131.bib">[BIB]</a>
</li>
<li class="t3 C2023">
Cunxiang Wang, Haofei Yu and Yue Zhang. 2023.
<em>RFiD: Towards Rational Fusion-in-Decoder for Open-Domain Question Answering.</em>
In <b>Findings</b> of the 61th Annual Meeting of the Association for Computational Linguistics (ACL2023). Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.findings-acl.155.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.findings-acl.155.bib">[BIB]</a>
</li>
<li class="t3 C2023">
Guangsheng Bao, Zhiyang Teng, and Yue Zhang. 2023.
<em>Token-Level Fitting Issues of Seq2seq Models.</em>
In Proceedings of the 8th Workshop on Representation Learning for NLP (RepL4NLP) at ACL 2023. Toronto, Canada from July 9th to July 14th, 2023.
<a href="https://aclanthology.org/2023.findings-acl.155.pdf">[PDF]</a>
<a href="https://aclanthology.org/2023.findings-acl.155.bib">[BIB]</a>
</li>
<li class="t3 C2023">Jindong Wang , Xixu Hu, Wenxin Hou, Hao Chen, Runkai Zheng, Yidong Wang, Linyi Yang, Wei Ye, Haojun Huang, Xiubo Geng, Binxing Jiao, Yue Zhang, Xing Xie. 2023.
<em>On the Robustness of ChatGPT: An Adversarial and Out-of-distribution Perspective.</em>
In Proceedings of the workshop on Trustworthy and Reliable Large-Scale Machine Learning Models (RTML) at ICLR 2023, Kigali, Rwanda, May.
<a href="pub/An Adversarial and Out-of-distribution Perspective.pdf">[PDF]</a>
<a href="pub/An Adversarial and Out-of-distribution Perspective.bib">[BIB]</a>
</li>
<li class="t3 C2023">Fang Guo, Yun Luo, Linyi Yang, Yue Zhang. 2023.
<em>SciMine: An Efficient Systematic Review Model Based on Document And Phrase Information.</em>
In Proceedings of the 46th International ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR), Taipei, China, July.
<a href="pub/An Efficient Systematic Review Model Based on Document And Phrase Information.pdf">[PDF]</a>
<a href="pub/An Efficient Systematic Review Model Based on Document And Phrase Information.bib">[BIB]</a>
</li>
<li class="t3 C2023">Hongliang He, Junlei Zhang, Zhenzhong Lan, Yue Zhang. 2023.
<em>Instance Smoothed Contrastive Learning for Unsupervised Sentence Embedding.</em>
In Proceedings of the AAAI Conference on Artificial Intelligence (AAAI 2023), Washington DC, USA, February.
<a href="pub/Instance Smoothed Contrastive Learning for Unsupervised Sentence Embedding.pdf">[PDF]</a>
<a href="pub/Instance Smoothed Contrastive Learning for Unsupervised Sentence Embedding.bib">[BIB]</a>
</li>
<li class="t3 C2023">Qi He, Yue Zhang and Zhi Chen. 2023.
<em>Joint Transmission and Understanding of Semantics with Edge Intelligence.</em>
In Proceedings of the 2023 IEEE International Conference on Communications (ICC), Rome, Italy, May.
<a href="pub/Joint Transmission and Understanding of Semantics with Edge Intelligence.pdf">[PDF]</a>
<a href="pub/Joint Transmission and Understanding of Semantics with Edge Intelligence.bib">[BIB]</a>
</li>
<li class="t3 C2023">Yun Luo, Zihan Liu, Stan Z. Li, and Yue Zhang. 2023.
<em>Improving (Dis)agreement Detection with Inductive Social Relation Information From Comment-Reply Interactions.</em>
In Proceedings of the ACM Web Conference 2023 (WWW 23), Austin, Texas, USA, April.
<a href="pub/Improving (Dis)agreement Detection with Inductive Social Relation Information From Comment-Reply Interactions.pdf">[PDF]</a>
<a href="pub/Improving (Dis)agreement Detection with Inductive Social Relation Information From Comment-Reply Interactions.bib">[BIB]</a>
</li>
</ul>
<h4 class="C2022">2022</h4>
<ul>
<li class="t3 C2022">
Yile Wang, Linyi Yang, Zhiyang Teng, Ming Zhou, Yue Zhang. 2022.
<em>Pre-Training a Graph Recurrent Network for Language Representation.</em>
In the second version of the Efficient Natural Language and Speech Processing (ENLSP-II) workshop, New Orleans, Louisiana, USA, 2022.
<a href="https://neurips2022-enlsp.github.io/papers/paper_6.pdf">[PDF]</a>
<a href="pub/Pre-Training a Graph Recurrent Network for Language Representation.bib">[BIB]</a>
</li>
<!-----emnlp 2022-->
<li class="t3 C2022">Yafu Li, Leyang Cui, Yongjing Yin, Yue Zhang. 2022.
<em>Multi-Granularity Optimization for Non-Autoregressive Translation.</em>
In Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing (EMNLP), Abu Dhabi, United Arab Emirates, December.
<a href="https://aclanthology.org/2022.emnlp-main.339.pdf">[PDF]</a>
<a href="https://aclanthology.org/2022.emnlp-main.339.bib">[BIB]</a>
</li>
<li class="t3 C2022">Tengxiao Liu, Qipeng Guo, Xiangkun Hu, Yue Zhang, Xipeng Qiu, Zheng Zhang. 2022.
<em>RLET: A Reinforcement Learning Based Approach for Explainable QA with Entailment Trees.</em>
In Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing (EMNLP), Abu Dhabi, United Arab Emirates, December.
<a href="https://aclanthology.org/emnlp-22-ingestion/2022.emnlp-main.483.pdf">[PDF]</a>
<a href="https://aclanthology.org/emnlp-22-ingestion/2022.emnlp-main.483.bib/">[BIB]</a>
</li>
<li class="t3 C2022">Chen Jia, Yue Zhang. 2022.
<em>Prompt-based Distribution Alignment for Domain Generalization in Text Classification.</em>
In Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing (EMNLP), Abu Dhabi, United Arab Emirates, December.
<a href="https://aclanthology.org/emnlp-22-ingestion/2022.emnlp-main.690.pdf">[PDF]</a>
<a href="https://aclanthology.org/emnlp-22-ingestion/2022.emnlp-main.690.bib">[BIB]</a>
</li>
<li class="t3 C2022">Xuefeng Bai, Sen Yang, Leyang Cui, Linfeng Song, Yue Zhang. 2022.
<em>Cross-domain Generalization for AMR Parsing.</em>
In Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing (EMNLP), Abu Dhabi, United Arab Emirates, December.
<a href="https://aclanthology.org/emnlp-22-ingestion/2022.emnlp-main.749.pdf">[PDF]</a>
<a href="https://aclanthology.org/emnlp-22-ingestion/2022.emnlp-main.749.bib">[BIB]</a>
</li>
<li class="t3 C2022">Yidong Wang, Hao Chen, Yue Fan, Wang Sun, Ran Tao, Wenxin Hou, Renjie Wang, Linyi Yang, Zhi Zhou, Lan-Zhe Guo, Heli Qi, Zhen Wu, Yu-Feng Li, Satoshi Nakamura, Wei Ye, Marios Savvides, Bhiksha Raj, Takahiro Shinozaki, Bernt Schiele, Jindong Wang, Xing Xie, Yue Zhang. 2022.
<em>USB: A Unified Semi-supervised Learning Benchmark for Classification.</em>
In Proceedings of the Thirty-sixth Conference on Neural Information Processing Systems (NeurIPS) Datasets and Benchmarks Track.
<a href="https://papers.nips.cc/paper_files/paper/2022/file/190dd6a5735822f05646dc27decff19b-Paper-Datasets_and_Benchmarks.pdf">[PDF]</a>
<a href="pub/NeurIPS-2022-usb-a-unified-semi-supervised-learning-benchmark-for-classification-Bibtex">[BIB]</a>
</li>
<!--coling 2022-->
<li class="t3 C2022">Xuefeng Bai, Linfeng Song, Yue Zhang. 2022.
<em>Semantic-based Pre-training for Dialogue Understanding.</em>
In Proceedings of the 29th International Conference on Computational Linguistics (COLING). Gyeongju, Republic of Korea, Oct.
<a href="https://aclanthology.org/2022.coling-1.49.pdf">[PDF]</a>
<a href="pub/bai.coling.bib">[BIB]</a>
</li>
<li class="t3 C2022">Naihao Deng, Yulong Chen, Yue Zhang. 2022.
<em>Recent Advances in Text-to-SQL: A Survey of What We Have and What We Expect.</em>
In Proceedings of the 29th International Conference on Computational Linguistics (COLING). Gyeongju, Republic of Korea, Oct.
<a href="https://aclanthology.org/2022.coling-1.190.pdf">[PDF]</a>
<a href="pub/deng.coling.bib">[BIB]</a>
</li>
<li class="t3 C2022">Kaixin Wu, Yue Zhang, Bojie Hu, Tong Zhang. 2022.
<em>Speeding up Transformer Decoding via an Attention Refinement Network.</em>
In Proceedings of the 29th International Conference on Computational Linguistics (COLING). Gyeongju, Republic of Korea, Oct.
<a href="https://aclanthology.org/2022.coling-1.453.pdf">[PDF]</a>
<a href="pub/kaixing.coling.bib">[BIB]</a>
</li>
<li class="t3 C2022">Yun Luo, Fang Guo, Zihan Liu, Yue Zhang. 2022.
<em>Mere Contrastive Learning for Cross-Domain Sentiment Analysis.</em>
In Proceedings of the 29th International Conference on Computational Linguistics (COLING). Gyeongju, Republic of Korea, Oct.
<a href="https://aclanthology.org/2022.coling-1.620.pdf">[PDF]</a>
<a href="pub/luo.coling.bib">[BIB]</a>
</li>
<li class="t3 C2022">Yun Luo, Zihan Liu, Yuefeng Shi, Stan Z. Li, Yue Zhang. 2022.
<em>Exploiting Sentiment and Common Sense for Zero-shot Stance Detection.</em>
In Proceedings of the 29th International Conference on Computational Linguistics (COLING). Gyeongju, Republic of Korea, Oct.
<a href="https://aclanthology.org/2022.coling-1.621.pdf">[PDF]</a>
<a href="pub/luo.zero.coling.bib">[BIB]</a>
</li>
<li class="t3 C2022">Zebin Ou, Meishan Zhang, Yue Zhang. 2022.
<em>On the Role of Pre-trained Language Models in Word Ordering: A Case Study with BART.</em>
In Proceedings of the 29th International Conference on Computational Linguistics (COLING). Gyeongju, Republic of Korea, Oct.
<a href="https://aclanthology.org/2022.coling-1.567.pdf">[PDF]</a>
<a href="pub/ou.coling.bib">[BIB]</a>
</li>
<li class="t3 C2022">Yaoxian Song, Penglei Sun, Pengfei Fang, Linyi Yang, Yanghua Xiao, Yue Zhang. 2022.
<em>Human-in-the-loop Robotic Grasping Using BERT Scene Representation.</em>
In Proceedings of the 29th International Conference on Computational Linguistics (COLING). Gyeongju, Republic of Korea, Oct.
<a href="https://aclanthology.org/2022.coling-1.265.pdf">[PDF]</a>
<a href="pub/song.coling.bib">[BIB]</a>
</li>
<li class="t3 C2022">Yidong Wang, Hao Wu, Ao Liu, Wenxin Hou, Zhen Wu, Jindong Wang, Takahiro Shinozaki, Manabu Okumura, Yue Zhang. 2022.
<em>Exploiting Unlabeled Data for Target-Oriented Opinion Words Extraction.</em>
In Proceedings of the 29th International Conference on Computational Linguistics (COLING). Gyeongju, Republic of Korea, Oct.
<a href="https://aclanthology.org/2022.coling-1.617.pdf">[PDF]</a>
<a href="pub/yidong.coling.bib">[BIB]</a>
</li>
<li class="t3 C2022">Linyi Yang, Lifan Yuan, Leyang Cui, Wenyang Gao, Yue Zhang. 2022.
<em>FactMix: Using a Few Labeled In-domain Examples to Generalize to Cross-domain Named Entity Recognition.</em>
In Proceedings of the 29th International Conference on Computational Linguistics (COLING). Gyeongju, Republic of Korea, Oct.
<a href="https://aclanthology.org/2022.coling-1.476.pdf">[PDF]</a>
<a href="pub/yang.coling.bib">[BIB]</a>
</li>
<li class="t3 C2022">Yongjing Yin, Yafu Li, Fandong Meng, Jie Zhou, Yue Zhang. 2022.
<em>Categorizing Semantic Representations for Neural Machine Translation.</em>
In Proceedings of the 29th International Conference on Computational Linguistics (COLING). Gyeongju, Republic of Korea, Oct.
<a href="https://aclanthology.org/2022.coling-1.464.pdf">[PDF]</a>
<a href="pub/yin.coling.bib">[BIB]</a>
</li>
<!--coling 2022-->