Vibravox: A Dataset of French Speech Captured with Body-conduction Audio Sensors
Paper
•
2407.11828
•
Published
•
4
speech_clean+speechless_noisy) of Cnam-LMSSC/vibravox (see VibraVox paper on arXiV)speech_noisy of Cnam-LMSSC/vibravoxThis bandwidth extension model, trained on Vibravox body conduction sensor data, enhances body-conducted speech audio by denoising and regenerating mid and high frequencies from low-frequency content.
This model, trained for a specific non-conventional speech sensor, is intended to be used with in-domain data. Using it with other sensor data may lead to suboptimal performance.
The entry point to all EBEN models for Bandwidth Extension (BWE) is available at https://huggingface.co/Cnam-LMSSC/vibravox_EBEN_models.
Detailed instructions for reproducing the experiments are available on the jhauret/vibravox Github repository.
import torch, torchaudio
from vibravox.torch_modules.dnn.eben_generator import EBENGenerator
from datasets import load_dataset
model = EBENGenerator.from_pretrained("Cnam-LMSSC/EBEN_noisy_throat_microphone")
test_dataset = load_dataset("Cnam-LMSSC/vibravox", "speech_noisy", split="test", streaming=True)
audio_48kHz = torch.Tensor(next(iter(test_dataset))["audio.throat_microphone"]["array"])
audio_16kHz = torchaudio.functional.resample(audio_48kHz, orig_freq=48_000, new_freq=16_000)
cut_audio_16kHz = model.cut_to_valid_length(audio_16kHz[None, None, :])
enhanced_audio_16kHz, enhanced_speech_decomposed = model(cut_audio_16kHz)