Skip to content

Repository files navigation

speakerbox

Build StatusDocumentationstatus

Few-Shot Multi-Recording Speaker Identification Transformer Fine-Tuning and Application


Installation

Stable Release:pip install speakerbox
Development Head:pip install git+https://github.com/CouncilDataProject/speakerbox.git

Documentation

For full package documentation please visit councildataproject.github.io/speakerbox.

Example Usage Video

screenshot from example usage youtube video

Link: https://youtu.be/SK2oVqSKPTE

In the example video, we use the Speakerbox library to quickly annotate a dataset of audio clips from the show The West Wing and train a speaker identification model to identify three of the show's characters (President Bartlet, Charlie Young, and Leo McGarry).

Problem

Given a set of recordings of multi-speaker recordings:

example/
├── 0.wav
├── 1.wav
├── 2.wav
├── 3.wav
├── 4.wav
└── 5.wav

Where each recording has some or all of a set of speakers, for example:

  • 0.wav -- contains speakers: A, B, C
  • 1.wav -- contains speakers: A, C
  • 2.wav -- contains speakers: B, C
  • 3.wav -- contains speakers: A, B, C
  • 4.wav -- contains speakers: A, B, C
  • 5.wav -- contains speakers: A, B, C

You want to train a model to classify portions of audio as one of the N known speakers in future recordings not included in your original training set.

f(audio) -> [(start_time, end_time, speaker), (start_time, end_time, speaker), ...]

i.e. f(audio) -> [(2.4, 10.5, "A"), (10.8, 14.1, "D"), (14.8, 22.7, "B"), ...]

The speakerbox library contains methods for both generating datasets for annotation and for utilizing multiple audio annotation schemes to train such a model.

Typical workflow to prepare a speaker identification dataset and fine-tune a new model using tools provided from the Speakerbox library. The user starts with a collection of audio files that include portions speech from the speakers they want to train a model to identify. The diarize_and_split_audio function will create a new directory with the same name as the audio file, diarize the audio file, and finally, sort the audio portions produced from diarization into sub-directories within this new directory. The user should then manually rename each of the produced sub-directories to the correct speaker identifier (i.e. the speaker's name or a unique id) and additionally remove any incorrectly diarized or mislabeled portions of audio. Finally, the user can prepare training, evaluation, and testing datasets (via the expand_labeled_diarized_audio_dir_to_dataset and preprocess_dataset functions) and fine-tune a new speaker identification model (via the train function).

The following table shows model performance results as the dataset size increases:

dataset_sizemean_accuracymean_precisionmean_recallmean_training_duration_seconds
15-minutes0.874 ± 0.0290.881 ± 0.0370.874 ± 0.029101 ± 1
30-minutes0.929 ± 0.0060.94 ± 0.0070.929 ± 0.006186 ± 3
60-minutes0.937 ± 0.020.94 ± 0.0170.937 ± 0.02453 ± 7

All results reported are the average of five model training and evaluation trials for each of the different dataset sizes. All models were fine-tuned using an NVIDIA GTX 1070 TI.

Note: this table can be reproduced in ~1 hour using an NVIDIA GTX 1070 TI by:

Installing the example data download dependency:

pip install speakerbox[example_data]

Then running the following commands in Python:

fromspeakerbox.examplesimport (
download_preprocessed_example_data,
train_and_eval_all_example_models,
)
# Download and unpack the preprocessed example datadataset=download_preprocessed_example_data()
# Train and eval models with different subsets of the dataresults=train_and_eval_all_example_models(dataset)

Workflow

Diarization

We quickly generate an annotated dataset by first diarizing (or clustering based on the features of speaker audio) portions of larger audio files and splitting each the of the clusters into their own directories that you can then manually clean up (by removing incorrectly clustered audio segments).

Notes

  • It is recommended to have each larger audio file named with a unique id that can be used to act as a "recording id".
  • Diarization time depends on machine resources and make take a long time -- one potential recommendation is to run a diarization script overnight and clean up the produced annotations the following day.
  • During this process audio will be duplicated in the form of smaller audio clips -- ensure you have enough space on your machine to complete this process before you begin.
  • Clustering accuracy depends on how many speakers there are, how distinct their voices are, and how much speech is talking over one-another.
  • If possible, try to find recordings where speakers have a roughly uniform distribution of speaking durations.

⚠️ To use the diarization portions of speakerbox you need to complete the following steps: ⚠️

  1. Visit hf.co/pyannote/speaker-diarization and accept user conditions.
  2. Visit hf.co/pyannote/segmentation and accept user conditions.
  3. Visit hf.co/settings/tokens to create an access token (only if you had to complete 1.)

Diarize a single file:

fromspeakerboximportpreprocess# The token can also be provided via the 'HUGGINGFACE_TOKEN` environment variable.diarized_and_split_audio_dir=preprocess.diarize_and_split_audio(
"0.wav",
hf_token="token-from-hugging-face",
)

Diarize all files in a directory:

