Audio-to-Audio
speechbrain
English
Source Separation
Speech Separation
Audio Source Separation
WSJ02Mix
SepFormer
Transformer
audio-source-separation
Instructions to use speechbrain/sepformer-wsj02mix with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- speechbrain
How to use speechbrain/sepformer-wsj02mix with speechbrain:
from speechbrain.pretrained import SepformerSeparation model = SepformerSeparation.from_hparams( "speechbrain/sepformer-wsj02mix" ) model.separate_file("file.wav") - Notebooks
- Google Colab
- Kaggle
Commit ·
6ac2d26
1
Parent(s): 9bc5f35
Update README.md
Browse files
README.md
CHANGED
|
@@ -22,6 +22,9 @@ This repository provides all the necessary tools to perform source separation wi
|
|
| 22 |
model, implemented with SpeechBrain, and pretrained on WSJ0-2Mix dataset. For a better experience we encourage you to learn more about
|
| 23 |
[SpeechBrain](https://speechbrain.github.io). The given model performance is 22.5 dB on the test set of WSJ0-2Mix dataset.
|
| 24 |
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
|
| 27 |
## Install SpeechBrain
|
|
@@ -65,4 +68,14 @@ torchaudio.save("source2hat.wav", est_sources[:, :, 1].detach().cpu(), 8000)
|
|
| 65 |
journal = {GitHub repository},
|
| 66 |
howpublished = {\url{https://github.com/speechbrain/speechbrain}},
|
| 67 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
```
|
|
|
|
| 22 |
model, implemented with SpeechBrain, and pretrained on WSJ0-2Mix dataset. For a better experience we encourage you to learn more about
|
| 23 |
[SpeechBrain](https://speechbrain.github.io). The given model performance is 22.5 dB on the test set of WSJ0-2Mix dataset.
|
| 24 |
|
| 25 |
+
| Release | Test-Set SI-SNR | Test-Set SDR |
|
| 26 |
+
|:-------------:|:--------------:|:--------------:|
|
| 27 |
+
| 09-03-21 | 22.5 | 22.7 |
|
| 28 |
|
| 29 |
|
| 30 |
## Install SpeechBrain
|
|
|
|
| 68 |
journal = {GitHub repository},
|
| 69 |
howpublished = {\url{https://github.com/speechbrain/speechbrain}},
|
| 70 |
}
|
| 71 |
+
```
|
| 72 |
+
|
| 73 |
+
#### Referencing SepFormer
|
| 74 |
+
```
|
| 75 |
+
@inproceedings{subakan2021attention,
|
| 76 |
+
title={Attention is All You Need in Speech Separation},
|
| 77 |
+
author={Cem Subakan and Mirco Ravanelli and Samuele Cornell and Mirko Bronzi and Jianyuan Zhong},
|
| 78 |
+
year={2021},
|
| 79 |
+
booktitle={ICASSP 2021}
|
| 80 |
+
}
|
| 81 |
```
|