-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1076 lines (1035 loc) · 42.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
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
<!--
* @Author: Jon Barron
* @Date: 2019-05-11 22:15:22
* @Editors: whyisyoung
* @EditTime: 2020-10-23 10:57:25
* @LastEditors: RMSnow [email protected]
* @LastEditTime: 2024-02-27 23:34:11
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- https://ibruce.info/2015/04/04/busuanzi/#more -->
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<html>
<head>
<meta name=viewport content="width=device-width">
<meta name="generator" content="HTML Tidy for Linux/x86 (vers 11 February 2007), see www.w3.org">
<meta name="google-site-verification" content="p7SNRHPF7y83Q-nNBLkrxFhAAosW2t40unwTxByZ0vo" />
<meta charset="utf-8">
<style type="text/css">
/* Color scheme stolen from Sergey Karayev */
span.tag {
font-size: 11px;
color: #FFFFFF;
/* color: #07889b; */
background-color: #0076DF;
box-shadow: 2px 2px 1px #E0E0E0;
padding: 1px 5px 2px 5px;
}
span.wow {
font-size: 11px;
color: #FFFFFF;
/* color: #07889b; */
background-color: rgb(180, 16, 44);
box-shadow: 2px 2px 1px #E0E0E0;
padding: 1px 5px 2px 5px;
}
a {
color: #1772d0;
/* color: #07889b; */
text-decoration: none;
}
a.black {
color: #000000;
/* color: #07889b; */
text-decoration: none;
}
a:focus,
a:hover {
/* color: #e37222; #f09228; */
color: rgb(180, 16, 44);
text-decoration: none;
}
body,
td,
th,
tr,
p,
a {
font-family: 'Lato', Verdana, Helvetica, sans-serif;
font-size: 16px
}
strong {
font-family: 'Lato', Verdana, Helvetica, sans-serif;
font-size: 16px;
}
heading {
font-family: 'Lato', Verdana, Helvetica, sans-serif;
font-size: 22px;
/* color: #e3225c; */
color: rgb(180, 16, 44);
/* color: rgb(117, 15, 109); */
}
subheading {
font-family: 'Lato', Verdana, Helvetica, sans-serif;
font-size: 18px;
font-style: italic;
/* color: #e3225c; */
color: rgb(180, 16, 44);
}
papertitle {
font-family: 'Lato', Verdana, Helvetica, sans-serif;
font-size: 16px;
font-weight: bold;
}
name {
font-family: 'Lato', Verdana, Helvetica, sans-serif;
font-size: 32px;
}
.footer {
font-family: 'Lato', Verdana, Helvetica, sans-serif;
font-size: 14px;
opacity: 0.75;
color: #777;
}
.one {
width: 160px;
height: 160px;
position: relative;
}
.two {
width: 160px;
height: 160px;
position: absolute;
transition: opacity .2s ease-in-out;
-moz-transition: opacity .2s ease-in-out;
-webkit-transition: opacity .2s ease-in-out;
}
.fade {
transition: opacity .2s ease-in-out;
-moz-transition: opacity .2s ease-in-out;
-webkit-transition: opacity .2s ease-in-out;
}
span.highlight {
background-color: #ffffd0;
}
span.artifact {
color: #6cb41b;
padding: 1px;
}
span.underline {
border-bottom: 1px solid black;
padding-bottom: 1px;
}
span.tldr {
color: #555555;
}
em.highlight {
color: #e37222;
}
</style>
<link rel="icon" type="image/png" href="images/music.ico">
<title>Xueyao Zhang</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href='https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic' rel='stylesheet'
type='text/css'>
</head>
<body>
<table width="960" border="0" align="center" cellspacing="0" cellpadding="0">
<tr>
<td>
<!-- Intro Begin -->
<table width="100%" align="left" border="0" cellspacing="0" cellpadding="12" style="table-layout:fixed;">
<colgroup>
<col span="1" style="width: 22%;">
<col span="1" style="width: 78%;">
</colgroup>
<tr>
<td valign="middle">
<img src="images/me-yuqing-coat.jpg" height="180px">
</td>
<td valign="middle">
<p align="left">
<name>Xueyao Zhang (张雪遥)</name>
</p>
<p>
Ph.D. student, <br>
<a href="https://sds.cuhk.edu.cn/en">School of Data Science</a>, <br>
<a href="https://www.cuhk.edu.cn/en">The Chinese University of Hong Kong, Shenzhen</a>
</p>
<p align=left>
<!-- E-mail: <span>xueyao_98 [AT] foxmail [DOT] com</span> -->
E-mail: <span>xueyaozhang [AT] link.cuhk.edu.cn</span>
<!-- or <span class="underline">[email protected]</span> -->
</p>
<p align=left>
<a href="resume/resume_EN.pdf">Curriculum Vitae</a>
/
<a href="https://scholar.google.com/citations?user=lf1udBcAAAAJ&hl=en">Google
Scholar</a> /
<a href="https://dblp.org/pid/237/9484.html">DBLP</a>
/
<a href="https://github.com/RMSnow"> GitHub </a> /
<a href="https://www.zhihu.com/people/zhang-xue-yao-84">Zhihu</a>
<!-- / -->
<!-- <a href="https://weibo.com/u/5831484448">Weibo</a> -->
</p>
</td>
</tr>
</table>
<!-- Intro End -->
<!-- About Me -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="12">
<tr>
<td>
<heading>About me</heading>
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellpadding="12" style="table-layout:fixed;">
<tr>
<td valign="center">
<p>
I'm a third-year Ph.D. student at the Chinese University of Hong Kong, Shenzhen (CUHK-Shenzhen),
supervised by
Professor <a href="http://www.drwuz.com/">Zhizheng Wu</a>. I'm a co-founder of <a
href="https://github.com/open-mmlab/Amphion"><i>Amphion</i></a> <img
src="https://img.shields.io/github/stars/open-mmlab/Amphion?color=success&logo=github">, which is an
open-source toolkit for Audio, Music, and Speech Generation.
</p>
<p> Before
CUHK-Shenzhen, I received my master's degree (2019-2022) at the Institute of Computing Technology
Chinese Academy of Sciences (ICT, CAS), researching <i>Fake
News Detection</i> and <i> Fact Checking</i>.
</p>
<p>
My research interests include:
<ul>
<li>Applications: <b>Speech Generation</b>, <b>AI Music & AI for Music</b>, <b>AI for Social Good</b>
</li>
<li>Technologies: <b>Generative Model</b>, <b>Representation Learning</b></li>
</ul>
</p>
</td>
</tr>
</table>
<!-- About me End -->
<!-- News Begin -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="12">
<tr>
<td>
<heading>Milestones</heading>
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellpadding="12" style="table-layout:fixed;">
<colgroup>
<col span="1" style="width: 23%;">
<col span="1" style="width: 77%;">
</colgroup>
<tr>
<td valign="center">
2025/01
</td>
<td valign="center">
<a href="https://openreview.net/forum?id=anQDiQZhDP">My first paper</a> about speech generation got
accepted
by ICLR 2025.
</td>
</tr>
<tr>
<td valign="center">
2024/08
</td>
<td valign="center">
<a href="https://arxiv.org/abs/2310.11160">My first paper</a> about singing voice processing got accepted
by IEEE SLT 2024.
</td>
</tr>
<tr>
<td valign="center">
2024/05
</td>
<td valign="center">
I performed research at Meta (California, USA) as an intern during summer 2024.
</td>
</tr>
<tr>
<td valign="center">
2023/12
</td>
<td valign="center">
My first attempt at leading the development of a
large-scale open-source project, <a href="https://github.com/open-mmlab/Amphion">Amphion</a>.
</td>
</tr>
<tr>
<td valign="center">
2023/04
</td>
<td valign="center">
I was admitted by Tencent Rhino-Bird Talent Program 腾讯犀牛鸟精英人才计划 (Top 50+ of China).
</td>
</tr>
<tr>
<td valign="center">
2022/09
</td>
<td valign="center">
I entered the Chinese University of Hong Kong (Shenzhen) as a Ph.D. student.
</td>
</tr>
<tr>
<td valign="center">
2022/06
</td>
<td valign="center">
<a href="https://doi.org/10.1145/3503161.3548084">My first paper</a> about music generation got accepted
by ACM MM 2022.
</td>
</tr>
<tr>
<td valign="center">
2021/11
</td>
<td valign="center">
I got the National Graduate Scholarship 2021 (funded by Ministry of Education of China).
</td>
</tr>
<tr>
<td valign="center">
2021/01
</td>
<td valign="center">
<a href="https://dl.acm.org/doi/pdf/10.1145/3442381.3450004">My first paper</a> about fake news detection
got accepted by WWW 2021.
</td>
</tr>
<tr>
<td valign="center">
2020/01
</td>
<td valign="center">
I got the third place at Campus Singer Competition, University of Chinese Academy of Sciences.
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellpadding="12" style="table-layout:fixed;">
<tr>
<td>
<div style="background-color: #F3F7FC!important;padding: 14px;">
<p>
<font size="+1"><b> ✍ Call for Cooperations</b></font>
</p>
<p>
<a href="https://drwuz.com/team/">Our team</a> is broadly interested in
<b>Audio/Speech processing and synthesis</b>, <b>DeepFake detection</b>, and <b>AI + Music</b>.
We publish our work in the top conferences and journals, and deploy research output to products by
collaborating with industry. Our team has open positions for <i>Postdocs</i>, <i>PhD students</i>,
<i>Research Assistants</i>, and <i>visiting research students/researchers</i> (more information can be
seen <a href="https://zhuanlan.zhihu.com/p/565296478">here</a>). If you are willing to
join
our team, feel free to contact <b>wuzhizheng [AT] cuhk.edu.cn</b>. Besides, you are always welcome to
discuss any ideas with me.
</p>
</div>
</td>
</tr>
</table>
<!-- News End -->
<!-- Publications Begin -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="12">
<tr>
<td>
<heading>Representative Works</heading>
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellpadding="12" style="table-layout:fixed;">
<td>
<subheading>Speech, Music, and Audio Generation</subheading>
</td>
<tr>
<td valign="center">
<span class="tag">ICLR 2025</span>
<papertitle>
Vevo: Controllable Zero-Shot Voice Imitation with Self-Supervised Disentanglement
</papertitle>
<br>
<span class="underline">Xueyao Zhang</span>, <a class="black"
href="https://scholar.google.com/citations?user=3mJXfe8AAAAJ&hl=en">Xiaohui Zhang</a>, <a class="black"
href="https://scholar.google.com/citations?user=Fhg8dSwAAAAJ&hl=en&oi=ao">Kainan Peng</a>,
<a class="black" href="https://scholar.google.com/citations?user=gPGVGTkAAAAJ&hl=en&oi=sra">Zhenyu
Tang</a>,
<a class="black" href="https://scholar.google.com/citations?user=8t3Ex0QAAAAJ&hl=en&oi=ao">Vimal
Manohar</a>,
Yingru Liu, Jeff Hwang, Dangna Li, Yuhao Wang, Julian Chan, Yuan Huang, <a class="black"
href="https://drwuz.com/">Zhizheng
Wu</a>, <a class="black"
href="https://scholar.google.com/citations?user=_vryxeMAAAAJ&hl=en&oi=ao">Mingbo Ma</a>
<br>
<!-- <i>Proceedings of the IEEE Spoken Language Technology Workshop 2024</i> -->
<!-- <br> -->
<a href="https://openreview.net/forum?id=anQDiQZhDP">Paper</a> /
<a href="data/Vevo/vevo-poster.pdf">Poster</a> /
<a href="https://github.com/open-mmlab/Amphion/blob/main/models/vc/vevo/README.md">Code</a> /
<a href="https://huggingface.co/amphion/Vevo">HuggingFace</a> /
<a href="https://versavoice.github.io/">Demo</a>
<br>
<span class="tldr">TL;DR: We propose a versatile zero-shot voice imitation framework, with controllable
timbre and style.
</span>
</td>
</tr>
<tr>
<td valign="center">
<span class="tag">SLT 2024</span>
<a href="https://github.com/open-mmlab/Amphion">
<img src="https://img.shields.io/github/stars/open-mmlab/Amphion?color=success&logo=github">
</a>
<papertitle>
Amphion: An Open-Source Audio, Music and Speech Generation Toolkit
</papertitle>
<br>
<span class="underline">Xueyao Zhang</span>*, <a class="black"
href="https://scholar.google.com/citations?user=KNqxVT0AAAAJ&hl=zh-CN">Liumeng Xue</a>*, <a
class="black" href="https://www.yichenggu.com/">Yicheng
Gu*</a>, <a class="black"
href="https://scholar.google.com/citations?user=60uamz4AAAAJ&hl=en&oi=sra">Yuancheng
Wang</a>*, Jiaqi Li*, Haorui He, Chaoren Wang, Songting Liu, Xi Chen, Junan Zhang, Zihao Fang, Haopeng
Chen, Tze Ying Tang,
Lexiao Zou, Mingxuan Wang, <a class="black" href="https://stevenhan1991.github.io/">Jun Han</a>, <a
class="black" href="https://chenkai.site/">Kai
Chen</a>, <a class="black" href="https://www.colips.org/~eleliha/">Haizhou Li</a>, <a class="black"
href="https://drwuz.com/">Zhizheng
Wu</a> (*: Equal Contribution)
<br>
<i>Proceedings of the IEEE Spoken Language Technology Workshop 2024</i>
<br>
<a href="https://arxiv.org/pdf/2312.09911.pdf">Preprint</a> /
<a href="https://github.com/open-mmlab/Amphion">GitHub</a> /
<!-- <a href="data/HAT/slides.pdf">Slides</a> / -->
<a href="https://huggingface.co/amphion">HuggingFace</a> /
<a href="https://openxlab.org.cn/usercenter/Amphion">OpenXLab</a>
<br>
<span class="tldr">TL;DR: We develop a unified audio generation open-source toolkit.
</span>
</td>
</tr>
<tr>
<td valign="center">
<span class="tag">SLT 2024</span>
<papertitle>Leveraging Diverse Semantic-based Audio Pretrained Models for Singing Voice Conversion
</papertitle>
<br>
<span class="underline">Xueyao Zhang</span>, Zihao Fang, <a class="black"
href="https://www.yichenggu.com/">Yicheng
Gu</a>, Haopeng Chen, Lexiao Zou, <a class="black"
href="https://scholar.google.com/citations?user=KNqxVT0AAAAJ&hl=zh-CN">Liumeng Xue</a>, <a class="black"
href="https://drwuz.com/">Zhizheng Wu</a>
<br>
<i>Proceedings of the IEEE Spoken Language Technology Workshop 2024</i>
<br>
<a href="https://arxiv.org/pdf/2310.11160.pdf">Preprint</a> /
<a href="https://github.com/open-mmlab/Amphion/tree/main/egs/svc/MultipleContentsSVC">Code</a> /
<a href="https://diversesemanticsvc.github.io/">Demo</a> /
<a href="https://huggingface.co/amphion/singing_voice_conversion">Pretrained Model</a> /
<a href="https://huggingface.co/spaces/amphion/singing_voice_conversion">HuggingFace Space</a> /
<a href="https://openxlab.org.cn/apps/detail/Amphion/singing_voice_conversion">OpenXLab App</a>
<br>
<span class="tldr">TL;DR: We propose to utilize multiple content features for singing voice conversion.
</span>
</td>
</tr>
<tr>
<td valign="center">
<span class="tag">MM 2022</span>
<papertitle>Structure-Enhanced Pop Music Generation via Harmony-Aware Learning</papertitle>
<br>
<span class="underline">Xueyao Zhang</span>, <a class="black"
href="https://scholar.google.com/citations?hl=zh-CN&user=vH9YLsAAAAAJ">Jinchao Zhang</a>, Yao Qiu, Li
Wang, Jie Zhou
<br>
<i>Proceedings of the ACM International Conference on Multimedia 2022</i>
<br>
<a href="https://doi.org/10.1145/3503161.3548084">PDF</a> /
<a href="https://arxiv.org/pdf/2109.06441.pdf">Preprint</a> /
<a href="https://github.com/RMSnow/HAT">Code</a> /
<a href="data/HAT/slides.pdf">Slides</a> /
<a href="data/HAT/demo.html">Demo</a>
<br>
<span class="tldr">TL;DR: We propose to learn harmony for generating form- and texture- enhanced pop
music. </span>
</td>
</tr>
<td>
<subheading>Fake News Detection</subheading>
</td>
<tr>
<td valign="center">
<span class="tag">WWW 2021</span>
<span class="wow">> 300 citations</span>
<papertitle>Mining Dual Emotion for Fake News Detection</papertitle>
<!-- <span style="color: rgb(180, 16, 44);">(over 300 citations)</span> -->
<br>
<span class="underline">Xueyao Zhang</span>, <a class="black"
href="https://scholar.google.com/citations?user=fSBdNg0AAAAJ">Juan Cao</a>, <a class="black"
href="http://lixirong.net/">Xirong Li</a>, <a class="black" href="https://sheng-qiang.github.io/">Qiang
Sheng</a>, Lei Zhong, and <a class="black" href="http://www.cs.iit.edu/~kshu/">Kai Shu</a>
<br>
<i>Proceedings of the Web Conference 2021</i>
<br>
<a href="https://dl.acm.org/doi/pdf/10.1145/3442381.3450004">PDF</a> /
<a href="https://github.com/RMSnow/WWW2021">Code</a> /
<a href="data/DualEmotion/www2021-dual-emotion-slides.pdf">Slides</a> /
<a href="data/DualEmotion/www2021-dual-emotion-video.mp4">Video</a> /
<a href="https://www.bilibili.com/video/BV13o4y1m7c3">Chinese Video</a>
<br>
<span class="tldr">TL;DR: We leverage both publisher emotion and social emotion for fake news detection.
</span>
</td>
</tr>
<tr>
<td valign="center">
<span class="tag">CIKM 2021</span>
<papertitle>Integrating Pattern- and Fact-based Fake News Detection via Model Preference Learning
</papertitle>
<br>
<a class="black" href="https://sheng-qiang.github.io/">Qiang Sheng</a>*, <span class="underline">Xueyao
Zhang</span>*, <a class="black" href="https://scholar.google.com/citations?user=fSBdNg0AAAAJ">Juan
Cao</a>, and Lei Zhong (*: Equal Contribution)
<br>
<i>Proceedings of the ACM International Conference on Information and Knowledge Management 2021</i>
<br>
<a href="https://dl.acm.org/doi/10.1145/3459637.3482440">PDF</a> /
<a href="data/PrefFEND/cikm2021-PrefFEND-poster.pdf">Poster</a> /
<a href="https://github.com/ICTMCG/Pref-FEND">Code</a> /
<a href="https://zhuanlan.zhihu.com/p/414464291">Chinese Blog</a>
<br>
<span class="tldr">TL;DR: We propose a graph-based model preference learning framework to separately
handle the pattern and fact indicators in fake news detection. </span>
</td>
</tr>
<tr>
<td valign="center">
<span class="tag">ACL 2022</span>
<papertitle>Zoom Out and Observe: News Environment Perception for Fake News Detection</papertitle>
<br>
<a class="black" href="https://sheng-qiang.github.io/">Qiang Sheng</a>, <a class="black"
href="https://scholar.google.com/citations?user=fSBdNg0AAAAJ">Juan Cao</a>, <span
class="underline">Xueyao Zhang</span>, <a class="black"
href="https://scholar.google.com/citations?user=PfmGvVQAAAAJ">Rundong Li</a>, <a class="black"
href="https://scholar.google.com/citations?user=hGZwK0cAAAAJ">Danding Wang</a>, and <a class="black"
href="https://easezyc.github.io/">Yongchun Zhu</a>
<br>
<i>Proceedings of the Annual Meeting of the Association for Computational Linguistics 2022</i>
<br>
<a href="https://aclanthology.org/2022.acl-long.311.pdf">PDF</a> /
<a href="https://sheng-qiang.github.io/data/NEP-Poster.pdf">Poster</a>
/
<a href="https://github.com/ICTMCG/News-Environment-Perception">Code</a>
/
<a href="https://www.bilibili.com/video/BV1MS4y1e7PY">Chinese Video</a>
/
<a href="https://mp.weixin.qq.com/s/aTFeuCYIpSoazeRi52jqew">Chinese Blog</a>
<br>
<span class="tldr">TL;DR: For the first time, we propose to perceive signals from the news environment for
fake news detection. </span>
</td>
</tr>
<td>
👉 <a
href="https://scholar.google.com/citations?user=lf1udBcAAAAJ&hl=en">Full Publications</a>
</td>
</table>
<!-- Publications End -->
<!-- Presentation Begin -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="12">
<tr>
<td>
<heading>Presentations and Talks</heading>
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellpadding="12" style="table-layout:fixed;">
<colgroup>
<col span="1" style="width: 15%;">
<col span="1" style="width: 85%;">
</colgroup>
<tr>
<td valign="center">
2024/12
</td>
<td valign="center">
I was honored to be invited to give a talk,
<b>A Comprehensive Guide to Amphion's Singing Voice Conversion</b> <a
href="data/presentations/20241202_macau_amphion_svc_tutorial.pdf">[Slides]</a>, at Singing Voice
Deepfake Detection (SVDD) Workshop @ IEEE SLT 2024 <a
href="https://svddchallenge.org/challenges/special_session_ieee_slt.html">[Website]</a>.
</td>
</tr>
<tr>
<td valign="center">
2024/04
</td>
<td valign="center">
I was honored to be invited to give a guest lecture, <b>Introduction of Sound, Speech, and Singing
Voice</b> <a href="data/presentations/20240424_intro_speech.pdf">[Slides]</a>, at Professor <a
href="https://myweb.cuhk.edu.cn/huangkanyuan"> Kanyuan Huang</a>'s course at CUHK-Shenzhen (2024/4/24).
</td>
</tr>
<tr>
<td valign="center">
2024/02
</td>
<td valign="center">
I was honored to be invited to give talks, <b>A Comprehensive Guide to Amphion's Singing Voice
Conversion (Amphion的歌声转换指南)</b>
<a href="data/presentations/202402_amphion_svc_tutorial.pdf">[Slides]</a>, at
<ul>
<li>Professor <a href="https://www.linkedin.com/in/kelvin-qin-166b5021">Yong Qin</a>'s Lab at Nankai
University (2024/01/04),</li>
<li>Speech Home 语音之家 (2024/01/12),</li>
<li>BAAI Talk 智源社区 (2024/01/16) <a href="https://event.baai.ac.cn/activities/751">[Recording]</a>,</li>
<li>TechBeat 将门创投 (2024/02/07) <a href="https://www.techbeat.net/talk-info?id=848">[Recording]</a>,
</li>
<li>Professor <a href="https://liliu-avril.github.io/"> Li Liu</a>'s course at the Hong Kong University
of
Science and Technology, Guangzhou (2024/2/27).</li>
</ul>
</td>
</tr>
<tr>
<td valign="center">
2023/01
</td>
<td valign="center">
I drafted a singing voice conversion tutorial at <a href="https://drwuz.com/CSC3160/index.html">CSC3160
(CUHK-Shenzhen)</a>. <a href="./data/SVC/tutorial.html">[Blog]</a>
</td>
</tr>
<tr>
<td valign="center">
2022/10
</td>
<td valign="center">
I got the <i>Best Presentation Award</i> at Huawei-CUHKSZ NLP/Speech Workshop by presenting my research
work,<br>
<b>Structure-Enhanced Pop Music Generation via Harmony-Aware Learning.</b>
<a href="data/HAT/slides.pdf">[Slides]</a>
<a href="data/presentations/20221015_award.pdf">[Award]</a>
</td>
</tr>
<tr>
<td valign="center">
2022/06
</td>
<td valign="center">
I gave a talk at two labs of ICT as an outstanding graduate, <br>
<b>如何做有新意的研究——以“做问题”的视角. </b>
<a href="https://mp.weixin.qq.com/s/Mfj4EITi9L99odmuWXGfDQ">[Chinese Blog]</a>
<a href="data/presentations/20220617_novel_research.pdf">[Chinese Slides]</a>
<br><br>
The talk was also presented at SDS Early Career Colloquium of CUHK-Shenzhen, <br>
<b>Towards a novel research in a problem-driven way. </b>
<a href="data/presentations/20221014_novel_research.pdf">[Slides]</a>
</td>
</tr>
<tr>
<td valign="center">
2022/05
</td>
<td valign="center">
My master's theis defense, <br>
<b>Research on Fake News Detection Based on Emotion (基于情感的虚假新闻检测方法研究). </b>
<a href="data/presentations/20220525_master_thesis_defense.pdf">[Chinese Slides]</a>
</td>
</tr>
<tr>
<td valign="center">
2022/01
</td>
<td valign="center">
I participated to release the theme song of WeChat Open Class 2022
as a co-producer, <a href="https://y.qq.com/n/ryqq/songDetail/000xeNJ53orPG2">Ru
Wei(入微)</a>, which was composed by AI and sung by humans.
</td>
</tr>
<tr>
<td valign="center">
2021/05
</td>
<td valign="center">
I gave a talk about <i>composition</i> at Pattern Recognition Center of Wechat AI, <br>
<b>How to create a pop song? (一首流行歌是如何创作的). </b>
<a href="data/presentations/wcpr-pop-music.pdf">[Chinese Slides]</a>
</td>
</tr>
</table>
<!-- Presentation End -->
<!-- Internship Begin -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="12">
<tr>
<td>
<heading>Professional Experiences</heading>
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellpadding="12" style="table-layout:fixed;">
<colgroup>
<col span="1" style="width: 23%;">
<col span="1" style="width: 77%;">
</colgroup>
</table>
<table width="100%" align="center" border="0" cellpadding="12" style="table-layout:fixed;">
<colgroup>
<col span="1" style="width: 23%;">
<col span="1" style="width: 77%;">
</colgroup>
<tr>
<td valign="center">
<b>Meta Platforms, Inc</b>
</td>
<td>
Research Scientist Intern, Generative AI, @Menlo Park, California, USA (2024/05 ~ 2024/09)
<br>
<span class="tldr"><i>#Speech Generation#</i></span>
<br>
</td>
</tr>
<tr>
<td valign="center">
<b>WeChat, Tencent</b>
</td>
<td>
Research Intern, Pattern Recognition Center of Wechat AI, @Beijing, China (2021/04 ~ 2022/02, 2023/06 ~
2024/05)
<br>
<span class="tldr"><i>#Music Generation#</i>, <i>#Singing Voice Conversion#</i></span>
<br>
<!-- <ul>
<li> 2022/01 I participated to release the theme song of WeChat Open Class 2022
as a co-producer, <a href="https://y.qq.com/n/ryqq/songDetail/000xeNJ53orPG2">Ru
Wei(入微)</a>, which was composed by AI and sung by humans.</li>
<li>2023/06 I was admitted by Tencent Rhino-Bird Talent Program 腾讯犀牛鸟精英人才计划
(Top 50+ of China), supervised by <a
href="https://scholar.google.com/citations?user=vH9YLsAAAAAJ&hl=en">Jinchao Zhang</a>.</li>
</ul> -->
</td>
</tr>
</table>
<!-- Internship End -->
<!-- Services Begin -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="12">
<tr>
<td>
<heading>Services</heading>
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellpadding="12" style="table-layout:fixed;">
<colgroup>
<col span="1" style="width: 23%;">
<col span="1" style="width: 77%;">
</colgroup>
</table>
<table width="100%" align="center" border="0" cellpadding="12" style="table-layout:fixed;">
<colgroup>
<col span="1" style="width: 23%;">
<col span="1" style="width: 77%;">
</colgroup>
<tr>
<td valign="center">
Reviewer
</td>
<td>
Conferences:
<ul>
<li>ACL Rolling Review</li>
<li>CSCW 2021</li>
<li>EMNLP 2021</li>
<li>ICASSP 2023 <a href="data/presentations/2023_icassp_reviewer.pdf">(valuable reviewer)</a>, 2024,
2025
<li>ICLR 2025</li>
<li>ICMC 2023</li>
</li>
<li>MM 2023, 2024</li>
<li>NCMMSC 2023, 2024</li>
</ul>
Journals:
<ul>
<li>EURASIP Journal on Audio, Speech, and Music Processing</li>
<li>IEEE Signal Processing Letters (SPL)</li>
<li>IEEE Transactions on Audio, Speech and Language Processing (TASLP)</li>
<li>IEEE Transactions on Computational Social Systems (TCSS)</li>
<li>Information Processing and Management (IP&M)</li>
<li>Journal of Chinese Information Processing (中文信息学报)</li>
</ul>
</td>
</tr>
<tr>
<td valign="center">
Student Volunteer
</td>
<td>
<li>IEEE Spoken Language Technology Workshop 2024</li>
</td>
</tr>
<tr>
<td valign="center">
Teaching Assistant
</td>
<td>
<li>2017 Fall, Object-Oriented Programming (JAVA), Wuhan University</li>
<li>2022 Fall, CSC3100 Data Structures, CUHK-Shenzhen</li>
<li>2023 Spring, CSC3160/MDS6002 <a href="https://drwuz.com/CSC3160/index.html" ,>Fundamentals
of Speech and Language Processing</a>, CUHK-Shenzhen. I got the <a
href="data/presentations/20230521_ta_award.pdf">Best Teaching Assistant Award</a>.</li>
<li>2023 Fall, CSC4130 <a href="https://stevenhan1991.github.io/CSC4130/index.html">Introduction to
Human-Computer Interaction</a>, CUHK-Shenzhen</li>
<li>2024 Spring, CSC4050 <a href="https://drwuz.com/csc4050/">Computing Capstone</a>, CUHK-Shenzhen </li>
<li>2024 Fall, CSC1001 Introduction to Computer Science: Programming Methodology, CUHK-Shenzhen</li>
</td>
</tr>
</table>
<!-- Services End -->
<!-- Education Begin -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="12">
<tr>
<td>
<heading>Education</heading>
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellpadding="12" style="table-layout:fixed;">
<colgroup>
<col span="1" style="width: 23%;">
<col span="1" style="width: 77%;">
</colgroup>
<tr>
<td valign="center">
2022-
</td>
<td>
Ph.D. student in Data Science, supervised by
Professor <a href="http://www.drwuz.com/">Zhizheng Wu</a>,
<br>
<span>School of Data Science,
<br>
The Chinese University of Hong Kong, Shenzhen</span>
</td>
</tr>
<tr>
<td valign="center">
2019-2022
</td>
<td>
Master in Computer Application Technology (Research-based), supervised by Professor <a
href="https://scholar.google.com/citations?user=fSBdNg0AAAAJ&hl=en">Juan Cao</a>, working closely with
Professor <a href="https://sheng-qiang.github.io/">Qiang Sheng</a>,
<br>
<span>Institute of Computing Technology Chinese Academy of
Sciences,<br> University of Chinese
Academy of Sciences</span>
</td>
</tr>
<tr>
<td valign="center">
2015-2019
</td>
<td>
B.Eng. in Software Engineering,
<br>
<span>School of Computer Science,
<br>
Wuhan University</span>
</td>
</tr>
<tr>
<td valign="center">
2012-2015
</td>
<td>
<span>Jiyuan No.1 Middle School of Henan</span>
</td>
</tr>
</table>
<!-- Education End -->
<!-- Awards Begin -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="12">
<tr>
<td>
<heading>Honors and Awards</heading>
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellpadding="12" style="table-layout:fixed;">
<colgroup>
<col span="1" style="width: 23%;">
<col span="1" style="width: 77%;">
</colgroup>
<tr>
<td valign="center">
2023
</td>
<td>
Admitted by Tencent Rhino-Bird Talent Program 腾讯犀牛鸟精英人才计划
(Top 50+ of China)
</td>
</tr>
<tr>
<td valign="center">
2022
</td>
<td>
Outstanding Graduate, University of Chinese Academy of Sciences & Beijing Municipal Education Commission
(Top 5%)
</td>
</tr>
<tr>
<td valign="center">
2021
</td>
<td>
National Graduate Scholarship, Ministry of Education of China (Top 0.2%)
</td>
</tr>
<tr>
<td valign="center">
2020
</td>
<td>
Third place at Campus Singer Competition, University of Chinese Academy of Sciences (Top 3 among over
50,000)
</td>
</tr>
<tr>
<td valign="center">
2019
</td>
<td>
Outstanding Graduate, Wuhan University (Top 10%)
</td>
</tr>
<tr>
<td valign="center">
2019
</td>
<td>
Excellent Bachelor Thesis, Wuhan University (Top 5%)
</td>
</tr>
<tr>
<td valign="center">
2016
</td>
<td>
National Undergraduate Scholarship, Ministry of Education of China (Top 0.2%)
</td>
</tr>
<tr>
<td valign="center">
2014
</td>
<td>
First price in Chinese High School Mathematics League (Top 50 in Henan Province)
</td>
</tr>
</table>
<!-- Awards End -->
<!-- Blog Begin -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="12">
<tr>
<td>
<heading>Blogs</heading>
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellpadding="12" style="table-layout:fixed;">
<colgroup>
<col span="1" style="width: 23%;">
<col span="1" style="width: 77%;">
</colgroup>
<tr>
<td valign="center">
<b>#年终总结#</b>
</td>
<td>
2023 <a href="https://mp.weixin.qq.com/s/QMKCvh5NCSAI_K4W4M-Ohg">《2023与兔年:开端、挑战与不经意间》</a>
<br>
2022 <a href="https://mp.weixin.qq.com/s/4UL5uDBJtC2cF-dYdv7ghg">《2022年:伤痛、时间与起点》</a>
<br>
2021 <a href="https://mp.weixin.qq.com/s/CGncuXb09ER4vy3gCgrBAw">《2021年:收获、决定与困惑