🚀 クイックスタート
🎙️🥁🚨🔊 Brouhaha

このモデルは、音声アクティビティ検出、信号対雑音比、およびC50の部屋音響特性を同時に推定するものです。
TL;DR | 論文 | コード | And Now for Something Completely Different
モデル情報
属性 |
详情 |
モデルタイプ |
Joint voice activity detection, speech-to-noise ratio, and C50 room acoustics estimation |
学習データ |
LibriSpeech、AudioSet、EchoThief、MIT-Acoustical-Reverberation-Scene |
ライセンス |
openrail |
注意事項
⚠️ 重要提示
収集された情報は、このモデルのユーザーベースに関するより良い知識を獲得し、そのメンテナがさらに改善するための助成金を申請するのに役立ちます。
💡 使用建议
このモデルを使用する前に、ユーザー条件を承認し、アクセストークンを作成する必要があります。
✨ 主な機能
このモデルは、音声アクティビティ検出、信号対雑音比、およびC50の部屋音響特性を同時に推定することができます。
📦 インストール
このモデルは、pyannote.audio と brouhaha-vad に依存しています。
pip install pyannote-audio
pip install https://github.com/marianne-m/brouhaha-vad/archive/main.zip
💻 使用例
基本的な使用法
from pyannote.audio import Model
model = Model.from_pretrained("pyannote/brouhaha",
use_auth_token="ACCESS_TOKEN_GOES_HERE")
from pyannote.audio import Inference
inference = Inference(model)
output = inference("audio.wav")
for frame, (vad, snr, c50) in output:
t = frame.middle
print(f"{t:8.3f} vad={100*vad:.0f}% snr={snr:.0f} c50={c50:.0f}")
📚 ドキュメント
引用
@article{lavechin2022brouhaha,
Title = {{Brouhaha: multi-task training for voice activity detection, speech-to-noise ratio, and C50 room acoustics estimation}},
Author = {Marvin Lavechin and Marianne Métais and Hadrien Titeux and Alodie Boissonnet and Jade Copet and Morgane Rivière and Elika Bergelson and Alejandrina Cristia and Emmanuel Dupoux and Hervé Bredin},
Year = {2022},
Journal = {arXiv preprint arXiv: Arxiv-2210.13248}
}
```bibtex
@inproceedings{Bredin2020,
Title = {{pyannote.audio: neural building blocks for speaker diarization}},
Author = {{Bredin}, Herv{\'e} and {Yin}, Ruiqing and {Coria}, Juan Manuel and {Gelly}, Gregory and {Korshunov}, Pavel and {Lavechin}, Marvin and {Fustes}, Diego and {Titeux}, Hadrien and {Bouaziz}, Wassim and {Gill}, Marie-Philippe},
Booktitle = {ICASSP 2020, IEEE International Conference on Acoustics, Speech, and Signal Processing},
Address = {Barcelona, Spain},
Month = {May},
Year = {2020},
}