Skip to content

UDASE-CHiME2023/CHiME-5

Repository files navigation

CHiME-5 data preprocessing

This repository contains instructions for retrieving the unlabeled data needed for the UDASE task of the CHiME-7 challenge.

You must first download the CHiME-5 data.

Installation

# clone data repository
git clone https://github.com/UDASE-CHiME2023/CHiME-5.git
cd CHiME-5

# create CHiME conda environment
conda env create -f environment.yml
conda activate CHiME

Extract audio segments

To extract the audio segments from the provided json files, you have to run:

python create_audio_segments.py /path/to/chime/data/CHiME5 json_files /path/to/output/audio 

To get more informations: python create_audio_segments.py --help

Data information

The audio segments were extracted for each binaural microphone recording associated with a session Sxx and a participant Pxx in the CHiME-5 data as follows:

  • Train data:
    • [unlabeled] we extract all segments where Pxx is not active (by default);
    • [unlabeled_10s] we extract all segments where Pxx is not active and split them into consecutive chunks of maximum 10s (with options: python create_audio_segments.py --train_10s);
    • [unlabeled_vad] we extract all segments where Pxx is not active and where Brouhaha VAD detects voice (with options: python create_audio_segments.py --train_vad);
    • [unlabeled_vad_10s] we extract all segments where Pxx is not active and where Brouhaha VAD detects voice, and split them into consecutive chunks of maximum 10s (with options: python create_audio_segments.py --train_10s --train_vad);
  • Dev data:
    • [0] we extract all segments where no speaker is active;
    • [1] we extract all segments that were not extracted before and with at most one active speaker (the active speaker might change in a segment, but we do not have overlap between different speakers);
    • [2] we extract all segments that were not extracted before and with at most two simultaneously active speakers (again, the active speakers might change in a segment, we care only about the max number of simultaneously active speakers);
    • [3] we extract all segments that were not extracted before and with at most three simultaneously active speakers.
  • Eval data:
    • [0/1/2/3] we extract segments using the same method as for the dev data;
    • [listening_test] we extract segments used for the listening tests.

Notes:

  • by default, only the right channel is extracted. The --extract_stereo option allows to extract both left and right channels. Note that the right channel works correctly in all extracted audio segments, unlike the left channel. The working state of the microphones is indicated in the json files;
  • the options --train_only and --eval_only allow to save only the train and the eval segments respectively;
  • we remove the parts of the audio where the participant wearing the microphone is talking (according to the manual transcription);
  • manual transcription is also used to split the dev data into [0], [1], [2] and [3];
  • the retained segments have a duration greater than 3 seconds;
  • recordings with both defective microphones were not extracted, but those with only one defective microphone were (Note: the defective microphones are indicated in the json files);
  • unlike the repartition of the original CHiME-5 data, we put the S07 and S17 sessions (initially in the train dataset) in the dev dataset in order to increase the noise data [0] duration which was insufficient;
  • Brouhaha VAD was used to clean the audio segments and estimate the SNR (feel free to use the results when participating to the task!):