-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1773 lines (1707 loc) · 90.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="generator" content="Hugo 0.66.0" />
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- 引入Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon" />
<!-- 引入jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- 引入Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/styles/github.min.css">
<link rel="stylesheet" href="../css/normalize.css">
<link rel="stylesheet" href="../css/skeleton.css">
<link rel="stylesheet" href="../css/custom.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="alternate" href="index.xml" type="application/rss+xml" title="Speech Research">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/fork-awesome.min.css" integrity="sha256-XoaMnoYC5TH6/+ihMEnospgm0J1PM/nioxbOUdnM8HY=" crossorigin="anonymous">
<style>
body {
font-size: 20px; /* 设置默认字体大小 */
}
h1{ font-size:30px;
color:black"
}
thead{
border-top: 1px solid #ccc;
}
.table td{
border: none
}
.no-border {
border: none;
}
th{
font-weight: lighter;
}
.table-container {
overflow-x: auto;
/* width:120%; */
width: 100%;
/* margin: 20px; */
}
.table-container2 {
table-layout: fixed;
word-break: break-word;
width: 90%; /* 适当调整宽度 */
margin: 0 auto; /* 居中对齐 */
}
.divider {
border-top: 2px solid #ccc; /* 灰色边框 */
margin: 20px 0; /* 适当调整上下边距 */
}
.audio-container {
display: flex;
justify-content: center;
align-items: center;
border: none
}
td{
text-align: justify;
color:black;
font-family: georgian;
}
font{ text-align: justify;
color:black;
font-family: georgian;
}
video {
width: 640px; /* 设置视频宽度 */
height: 360px; /* 设置视频高度 */
}
@media(min-width:1200px){
.table-container {
overflow-x: auto;
width:100%;
margin: 0 auto;
}
}
@media (max-width: 600px) {
/* 在手机屏幕上应用以下样式 */
body {
font-size: 14px; /* 缩小字体大小 */
}
h1 {
font-size: 22px; /* 缩小标题字体大小 */
}
h2 {
font-size: 18px; /* 缩小标题字体大小 */
}
nav ul li {
display: block; /* 列表项显示为块级元素,方便手机点击 */
}
.video-container {
padding-bottom: 75%; /* 4:3宽高比,调整此值适配其他比例的视频 */
}
video {
width: 400px; /* 设置视频宽度 */
/* height: 360px; 设置视频高度 */
}
}
</style>
<title > FlowSep: Language-Queried Sound Separation with Rectified Flow Matching </title>
</head>
<body rightmargin="150" leftmargin="150" topmargin="100" bottommargin="100" line-height:160%>
<!-- <font size="5"> -->
<div class="container">
<header role="banner">
</header>
<main role="main">
<article itemscope itemtype="https://schema.org/BlogPosting">
<br></br>
<h1 itemprop="headline" align="center">
<font style="font-size:40px; color:black;">FlowSep: Language-Queried Sound Separation with Rectified Flow Matching
</font>
</h1>
<br></br>
<p style="line-height:1" align="center"><b>
<font style="color: #0056b3;"><a href="https://scholar.google.com/citations?user=vFk3_VYAAAAJ&hl=en">Yi Yuan</a>,
<a href="https://liuxubo717.github.io/">Xubo Liu</a>,
<a href="https://haoheliu.github.io/">Haohe Liu</a>,
<a href="https://www.surrey.ac.uk/people/mark-plumbley">Mark D. Plumbley</a>,
<a href="http://personal.ee.surrey.ac.uk/Personal/W.Wang/">Wenwu Wang</a>
</font>
</b></p>
<p style="line-height:0.6" align="center">
<font color="061E61">CVSSP, University of Surrey, Guildford, UK</font>
</p>
<!-- <p style="line-height:0.6" align="center">
<font color="061E61"> <sup>3</sup>The Chinese University of Hong Kong</font>
</p> -->
<!-- <p style="line-height:1" align="center">
<font color="061E61"><sup>📮</sup>Corresponding author</font>
</p> -->
<br>
<table align=center width=500px>
<center>
<span class="link-block">
<a href="https://arxiv.org/abs/2409.07614"
class="external-link button is-normal is-rounded is-dark">
<span class="icon" style="color: black;">
<i class="fa fa-file-text" aria-hidden="true"></i>
</span>
<span style="font-size:22px; color: black; font-family: georgian;"><b>Paper</b></span>
</a>
</span>
<!-- Code Link. -->
<span class="link-block">
<a href="https://github.com/Audio-AGI/FlowSep"
class="external-link button is-normal is-rounded is-dark">
<span class="icon" style="color: black;">
<i class="fab fa-github"></i>
</span>
<span style="font-size:22px; color: black; font-family: georgian;"><b>Code</b></span>
</a>
</span>
</center>
</tr>
</table>
<br>
<br>
<section itemprop="entry-text">
<!-- <br>
<div class="container">
<center>
<p><a href="https://arxiv.org/abs/2301.12503">[Paper on ArXiv]</a> <a href="https://github.com/haoheliu/audioldm2">[Code on GitHub]</a> <a href="https://github.com/haoheliu/audioldm2">[HuggingFace Demo]</a> <a href="https://discord.gg/b64SEmdf">[Discord Community]</a> </p>
</center>
</div> -->
<table class="table" align="center" style="table-layout: fixed;word-break:break-word">
<th>
<h2 id="abstract">
<center>
<h1>Abstract</h1>
</center>
</h2>
<p style="text-align: justify; color:black;font-family: georgian;">
<font>
Language-queried audio source separation (LASS) aims to separate sound sources based on textual descriptions of the desired source.
Current state-of-the-art (SoTA) models primarily use discriminative approaches, such as time-frequency masking, to separate the target sounds while reducing interference from other sources.
However, these models may encounter challenges in separating overlapping soundtracks, degrading the overall performance in real-world scenarios.
Recently, the subjective quality of separated sound was enhanced successfully via generative approaches, such as diffusion-based models.
Rectified flow matching(RFM), a variant of the diffusion-based generative model that establishes linear connections between the distribution of data and noise, offers superior theoretical properties and simplicity,
but has not yet been explored in sound separation. In this work, we introduce FlowSep, a novel generative model based on RFM for LASS tasks.
Specifically, FlowSep learns linear flow trajectories from Gaussian noise to the target source features within a pre-trained latent space. During inference,
the mel-spectrogram can be reconstructed from the generated latent vector with the pre-trained variational autoencoder (VAE) decoder.
Trained on 1,680 hours of audio data, FlowSep outperforms SoTA models across multiple benchmarks, as evaluated on subjective and objective metrics.
Additionally, our results show that RFM surpasses diffusion-based approaches in both separation quality and inference efficiency, highlighting its strong potential for audio source separation tasks.
</font>
</p>
</th>
</table>
<!-- <hr class="divider"> -->
<table class="table" align="center" style="table-layout: fixed;word-break:break-word">
<th style="border: None;">
<h2 id="graph">
<center>
<h1>FlowSep</h1>
</center>
</h2>
<p style="text-align: justify; color:black;font-family: georgian;">
<font>
<!-- <strong> -->
FlowSep is an RFM-based generative model for text-based audio source separation. FlowSep comprises four main components: a T5 encoder for text embedding, a rectified flow matching
(RFM) generator for creating audio features within the latent space, a VAE decoder for reconstructing the mel-spectrogram, and a GAN vocoder to produce the final waveform.
<!-- </strong> -->
</font>
</p>
<figure>
<p align="center"><img src="FlowSep.png" width="90%" class="center" /></p>
<figcaption>
<p style="text-align: justify;">
<center>
<font color="061E61"><b>Figure 1:</b> Framework of FlowSep.
</center>
</p>
</figcaption>
</figure>
</th>
</table>
<br></br>
<h2 id="section_1">
<h3 style="color: black;">Demos on DCASE2024-Real</h3>
</h2>
<!-- <p>
<i>Text prompts are generated by the ChatGPT. Audio files are generated by AudioLDM 2-Full.</i>
</p> -->
<!-- demos for dacse2024-real -->
<div class = "table-container">
<table class="table" align="center" style="table-layout: fixed; word-break: break-word; width: 100%;">
<thead>
<tr>
<th scope="col" width="160px">
<center>
<font color="061E61">Text Query</font>
</center>
</th>
<th scope="col" width="250px">
<center>
<font color="061E61">Mixture</font>
</center>
</th>
<th scope="col" width="250px">
<center>
<font color="061E61">AudioSep</font>
</center>
</th>
<th scope="col" width="250px">
<center>
<font color="061E61">FlowSep</font>
</center>
</th>
</tr>
</thead>
<tbody>
<tr>
<tr>
<td style="text-align: center; vertical-align: middle;">
<center>
"the crowd is cheering and giving applause"
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/ground_truth/test-real-case-16.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/AudioSep/test-real-case-16.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/FlowSep/test-real-case-16.png" width="250"/>
</center>
</td>
</tr>
<td></td>
<td><center><audio controls="controls">
<source
src="demos/ground_truth/test-real-case-16.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center>
</td>
<td><center><audio controls="controls">
<source
src="demos/AudioSep/test-real-case-16.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
<td><center><audio controls="controls">
<source
src="demos/FlowSep/test-real-case-16.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
</tr>
<tr>
<tr>
<td style="text-align: center; vertical-align: middle;">
<center>
"someone is beating the drum continuously"
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/ground_truth/test-real-case-68.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/AudioSep/test-real-case-68.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/FlowSep/test-real-case-68.png" width="250"/>
</center>
</td>
</tr>
<td></td>
<td><center><audio controls="controls">
<source
src="demos/ground_truth/test-real-case-68.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center>
</td>
<td><center><audio controls="controls">
<source
src="demos/AudioSep/test-real-case-68.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
<td><center><audio controls="controls">
<source
src="demos/FlowSep/test-real-case-68.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
</tr>
</tbody>
</table>
<div id="accordion">
<div class="card">
<div class="card-header" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link" data-toggle="collapse" data-target="#collapseThree" aria-expanded="true" aria-controls="collapseThree">
👉 Click for more examples.
</button>
</h5>
</div>
<!-- more examples for dacse2024-real -->
<div id="collapseThree" class="collapse" aria-labelledby="headingOne" data-parent="#accordion">
<div class="card-body">
<table class="table" align="center" style="table-layout: fixed;word-break:break-word">
<thead>
<tr>
<th scope="col" width="160px">
<center>
<font color="061E61">Text Query</font>
</center>
</th>
<th scope="col" width="250px">
<center>
<font color="061E61">Mixture</font>
</center>
</th>
<th scope="col" width="250px">
<center>
<font color="061E61">AudioSep</font>
</center>
</th>
<th scope="col" width="250px">
<center>
<font color="061E61">FlowSep</font>
</center>
</th>
</tr>
</thead>
<tbody>
<tr>
<tr>
<td style="text-align: center; vertical-align: middle;">
<center>
"the woman is speaking in a distance"
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/ground_truth/test-real-case-12.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/AudioSep/test-real-case-12.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/FlowSep/test-real-case-12.png" width="250"/>
</center>
</td>
</tr>
<td></td>
<td><center><audio controls="controls">
<source
src="demos/ground_truth/test-real-case-12.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center>
</td>
<td><center><audio controls="controls">
<source
src="demos/AudioSep/test-real-case-12.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
<td><center><audio controls="controls">
<source
src="demos/FlowSep/test-real-case-12.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
</tr>
<tr>
<tr>
<td style="text-align: center; vertical-align: middle;">
<center>
"the woman is talking with others"
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/ground_truth/test-real-case-13.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/AudioSep/test-real-case-13.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/FlowSep/test-real-case-13.png" width="250"/>
</center>
</td>
</tr>
<td></td>
<td><center><audio controls="controls">
<source
src="demos/ground_truth/test-real-case-13.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center>
</td>
<td><center><audio controls="controls">
<source
src="demos/AudioSep/test-real-case-13.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
<td><center><audio controls="controls">
<source
src="demos/FlowSep/test-real-case-13.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
</tr>
<tr>
<tr>
<td style="text-align: center; vertical-align: middle;">
<center>
"a bunch of people are cheering in unison"
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/ground_truth/test-real-case-45.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/AudioSep/test-real-case-45.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/FlowSep/test-real-case-45.png" width="250"/>
</center>
</td>
</tr>
<td></td>
<td><center><audio controls="controls">
<source
src="demos/ground_truth/test-real-case-45.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center>
</td>
<td><center><audio controls="controls">
<source
src="demos/AudioSep/test-real-case-45.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
<td><center><audio controls="controls">
<source
src="demos/FlowSep/test-real-case-45.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
</tr>
<tr>
<tr>
<td style="text-align: center; vertical-align: middle;">
<center>
"the water is flowing and gurgling in the stream"
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/ground_truth/test-real-case-51.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/AudioSep/test-real-case-51.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/FlowSep/test-real-case-51.png" width="250"/>
</center>
</td>
</tr>
<td></td>
<td><center><audio controls="controls">
<source
src="demos/ground_truth/test-real-case-51.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center>
</td>
<td><center><audio controls="controls">
<source
src="demos/AudioSep/test-real-case-51.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
<td><center><audio controls="controls">
<source
src="demos/FlowSep/test-real-case-51.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
</tr>
<tr>
<tr>
<td style="text-align: center; vertical-align: middle;">
<center>
"a female is speaking and the cutlery is clanging"
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/ground_truth/test-real-case-75.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/AudioSep/test-real-case-75.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/FlowSep/test-real-case-75.png" width="250"/>
</center>
</td>
</tr>
<td></td>
<td><center><audio controls="controls">
<source
src="demos/ground_truth/test-real-case-75.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center>
</td>
<td><center><audio controls="controls">
<source
src="demos/AudioSep/test-real-case-75.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
<td><center><audio controls="controls">
<source
src="demos/FlowSep/test-real-case-75.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
</tr>
<tr>
<tr>
<td style="text-align: center; vertical-align: middle;">
<center>
"a cat is meowing amidst the faint sound of bird calls"
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/ground_truth/test-real-case-6.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/AudioSep/test-real-case-6.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/FlowSep/test-real-case-6.png" width="250"/>
</center>
</td>
</tr>
<td></td>
<td><center><audio controls="controls">
<source
src="demos/ground_truth/test-real-case-6.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center>
</td>
<td><center><audio controls="controls">
<source
src="demos/AudioSep/test-real-case-6.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
<td><center><audio controls="controls">
<source
src="demos/FlowSep/test-real-case-6.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
</tr>
<tr>
<tr>
<td style="text-align: center; vertical-align: middle;">
<center>
"in the forest, the birds are chirping incessantly"
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/ground_truth/test-real-case-10.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/AudioSep/test-real-case-10.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/FlowSep/test-real-case-10.png" width="250"/>
</center>
</td>
</tr>
<td></td>
<td><center><audio controls="controls">
<source
src="demos/ground_truth/test-real-case-10.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center>
</td>
<td><center><audio controls="controls">
<source
src="demos/AudioSep/test-real-case-10.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
<td><center><audio controls="controls">
<source
src="demos/FlowSep/test-real-case-10.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
</tr>
<tr>
<tr>
<td style="text-align: center; vertical-align: middle;">
<center>
"a car is passing by a noisy road"
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/ground_truth/test-real-case-11.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/AudioSep/test-real-case-11.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/FlowSep/test-real-case-11.png" width="250"/>
</center>
</td>
</tr>
<td></td>
<td><center><audio controls="controls">
<source
src="demos/ground_truth/test-real-case-11.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center>
</td>
<td><center><audio controls="controls">
<source
src="demos/AudioSep/test-real-case-11.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
<td><center><audio controls="controls">
<source
src="demos/FlowSep/test-real-case-11.wav"
autoplay />Your browser does not support the audio element.
</audio>
</center></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<br></br>
<h2 id="section_2">
<h3 style="color: black;">Demos on AudioCaps</h3>
</h2>
<!-- <p>
<i>Text prompts are generated by the ChatGPT. Audio files are generated by AudioLDM 2-Full.</i>
</p> -->
<!-- demos for AudioCaps -->
<div class = "table-container">
<table class="table" align="center" style="table-layout: fixed; word-break: break-word; width: 100%;">
<thead>
<tr>
<th scope="col" width="250px">
<center>
<font color="061E61">Text Query</font>
</center>
</th>
<th scope="col" width="250px">
<center>
<font color="061E61">Mixture</font>
</center>
</th>
<th scope="col" width="250px">
<center>
<font color="061E61">AudioSep</font>
</center>
</th>
<th scope="col" width="250px">
<center>
<font color="061E61">FlowSep</font>
</center>
</th>
<th scope="col" width="250px">
<center>
<font color="061E61">Ground Truth</font>
</center>
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: center; vertical-align: middle;">
"a cat meowing and young female speaking"
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/mix/Y_GI7meqlYZk.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/AudioSep/Y_GI7meqlYZk.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/FlowSep/Y_GI7meqlYZk.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/ground_truth/Y_GI7meqlYZk.png" width="250"/>
</center>
</td>
</tr>
<td></td>
<td><center><audio controls="controls">
<source
src="demos/mix/Y_GI7meqlYZk.wav"
autoplay />Your browser does not support the audio element.
</audio><center></td>
<td><center><audio controls="controls">
<source
src="demos/AudioSep/Y_GI7meqlYZk.wav"
autoplay />Your browser does not support the audio element.
</audio><center></td>
<td><center><audio controls="controls">
<source
src="demos/FlowSep/Y_GI7meqlYZk.wav"
autoplay />Your browser does not support the audio element.
</audio><center></td>
<td><center><audio controls="controls">
<source
src="demos/ground_truth/Y_GI7meqlYZk.wav"
autoplay />Your browser does not support the audio element.
</audio><center></td>
</tr>
<tr>
<td style="text-align: center; vertical-align: middle;">
"A group of people laughing followed by farting"
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/mix/Y_w2pA1VeB40.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/AudioSep/Y_w2pA1VeB40.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/FlowSep/Y_w2pA1VeB40.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/ground_truth/Y_w2pA1VeB40.png" width="250"/>
</center>
</td>
</tr>
<td></td>
<td><center><audio controls="controls">
<source
src="demos/mix/Y_w2pA1VeB40.wav"
autoplay />Your browser does not support the audio element.
</audio><center></td>
<td><center><audio controls="controls">
<source
src="demos/AudioSep/Y_w2pA1VeB40.wav"
autoplay />Your browser does not support the audio element.
</audio><center></td>
<td><center><audio controls="controls">
<source
src="demos/FlowSep/Y_w2pA1VeB40.wav"
autoplay />Your browser does not support the audio element.
</audio><center></td>
<td><center><audio controls="controls">
<source
src="demos/ground_truth/Y_w2pA1VeB40.wav"
autoplay />Your browser does not support the audio element.
</audio><center></td>
</tr>
</tbody>
</table>
<div id="accordion">
<div class="card">
<div class="card-header" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link" data-toggle="collapse" data-target="#collapseThree" aria-expanded="true" aria-controls="collapseThree">
👉 Click for more examples.
</button>
</h5>
</div>
<!-- more examples for audiocaps -->
<div id="collapseThree" class="collapse" aria-labelledby="headingOne" data-parent="#accordion">
<div class="card-body">
<table class="table" align="center" style="table-layout: fixed;word-break:break-word">
<thead>
<tr>
<th scope="col" width="250px">
<center>
<font color="061E61">Text Query</font>
</center>
</th>
<th scope="col" width="250px">
<center>
<font color="061E61">Mixture</font>
</center>
</th>
<th scope="col" width="250px">
<center>
<font color="061E61">AudioSep</font>
</center>
</th>
<th scope="col" width="250px">
<center>
<font color="061E61">FlowSep</font>
</center>
</th>
<th scope="col" width="250px">
<center>
<font color="061E61">Ground Truth</font>
</center>
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: center; vertical-align: middle;">
"a kid crying as a man and a woman talk followed by a car door opening then closing"
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/mix/Y_YS5uKWoB6g.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/AudioSep/Y_YS5uKWoB6g.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/FlowSep/Y_YS5uKWoB6g.png" width="250"/>
</center>
</td>
<td>
<center>
<img alt="fname" height="125" src="demo_plogs/ground_truth/Y_YS5uKWoB6g.png" width="250"/>
</center>
</td>
</tr>
<td></td>
<td><center><audio controls="controls">