fromspeakerboximportpreprocessfrompathlibimportPathfromtqdmimporttqdm# Iterate over all 'wav' format files in a directory called 'data'foraudio_fileintqdm(list(Path("data").glob("*.wav"))):
# The token can also be provided via the 'HUGGINGFACE_TOKEN` environment variable.diarized_and_split_audio_dir=preprocess.diarize_and_split_audio(
audio_file,
# Create a new directory to place all created sub-directories withinstorage_dir=f"diarized-audio/{audio_file.stem}",
hf_token="token-from-hugging-face",
)

Cleaning

Diarization will produce a directory structure organized by unlabeled speakers with the audio clips that were clustered together.

For example, if "0.wav" had three speakers, the produced directory structure may look like the following tree:

0/
├── SPEAKER_00
│ ├── 567-12928.wav
│ ├── ...
│ └── 76192-82901.wav
├── SPEAKER_01
│ ├── 34123-38918.wav
│ ├── ...
│ └── 88212-89111.wav
└── SPEAKER_02
├── ...
└── 53998-62821.wav

We leave it to you as a user to then go through these directories and remove any audio clips that were incorrectly clustered together as well as renaming the sub-directories to their correct speaker labels. For example, labelled sub-directories may look like the following tree:

0/
├── A
│ ├── 567-12928.wav
│ ├── ...
│ └── 76192-82901.wav
├── B
│ ├── 34123-38918.wav
│ ├── ...
│ └── 88212-89111.wav
└── D
├── ...
└── 53998-62821.wav

Notes

  • Most operating systems have an audio playback application to queue an entire directory of audio files as a playlist for playback. This makes it easy to listen to a whole unlabeled sub-directory (i.e. "SPEAKER_00") at a time and pause playback and remove files from the directory which were incorrectly clustered.
  • If any clips have overlapping speakers, it is up to you as a user if you want to remove those clips or keep them and properly label them with the speaker you wish to associate them with.

Training Preparation

Once you have annotated what you think is enough recordings, you can try preparing a dataset for training.

The following functions will prepare the audio for training by:

  1. Finding all labeled audio clips in the provided directories
  2. Chunk all found audio clips into smaller duration clips (parametrizable)
  3. Check that the provided annotated dataset meets the following conditions:
    1. There is enough data such that the training, test, and validation subsets all contain different recording ids.
    2. There is enough data such that the training, test, and validation subsets each contain all labels present in the whole dataset.

Notes

  • During this process audio will be duplicated in the form of smaller audio clips -- ensure you have enough space on your machine to complete this process before you begin.
  • Directory names are used as recording ids during dataset construction.
fromspeakerboximportpreprocessdataset=preprocess.expand_labeled_diarized_audio_dir_to_dataset(
labeled_diarized_audio_dir=[
"0/", # The cleaned and checked audio clips for recording id 0"1/", # ... recording id 1"2/", # ... recording id 2"3/", # ... recording id 3"4/", # ... recording id 4"5/", # ... recording id 5
]
)
dataset_dict, value_counts=preprocess.prepare_dataset(
dataset,
# good if you have large variation in number of data points for each labelequalize_data_within_splits=True,
# set seed to get a reproducible data splitseed=60,
)
# You can print the value_counts dataframe to see how many audio clips of each label# (speaker) are present in each data subset.value_counts

Model Training and Evaluation

Once you have your dataset prepared and available, you can provide it directly to the training function to begin training a new model.

The eval_model function will store a filed called results.md with the accuracy, precision, and recall of the model and additionally store a file called validation-confusion.png which is a confusion matrix.

Notes

  • The model (and evaluation metrics) will be stored in a new directory called trained-speakerbox(parametrizable).
  • Training time depends on how much data you have annotated and provided.
  • It is recommended to train with an NVidia GPU with CUDA available to speed up the training process.
  • Speakerbox has only been tested on English-language audio and the base model for fine-tuning was trained on English-language audio. We provide no guarantees as to it's effectiveness on non-English-language audio. If you try Speakerbox on with non-English-language audio, please let us know!
fromspeakerboximporttrain, eval_model# dataset_dict comes from previous preparation steptrain(dataset_dict)
eval_model(dataset_dict["valid"])

Model Inference

Once you have a trained model, you can use it against a new audio file:

fromspeakerboximportapplyannotation=apply(
"new-audio.wav",
"path-to-my-model-directory/",
)

The apply function returns a pyannote.core.Annotation.

Development

See CONTRIBUTING.md for information related to developing the code.

Citation

@article{Brown2023,
doi = {10.21105/joss.05132},
url = {https://doi.org/10.21105/joss.05132},
year = {2023},
publisher = {The Open Journal},
volume = {8},
number = {83},
pages = {5132},
author = {Eva Maxfield Brown and To Huynh and Nicholas Weber},
title = {Speakerbox: Few-Shot Learning for Speaker Identification with Transformers},
journal = {Journal of Open Source Software}
}

MIT License

About

Speakerbox: Fine-tune Audio Transformers for speaker identification.

Topics

Resources

Code of conduct

Contributing

Stars

61 stars

Watchers

6 watching

Forks

Releases

Used by

Contributors

Languages