speechbrain/REAL-M-sisnr-estimator-training

🤗 Hugging Face 来源apache-2.01.7 GBother✓ 28 个校验和今天更新
一条命令提交

在你的模型文件夹旁边运行它。它会制作种子、将文件与 Hugging Face 比对,然后提交。你只需开始做种,并粘贴你账户中的密钥。它只读取你的文件,绝不修改。如果愿意,可以先阅读脚本。

curl -fsSL https://pirateface.co/package.sh | bash -s -- --repo speechbrain/REAL-M-sisnr-estimator-training ./model-folder
需要做种者 →

SI-SNR Estimator introduced for the REAL-M dataset

This repository provides the Separator models to be able to train a blind SI-SNR estimator with the recipe provided in the SpeechBrain repository to complement the REAL-M real-life speech separation dataset.

The SI-SNR estimator is trained with a recordings from the WHAMR! and LibriMix datasets. We used a mixture of 9 separators to create the training data on the fly.

This model is released together with the REAL-M dataset for source separation on in-the-wild speech mixtures.

The REAL-M dataset can downloaded from this link. The paper for the REAL-M dataset can be found on this arxiv link.

Install SpeechBrain

First of all, currently you need to install SpeechBrain:

pip install speechbrain

Please notice that we encourage you to read our tutorials and learn more about SpeechBrain.

Inference on GPU

To perform inference on the GPU, add run_opts={"device":"cuda"} when calling the from_hparams method.

Training

The model was trained with SpeechBrain (fc2eabb7).

To train it from scratch follows these steps:

  1. Clone SpeechBrain:

git clone https://github.com/speechbrain/speechbrain/
  1. Install it:

cd speechbrain

pip install -r requirements.txt

pip install -e .
  1. Run Training:

cd recipes/REAL-M/sisnr-estimation

python train.py hparams/pool_sisnrestimator.yaml --data_folder /yourLibri2Mixpath --base_folder_dm /yourLibriSpeechpath --rir_path /yourpathforwhamrRIRs --dynamic_mixing True --use_whamr_train True --whamr_data_folder /yourpath/whamr --base_folder_dm_whamr /yourpath/wsj0-processed/si_tr_s

You can find our training results (models, logs, etc) here.

Limitations

The SpeechBrain team does not provide any warranty on the performance achieved by this model when used on other datasets.

Referencing SpeechBrain

@misc{speechbrain,
  title={{SpeechBrain}: A General-Purpose Speech Toolkit},
  author={Mirco Ravanelli and Titouan Parcollet and Peter Plantinga and Aku Rouhe and Samuele Cornell and Loren Lugosch and Cem Subakan and Nauman Dawalatabad and Abdelwahab Heba and Jianyuan Zhong and Ju-Chieh Chou and Sung-Lin Yeh and Szu-Wei Fu and Chien-Feng Liao and Elena Rastorgueva and François Grondin and William Aris and Hwidong Na and Yan Gao and Renato De Mori and Yoshua Bengio},
  year={2021},
  eprint={2106.04624},
  archivePrefix={arXiv},
  primaryClass={eess.AS},
  note={arXiv:2106.04624}
}

Referencing REAL-M

@misc{subakan2021realm,
      title={REAL-M: Towards Speech Separation on Real Mixtures}, 
      author={Cem Subakan and Mirco Ravanelli and Samuele Cornell and François Grondin},
      year={2021},
      eprint={2110.10812},
      archivePrefix={arXiv},
      primaryClass={eess.AS}
}

About SpeechBrain