JusperLee commited on
Commit
4fc5428
1 Parent(s): 3ab3f9b

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - audio
7
+ - audio-source-separation
8
+ pipeline_tag: audio-to-audio
9
+ ---
10
+ # An efficient encoder-decoder architecture with top-down attention for speech separation
11
+
12
+ [![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/an-efficient-encoder-decoder-architecture/speech-separation-on-libri2mix)](https://paperswithcode.com/sota/speech-separation-on-libri2mix?p=an-efficient-encoder-decoder-architecture) [![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/an-efficient-encoder-decoder-architecture/speech-separation-on-wham)](https://paperswithcode.com/sota/speech-separation-on-wham?p=an-efficient-encoder-decoder-architecture)
13
+
14
+ This repository is the official implementation of [An efficient encoder-decoder architecture with top-down attention for speech separation](https://cslikai.cn/project/TDANet) [Paper link](https://openreview.net/pdf?id=fzberKYWKsI).
15
+
16
+ ```
17
+ @inproceedings{tdanet2023iclr,
18
+ title={An efficient encoder-decoder architecture with top-down attention for speech separation},
19
+ author={Li, Kai and Yang, Runxuan and Hu, Xiaolin},
20
+ booktitle={ICLR},
21
+ year={2023}
22
+ }
23
+ ```
24
+
25
+ ## Training Dataset
26
+
27
+ - LRS2-2Mix
28
+
29
+ ## Config
30
+
31
+ ```yaml
32
+ enc_kernel_size: 2
33
+ in_channels: 512
34
+ num_blocks: 16
35
+ num_sources: 2
36
+ out_channels: 128
37
+ upsampling_depth: 5
38
+ ```