blob: d276c08f8e5297fda1a50a38506ddbb91a81ef05 [file] [log] [blame]
alexanderf42f5682021-07-16 11:30:56 +01001# Keyword Spotting with PyArmNN
2
3This sample application guides the user to perform Keyword Spotting (KWS) with PyArmNN API.
4
5## Prerequisites
6
7### PyArmNN
8
9Before proceeding to the next steps, make sure that you have successfully installed the newest version of PyArmNN on your system by following the instructions in the README of the PyArmNN root directory.
10
11You can verify that PyArmNN library is installed and check PyArmNN version using:
12
13```bash
14$ pip show pyarmnn
15```
16
17You can also verify it by running the following and getting output similar to below:
18
19```bash
20$ python -c "import pyarmnn as ann;print(ann.GetVersion())"
Cathal Corbett5aa9fd72022-02-25 15:33:28 +000021'29.0.0'
alexanderf42f5682021-07-16 11:30:56 +010022```
23
24### Dependencies
25
26Install the PortAudio package:
27
28```bash
29$ sudo apt-get install libsndfile1 libportaudio2
30```
31
32Install the required Python modules:
33
34```bash
35$ pip install -r requirements.txt
36```
37
38### Model
39
40The model we are using is the [DS CNN Large](https://github.com/ARM-software/ML-zoo/raw/68b5fbc77ed28e67b2efc915997ea4477c1d9d5b/models/keyword_spotting/ds_cnn_large/tflite_clustered_int8/) which can be found in the [Arm Model Zoo repository](
41https://github.com/ARM-software/ML-zoo/tree/master/models).
42
43A small selection of suitable wav files containing keywords can be found [here](https://git.mlplatform.org/ml/ethos-u/ml-embedded-evaluation-kit.git/plain/resources/kws/samples/).
44
45Labels for this model are defined within run_audio_classification.py.
46
47## Performing Keyword Spotting
48
49### Processing Audio Files
50
51Please ensure that your audio file has a sampling rate of 16000Hz.
52
53To run KWS on an audio file, use the following command:
54
55```bash
56$ python run_audio_classification.py --audio_file_path <path/to/your_audio> --model_file_path <path/to/your_model>
57```
58
59You may also add the optional flags:
60
61* `--preferred_backends`
62
63 * Takes the preferred backends in preference order, separated by whitespace. For example, passing in "CpuAcc CpuRef" will be read as list ["CpuAcc", "CpuRef"] (defaults to this list)
64
65 * CpuAcc represents the CPU backend
66
67 * GpuAcc represents the GPU backend
68
69 * CpuRef represents the CPU reference kernels
70
71* `--help` prints all available options to screen
72
73
74### Processing Audio Streams
75
76To run KWS on a live audio stream, use the following command:
77
78```bash
79$ python run_audio_classification.py --model_file_path <path/to/your_model> --duration (optional)
80```
81You will be prompted to select an input microphone and inference will commence
82after 3 seconds.
83
84
85You may also add the following optional flag in addition to those for run_audio_file.py:
86
87* `--duration`
88
89 * Integer number of seconds to perform inference. Default is to continue indefinitely.
90
91## Application Overview
92
931. [Initialization](#initialization)
94
952. [Creating a network](#creating-a-network)
96
973. [Keyword Spotting Pipeline](#keyword-spotting-pipeline)
98
99### Initialization
100
101The application parses the supplied user arguments and loads the audio file or stream in chunks through the `capture_audio()` method which accepts sampling criteria as an `AudioCaptureParams` tuple.
102
103With KWS from an audio file, the application will create a generator object to yield blocks of audio data from the file with a minimum sample size defined in AudioCaptureParams.
104
105MFCC features are extracted from each block based on criteria defined in the `MFCCParams` tuple. These extracted features constitute the input tensors for the model.
106
107To interpret the inference result of the loaded network; the application passes the label dictionary defined in run_audio_classification.py to a decoder and displays the result.
108
109### Creating a network
110
111A PyArmNN application must import a graph from file using an appropriate parser. Arm NN provides parsers for various model file types, including TFLite and ONNX. These parsers are libraries for loading neural networks of various formats into the Arm NN runtime.
112
113Arm NN supports optimized execution on multiple CPU, GPU, and Ethos-N devices. Before executing a graph, the application must select the appropriate device context by using `IRuntime()` to create a runtime context with default options. We can optimize the imported graph by specifying a list of backends in order of preference and implementing backend-specific optimizations, identified by a unique string, for example CpuAcc, GpuAcc, CpuRef represent the accelerated CPU and GPU backends and the CPU reference kernels respectively.
114
115Arm NN splits the entire graph into subgraphs based on these backends. Each subgraph is then optimized, and the corresponding subgraph in the original graph is substituted with its optimized version.
116
117The `Optimize()` function optimizes the graph for inference, then `LoadNetwork()` loads the optimized network onto the compute device. The `LoadNetwork()` function also creates the backend-specific workloads for the layers and a backend-specific workload factory.
118
119Parsers extract the input information for the network. The `GetSubgraphInputTensorNames()` function extracts all the input names and the `GetNetworkInputBindingInfo()` function obtains the input binding information of the graph. The input binding information contains all the essential information about the input. This information is a tuple consisting of integer identifiers for bindable layers and tensor information (data type, quantization info, dimension count, total elements).
120
121Similarly, we can get the output binding information for an output layer by using the parser to retrieve output tensor names and calling the `GetNetworkOutputBindingInfo()` function
122
123For this application, the main point of contact with PyArmNN is through the `ArmnnNetworkExecutor` class, which will handle the network creation step for you.
124
125```python
126# common/network_executor.py
127# The provided kws model is in .tflite format so we use TfLiteParser() to import the graph
128if ext == '.tflite':
129 parser = ann.ITfLiteParser()
130network = parser.CreateNetworkFromBinaryFile(model_file)
131...
132# Optimize the network for the list of preferred backends
133opt_network, messages = ann.Optimize(
134 network, preferred_backends, self.runtime.GetDeviceSpec(), ann.OptimizerOptions()
135 )
136# Load the optimized network onto the runtime device
137self.network_id, _ = self.runtime.LoadNetwork(opt_network)
138# Get the input and output binding information
139self.input_binding_info = parser.GetNetworkInputBindingInfo(graph_id, input_names[0])
140self.output_binding_info = parser.GetNetworkOutputBindingInfo(graph_id, output_name)
141```
142
143### Keyword Spotting pipeline
144
145
146Mel-frequency Cepstral Coefficients (MFCCs, [see Wikipedia](https://en.wikipedia.org/wiki/Mel-frequency_cepstrum)) are extracted based on criteria defined in the MFCCParams tuple and associated`MFCC Class`.
147MFCCs are the result of computing the dot product of the Discrete Cosine Transform (DCT) Matrix and the log of the Mel energy.
148
149The `MFCC` class is used in conjunction with the `AudioPreProcessor` class to extract and process MFCC features from a given audio frame.
150
151
152After all the MFCCs needed for an inference have been extracted from the audio data they constitute the input tensors that will be classified by an `ArmnnNetworkExecutor`object.
153
154```python
155# mfcc.py
156# Extract MFCC features from audio_data
157audio_data.resize(self._frame_len_padded)
158spec = self.spectrum_calc(audio_data)
159mel_energy = np.dot(self._np_mel_bank.astype(np.float32),
160 np.transpose(spec).astype(np.float32))
161log_mel_energy = self.log_mel(mel_energy)
162mfcc_feats = np.dot(self._dct_matrix, log_mel_energy)
163
164
165```python
166# audio_utils.py
167# Quantize the input data and create input tensors with PyArmNN
168input_tensor = quantize_input(input_tensor, input_binding_info)
169input_tensors = ann.make_input_tensors([input_binding_info], [input_tensor])
170```
171
172Note: `ArmnnNetworkExecutor` has already created the output tensors for you.
173
174After creating the workload tensors, the compute device performs inference for the loaded network by using the `EnqueueWorkload()` function of the runtime context. Calling the `workload_tensors_to_ndarray()` function obtains the inference results as a list of ndarrays.
175
176```python
177# common/network_executor.py
178status = runtime.EnqueueWorkload(net_id, input_tensors, self.output_tensors)
179self.output_result = ann.workload_tensors_to_ndarray(self.output_tensors)
180```
181
182The output from the inference must be decoded to obtain the recognised classification. A simple greedy decoder classifies the results by taking the highest element of the output as a key for the labels dictionary. The value returned is a keyword or unknown/silence which is appended to a list along with the calculated probability. The list elements are displayed on the console if they exceed the threshold value specified in main().
183
184
185## Next steps
186
187Having now gained a solid understanding of performing keyword spotting with PyArmNN, you are able to take control and create your own application. We suggest to first implement your own network, which can be done by updating the parameters of `AudioCaptureParams` and `MFCC_Params` to match your custom model. The `ArmnnNetworkExecutor` class will handle the network optimisation and loading for you.
188
189An important factor in improving accuracy of the generated output is providing cleaner data to the network. This can be done by including additional preprocessing steps such as noise reduction of your audio data.