Trigger Word Detection
Welcome to the final programming assignment of this specialization!
In this week's videos, you learned about applying deep learning to speech recognition. In this assignment, you will construct a speech dataset and implement an algorithm for trigger word detection (sometimes also called keyword detection, or wakeword detection). Trigger word detection is the technology that allows devices like Amazon Alexa, Google Home, Apple Siri, and Baidu DuerOS to wake up upon hearing a certain word.
For this exercise, our trigger word will be "Activate." Every time it hears you say "activate," it will make a "chiming" sound. By the end of this assignment, you will be able to record a clip of yourself talking, and have the algorithm trigger a chime when it detects you saying "activate."
After completing this assignment, perhaps you can also extend it to run on your laptop so that every time you say "activate" it starts up your favorite app, or turns on a network connected lamp in your house, or triggers some other event?
In this assignment you will learn to: - Structure a speech recognition project - Synthesize and process audio recordings to create train/dev datasets - Train a trigger word detection model and make predictions
Lets get started! Run the following cell to load the package you are going to use.
1 | import numpy as np |
1 - Data synthesis: Creating a speech dataset
Let's start by building a dataset for your trigger word detection algorithm. A speech dataset should ideally be as close as possible to the application you will want to run it on. In this case, you'd like to detect the word "activate" in working environments (library, home, offices, open-spaces ...). You thus need to create recordings with a mix of positive words ("activate") and negative words (random words other than activate) on different background sounds. Let's see how you can create such a dataset.
1.1 - Listening to the data
One of your friends is helping you out on this project, and they've gone to libraries, cafes, restaurants, homes and offices all around the region to record background noises, as well as snippets of audio of people saying positive/negative words. This dataset includes people speaking in a variety of accents.
In the raw_data directory, you can find a subset of the raw audio files of the positive words, negative words, and background noise. You will use these audio files to synthesize a dataset to train the model. The "activate" directory contains positive examples of people saying the word "activate". The "negatives" directory contains negative examples of people saying random words other than "activate". There is one word per audio recording. The "backgrounds" directory contains 10 second clips of background noise in different environments.
Run the cells below to listen to some examples.
1 | IPython.display.Audio("./raw_data/activates/1.wav") |
1 | IPython.display.Audio("./raw_data/negatives/4.wav") |
1 | IPython.display.Audio("./raw_data/backgrounds/1.wav") |
You will use these three type of recordings (positives/negatives/backgrounds) to create a labelled dataset.
1.2 - From audio recordings to spectrograms
What really is an audio recording? A microphone records little variations in air pressure over time, and it is these little variations in air pressure that your ear also perceives as sound. You can think of an audio recording is a long list of numbers measuring the little air pressure changes detected by the microphone. We will use audio sampled at 44100 Hz (or 44100 Hertz). This means the microphone gives us 44100 numbers per second. Thus, a 10 second audio clip is represented by 441000 numbers (= \(10 \times 44100\)).
It is quite difficult to figure out from this "raw" representation of audio whether the word "activate" was said. In order to help your sequence model more easily learn to detect triggerwords, we will compute a spectrogram of the audio. The spectrogram tells us how much different frequencies are present in an audio clip at a moment in time.
(If you've ever taken an advanced class on signal processing or on Fourier transforms, a spectrogram is computed by sliding a window over the raw audio signal, and calculates the most active frequencies in each window using a Fourier transform. If you don't understand the previous sentence, don't worry about it.)
Lets see an example.
1 | IPython.display.Audio("audio_examples/example_train.wav") |
1 | x = graph_spectrogram("audio_examples/example_train.wav") |
1 | x |
array([[ 9.20850313e-08, 4.94545058e-01, 9.88447548e+01, ...,
2.30894224e-03, 4.91766839e-02, 3.50139219e-01],
[ 1.80512628e-07, 1.00418722e+00, 1.18114390e+02, ...,
3.28274988e-02, 1.63775223e-01, 2.46378304e-01],
[ 1.69854057e-07, 9.54327257e-01, 1.84377595e+02, ...,
3.10392369e-01, 1.30484879e+00, 8.80165188e-01],
...,
[ 2.16098310e-07, 5.44274404e-05, 2.88564585e-05, ...,
1.51337049e-04, 1.92541456e-05, 4.46536973e-05],
[ 2.25828769e-07, 1.96743381e-05, 3.15255813e-05, ...,
3.30137333e-04, 4.54464074e-05, 2.49749955e-05],
[ 1.14628741e-07, 1.09958935e-07, 6.32568913e-05, ...,
1.75251216e-04, 9.53804196e-06, 2.46519606e-05]])
The graph above represents how active each frequency is (y axis) over a number of time-steps (x axis).
The dimension of the output spectrogram depends upon the hyperparameters of the spectrogram software and the length of the input. In this notebook, we will be working with 10 second audio clips as the "standard length" for our training examples. The number of timesteps of the spectrogram will be 5511. You'll see later that the spectrogram will be the input \(x\) into the network, and so \(T_x = 5511\).
1 | _, data = wavfile.read("audio_examples/example_train.wav") |
Time steps in audio recording before spectrogram (441000,)
Time steps in input after spectrogram (101, 5511)
Now, you can define:
1 | Tx = 5511 # The number of time steps input to the model from the spectrogram |
Note that even with 10 seconds being our default training example length, 10 seconds of time can be discretized to different numbers of value. You've seen 441000 (raw audio) and 5511 (spectrogram). In the former case, each step represents \(10/441000 \approx 0.000023\) seconds. In the second case, each step represents \(10/5511 \approx 0.0018\) seconds.
For the 10sec of audio, the key values you will see in this assignment are:
- \(441000\) (raw audio)
- \(5511 = T_x\) (spectrogram output, and dimension of input to the neural network).
- \(10000\) (used by the
pydub
module to synthesize audio) - \(1375 = T_y\) (the number of steps in the output of the GRU you'll build).
Note that each of these representations correspond to exactly 10 seconds of time. It's just that they are discretizing them to different degrees. All of these are hyperparameters and can be changed (except the 441000, which is a function of the microphone). We have chosen values that are within the standard ranges uses for speech systems.
Consider the \(T_y = 1375\) number above. This means that for the output of the model, we discretize the 10s into 1375 time-intervals (each one of length \(10/1375 \approx 0.0072\)s) and try to predict for each of these intervals whether someone recently finished saying "activate."
Consider also the 10000 number above. This corresponds to discretizing the 10sec clip into 10/10000 = 0.001 second itervals. 0.001 seconds is also called 1 millisecond, or 1ms. So when we say we are discretizing according to 1ms intervals, it means we are using 10,000 steps.
1 | Ty = 1375 # The number of time steps in the output of our model |
1.3 - Generating a single training example
Because speech data is hard to acquire and label, you will synthesize your training data using the audio clips of activates, negatives, and backgrounds. It is quite slow to record lots of 10 second audio clips with random "activates" in it. Instead, it is easier to record lots of positives and negative words, and record background noise separately (or download background noise from free online sources).
To synthesize a single training example, you will:
- Pick a random 10 second background audio clip
- Randomly insert 0-4 audio clips of "activate" into this 10sec clip
- Randomly insert 0-2 audio clips of negative words into this 10sec clip
Because you had synthesized the word "activate" into the background clip, you know exactly when in the 10sec clip the "activate" makes its appearance. You'll see later that this makes it easier to generate the labels \(y^{\langle t \rangle}\) as well.
You will use the pydub package to manipulate audio. Pydub converts raw audio files into lists of Pydub data structures (it is not important to know the details here). Pydub uses 1ms as the discretization interval (1ms is 1 millisecond = 1/1000 seconds) which is why a 10sec clip is always represented using 10,000 steps.
1 | # Load audio segments using pydub |
background len: 10000
activate[0] len: 916
activate[1] len: 1579
Overlaying positive/negative words on the background:
Given a 10sec background clip and a short audio clip (positive or negative word), you need to be able to "add" or "insert" the word's short audio clip onto the background. To ensure audio segments inserted onto the background do not overlap, you will keep track of the times of previously inserted audio clips. You will be inserting multiple clips of positive/negative words onto the background, and you don't want to insert an "activate" or a random word somewhere that overlaps with another clip you had previously added.
For clarity, when you insert a 1sec "activate" onto a 10sec clip of cafe noise, you end up with a 10sec clip that sounds like someone sayng "activate" in a cafe, with "activate" superimposed on the background cafe noise. You do not end up with an 11 sec clip. You'll see later how pydub allows you to do this.
Creating the labels at the same time you overlay:
Recall also that the labels \(y^{\langle t \rangle}\) represent whether or not someone has just finished saying "activate." Given a background clip, we can initialize \(y^{\langle t \rangle}=0\) for all \(t\), since the clip doesn't contain any "activates."
When you insert or overlay an "activate" clip, you will also update labels for \(y^{\langle t \rangle}\), so that 50 steps of the output now have target label 1. You will train a GRU to detect when someone has finished saying "activate". For example, suppose the synthesized "activate" clip ends at the 5sec mark in the 10sec audio---exactly halfway into the clip. Recall that \(T_y = 1375\), so timestep $687 = $ int(1375*0.5)
corresponds to the moment at 5sec into the audio. So, you will set \(y^{\langle 688 \rangle} = 1\). Further, you would quite satisfied if the GRU detects "activate" anywhere within a short time-internal after this moment, so we actually set 50 consecutive values of the label \(y^{\langle t \rangle}\) to 1. Specifically, we have \(y^{\langle 688 \rangle} = y^{\langle 689 \rangle} = \cdots = y^{\langle 737 \rangle} = 1\).
This is another reason for synthesizing the training data: It's relatively straightforward to generate these labels \(y^{\langle t \rangle}\) as described above. In contrast, if you have 10sec of audio recorded on a microphone, it's quite time consuming for a person to listen to it and mark manually exactly when "activate" finished.
Here's a figure illustrating the labels \(y^{\langle t \rangle}\), for a clip which we have inserted "activate", "innocent", activate", "baby." Note that the positive labels "1" are associated only with the positive words.
To implement the training set synthesis process, you will use the following helper functions. All of these function will use a 1ms discretization interval, so the 10sec of audio is alwsys discretized into 10,000 steps.
get_random_time_segment(segment_ms)
gets a random time segment in our background audiois_overlapping(segment_time, existing_segments)
checks if a time segment overlaps with existing segmentsinsert_audio_clip(background, audio_clip, existing_times)
inserts an audio segment at a random time in our background audio usingget_random_time_segment
andis_overlapping
insert_ones(y, segment_end_ms)
inserts 1's into our label vector y after the word "activate"
The function get_random_time_segment(segment_ms)
returns a random time segment onto which we can insert an audio clip of duration segment_ms
. Read through the code to make sure you understand what it is doing.
1 | def get_random_time_segment(segment_ms): |
Next, suppose you have inserted audio clips at segments (1000,1800) and (3400,4500). I.e., the first segment starts at step 1000, and ends at step 1800. Now, if we are considering inserting a new audio clip at (3000,3600) does this overlap with one of the previously inserted segments? In this case, (3000,3600) and (3400,4500) overlap, so we should decide against inserting a clip here.
For the purpose of this function, define (100,200) and (200,250) to be overlapping, since they overlap at timestep 200. However, (100,199) and (200,250) are non-overlapping.
Exercise: Implement is_overlapping(segment_time, existing_segments)
to check if a new time segment overlaps with any of the previous segments. You will need to carry out 2 steps:
- Create a "False" flag, that you will later set to "True" if you find that there is an overlap.
- Loop over the previous_segments' start and end times. Compare these times to the segment's start and end times. If there is an overlap, set the flag defined in (1) as True. You can use: Hint: There is overlap if the segment starts before the previous segment ends, and the segment ends after the previous segment starts.
1
2
3for ....:
if ... <= ... and ... >= ...:
...
1 | # GRADED FUNCTION: is_overlapping |
1 | overlap1 = is_overlapping((950, 1430), [(2000, 2550), (260, 949)]) |
Overlap 1 = False
Overlap 2 = True
Expected Output:
Overlap 1 | False |
Overlap 2 | True |
Now, lets use the previous helper functions to insert a new audio clip onto the 10sec background at a random time, but making sure that any newly inserted segment doesn't overlap with the previous segments.
Exercise: Implement insert_audio_clip()
to overlay an audio clip onto the background 10sec clip. You will need to carry out 4 steps:
- Get a random time segment of the right duration in ms.
- Make sure that the time segment does not overlap with any of the previous time segments. If it is overlapping, then go back to step 1 and pick a new time segment.
- Add the new time segment to the list of existing time segments, so as to keep track of all the segments you've inserted.
- Overlay the audio clip over the background using pydub. We have implemented this for you.
1 | # GRADED FUNCTION: insert_audio_clip |
1 | np.random.seed(5) |
Segment Time: (2254, 3169)
Expected Output
Segment Time | (2254, 3169) |
1 | # Expected audio |
Finally, implement code to update the labels \(y^{\langle t \rangle}\), assuming you just inserted an "activate." In the code below, y
is a (1,1375)
dimensional vector, since \(T_y = 1375\).
If the "activate" ended at time step \(t\), then set \(y^{\langle t+1 \rangle} = 1\) as well as for up to 49 additional consecutive values. However, make sure you don't run off the end of the array and try to update y[0][1375]
, since the valid indices are y[0][0]
through y[0][1374]
because \(T_y = 1375\). So if "activate" ends at step 1370, you would get only y[0][1371] = y[0][1372] = y[0][1373] = y[0][1374] = 1
Exercise: Implement insert_ones()
. You can use a for loop. (If you are an expert in python's slice operations, feel free also to use slicing to vectorize this.) If a segment ends at segment_end_ms
(using a 10000 step discretization), to convert it to the indexing for the outputs \(y\) (using a \(1375\) step discretization), we will use this formula:
1
segment_end_y = int(segment_end_ms * Ty / 10000.0)
1 | # GRADED FUNCTION: insert_ones |
1 | arr1 = insert_ones(np.zeros((1, Ty)), 9700) |
sanity checks: 0.0 1.0 0.0
Expected Output
sanity checks: | 0.0 1.0 0.0 |
Finally, you can use insert_audio_clip
and insert_ones
to create a new training example.
Exercise: Implement create_training_example()
. You will need to carry out the following steps:
- Initialize the label vector \(y\) as a numpy array of zeros and shape \((1, T_y)\).
- Initialize the set of existing segments to an empty list.
- Randomly select 0 to 4 "activate" audio clips, and insert them onto the 10sec clip. Also insert labels at the correct position in the label vector \(y\).
- Randomly select 0 to 2 negative audio clips, and insert them into the 10sec clip.
1 | # GRADED FUNCTION: create_training_example |
1 | x, y = create_training_example(backgrounds[0], activates, negatives) |
File (train.wav) was saved in your directory.
Expected Output
Now you can listen to the training example you created and compare it to the spectrogram generated above.
1 | IPython.display.Audio("train.wav") |
Expected Output
1 | IPython.display.Audio("audio_examples/train_reference.wav") |
Finally, you can plot the associated labels for the generated training example.
1 | plt.plot(y[0]) |
[<matplotlib.lines.Line2D at 0x7f717da726a0>]
Expected Output
1.4 - Full training set
You've now implemented the code needed to generate a single training example. We used this process to generate a large training set. To save time, we've already generated a set of training examples.
1 | # Load preprocessed training examples |
1.5 - Development set
To test our model, we recorded a development set of 25 examples. While our training data is synthesized, we want to create a development set using the same distribution as the real inputs. Thus, we recorded 25 10-second audio clips of people saying "activate" and other random words, and labeled them by hand. This follows the principle described in Course 3 that we should create the dev set to be as similar as possible to the test set distribution; that's why our dev set uses real rather than synthesized audio.
1 | # Load preprocessed dev set examples |
2 - Model
Now that you've built a dataset, lets write and train a trigger word detection model!
The model will use 1-D convolutional layers, GRU layers, and dense layers. Let's load the packages that will allow you to use these layers in Keras. This might take a minute to load.
1 | from keras.callbacks import ModelCheckpoint |
2.1 - Build the model
Here is the architecture we will use. Take some time to look over the model and see if it makes sense.
One key step of this model is the 1D convolutional step (near the bottom of Figure 3). It inputs the 5511 step spectrogram, and outputs a 1375 step output, which is then further processed by multiple layers to get the final \(T_y = 1375\) step output. This layer plays a role similar to the 2D convolutions you saw in Course 4, of extracting low-level features and then possibly generating an output of a smaller dimension.
Computationally, the 1-D conv layer also helps speed up the model because now the GRU has to process only 1375 timesteps rather than 5511 timesteps. The two GRU layers read the sequence of inputs from left to right, then ultimately uses a dense+sigmoid layer to make a prediction for \(y^{\langle t \rangle}\). Because \(y\) is binary valued (0 or 1), we use a sigmoid output at the last layer to estimate the chance of the output being 1, corresponding to the user having just said "activate."
Note that we use a uni-directional RNN rather than a bi-directional RNN. This is really important for trigger word detection, since we want to be able to detect the trigger word almost immediately after it is said. If we used a bi-directional RNN, we would have to wait for the whole 10sec of audio to be recorded before we could tell if "activate" was said in the first second of the audio clip.
Implementing the model can be done in four steps:
Step 1: CONV layer. Use Conv1D()
to implement this, with 196 filters, a filter size of 15 (kernel_size=15
), and stride of 4. [See documentation.]
Step 2: First GRU layer. To generate the GRU layer, use: 1
X = GRU(units = 128, return_sequences = True)(X)
return_sequences=True
ensures that all the GRU's hidden states are fed to the next layer. Remember to follow this with Dropout and BatchNorm layers.
Step 3: Second GRU layer. This is similar to the previous GRU layer (remember to use return_sequences=True
), but has an extra dropout layer.
Step 4: Create a time-distributed dense layer as follows: 1
X = TimeDistributed(Dense(1, activation = "sigmoid"))(X)
Exercise: Implement model()
, the architecture is presented in Figure 3.
1 | # GRADED FUNCTION: model |
1 | model = model(input_shape = (Tx, n_freq)) |
Let's print the model summary to keep track of the shapes.
1 | model.summary() |
1 |
|
Expected Output:
Total params | 522,561 |
Trainable params | 521,657 |
Non-trainable params | 904 |
The output of the network is of shape (None, 1375, 1) while the input is (None, 5511, 101). The Conv1D has reduced the number of steps from 5511 at spectrogram to 1375.
2.2 - Fit the model
Trigger word detection takes a long time to train. To save time, we've already trained a model for about 3 hours on a GPU using the architecture you built above, and a large training set of about 4000 examples. Let's load the model.
1 | model = load_model('./models/tr_model.h5') |
You can train the model further, using the Adam optimizer and binary cross entropy loss, as follows. This will run quickly because we are training just for one epoch and with a small training set of 26 examples.
1 | opt = Adam(lr=0.0001, beta_1=0.9, beta_2=0.999, decay=0.01) |
1 | model.fit(X, Y, batch_size = 5, epochs=1) |
Epoch 1/1
26/26 [==============================] - 164s - loss: 0.0726 - acc: 0.9805
<keras.callbacks.History at 0x7f71052e7f60>
2.3 - Test the model
Finally, let's see how your model performs on the dev set.
1 | loss, acc = model.evaluate(X_dev, Y_dev) |
25/25 [==============================] - 18s
Dev set accuracy = 0.94565820694
This looks pretty good! However, accuracy isn't a great metric for this task, since the labels are heavily skewed to 0's, so a neural network that just outputs 0's would get slightly over 90% accuracy. We could define more useful metrics such as F1 score or Precision/Recall. But let's not bother with that here, and instead just empirically see how the model does.
3 - Making Predictions
Now that you have built a working model for trigger word detection, let's use it to make predictions. This code snippet runs audio (saved in a wav file) through the network.
1 | def detect_triggerword(filename): |
Once you've estimated the probability of having detected the word "activate" at each output step, you can trigger a "chiming" sound to play when the probability is above a certain threshold. Further, \(y^{\langle t \rangle}\) might be near 1 for many values in a row after "activate" is said, yet we want to chime only once. So we will insert a chime sound at most once every 75 output steps. This will help prevent us from inserting two chimes for a single instance of "activate". (This plays a role similar to non-max suppression from computer vision.)
1 | chime_file = "audio_examples/chime.wav" |
3.3 - Test on dev examples
Let's explore how our model performs on two unseen audio clips from the development set. Lets first listen to the two dev set clips.
1 | IPython.display.Audio("./raw_data/dev/1.wav") |
1 | IPython.display.Audio("./raw_data/dev/2.wav") |
Now lets run the model on these audio clips and see if it adds a chime after "activate"!
1 | filename = "./raw_data/dev/1.wav" |
1 | filename = "./raw_data/dev/2.wav" |
Congratulations
You've come to the end of this assignment!
Here's what you should remember: - Data synthesis is an effective way to create a large training set for speech problems, specifically trigger word detection. - Using a spectrogram and optionally a 1D conv layer is a common pre-processing step prior to passing audio data to an RNN, GRU or LSTM. - An end-to-end deep learning approach can be used to built a very effective trigger word detection system.
Congratulations on finishing the fimal assignment!
Thank you for sticking with us through the end and for all the hard work you've put into learning deep learning. We hope you have enjoyed the course!
4 - Try your own example! (OPTIONAL/UNGRADED)
In this optional and ungraded portion of this notebook, you can try your model on your own audio clips!
Record a 10 second audio clip of you saying the word "activate" and other random words, and upload it to the Coursera hub as myaudio.wav
. Be sure to upload the audio as a wav file. If your audio is recorded in a different format (such as mp3) there is free software that you can find online for converting it to wav. If your audio recording is not 10 seconds, the code below will either trim or pad it as needed to make it 10 seconds.
1 | # Preprocess the audio to the correct format |
Once you've uploaded your audio file to Coursera, put the path to your file in the variable below.
1 | your_filename = "audio_examples/my_audio.wav" |
1 | preprocess_audio(your_filename) |
Finally, use the model to predict when you say activate in the 10 second audio clip, and trigger a chime. If beeps are not being added appropriately, try to adjust the chime_threshold.
1 | chime_threshold = 0.5 |