Keywords: Python, TensorFlow, Deep Learning, Time Series classification
- Installation
1.1 Basic installation
1.2 Virtual environment installation
1.3 Docker installation - Introduction
2.1 Goal
2.2 Results - Project structure
- Dataset
- Project usage
5.1 Dataset automatic labeling
5.2 Record raw data to .tfrecord format
5.3 Train a CNN to classify Speech & Noise signals
5.4 Export trained model & run inference on Test set - Todo
- Resources
This project was designed for:
- Ubuntu 20.04
- Python 3.7.3
- TensorFlow 1.15.4
$ cd /path/to/project/
$ git clone https://github.com/filippogiruzzi/voice_activity_detection.git
$ cd voice_activity_detection/
$ pip3 install -r requirements.txt
$ pip3 install -e .
Build the docker image:
$ sudo make build
(This might take a while.)
Run the docker image:
$ sudo make local
(Update scrips/docker_local.sh
with your personal paths.)
The purpose of this project is to design and implement a real-time Voice Activity Detection algorithm based on Deep Learning.
The designed solution is based on MFCC feature extraction and a 1D-Resnet model that classifies whether a audio signal is speech or noise.
Model | Train acc. | Val acc. | Test acc. |
---|---|---|---|
1D-Resnet | 99 % | 98 % | 97 % |
Raw and post-processed inference results on a test audio signal are shown below.
The project voice_activity_detection/
has the following structure:
vad/data_processing/
: raw data labeling, processing, recording & visualizationvad/training/
: data, input pipeline, model & training / evaluation / predictionvad/inference/
: exporting trained model & inference
Please download the LibriSpeech ASR corpus dataset from https://openslr.org/12/,
and extract all files to : /path/to/LibriSpeech/
.
The dataset contains approximately 1000 hours of 16kHz read English speech from audiobooks, and is well suited for Voice Activity Detection.
I automatically annotated the test-clean
set of the dataset with a
pretrained VAD model.
Please feel free to use the labels/
folder and the pre-trained VAD model (only for inference) from this
link .
$ cd /path/to/project/voice_activity_detection/vad/
Skip this subsection if you already have the labels/
folder, that contains annotations
from a different pre-trained model.
$ python3 data_processing/librispeech_label_data.py --data_dir /path/to/LibriSpeech/test-clean/
--exported_model /path/to/pretrained/model/
--out_dir /path/to/LibriSpeech/labels/
This will record the annotations into /path/to/LibriSpeech/labels/
as
.json
files.
$ python3 data_processing/data_to_tfrecords.py --data_dir /path/to/LibriSpeech/
This will record the splitted data to .tfrecord
format in /path/to/LibriSpeech/tfrecords/
$ python3 training/train.py --data-dir /path/to/LibriSpeech/tfrecords/
$ python3 inference/export_model.py --model-dir /path/to/trained/model/dir/
--ckpt /path/to/trained/model/dir/
$ python3 inference/inference.py --data_dir /path/to/LibriSpeech/
--exported_model /path/to/exported/model/
--smoothing
The trained model will be recorded in /path/to/LibriSpeech/tfrecords/models/resnet1d/
.
The exported model will be recorded inside this directory.
- Compare Deep Learning model to a simple baseline
- Train on full dataset
- Improve data balancing
- Add time series data augmentation
- Study ROC curve & classification threshold
- Add online inference
- Evaluate quantitatively post-processing methods on the Test set
- Add model description & training graphs
- Add Google Colab demo