Skip to content

tpeet/ML-KWS-for-MCU

 
 

Repository files navigation

Keyword spotting for Microcontrollers

This repository consists of the tensorflow models and training scripts used in the paper: Hello Edge: Keyword spotting on Microcontrollers. The scripts are adapted from Tensorflow examples and some are repeated here for the sake of making these scripts self-contained. Modifications were introduced in the thesis to streamline the process and automatically convert Tensorflow models to CMSIS-NN models.

Introductions

Training

To train a DNN with 3 fully-connected layers with 128 neurons in each layer, run:

python train.py --model_architecture dnn --model_size_info 128 128 128 

The command line argument --model_size_info is used to pass the neural network layer dimensions such as number of layers, convolution filter size/stride as a list to models.py, which builds the tensorflow graph based on the provided model architecture and layer dimensions. For more info on model_size_info for each network architecture see models.py. The training commands with all the hyperparameters to reproduce the models shown in the paper are given here.

Hyperparameter Optimization

Hyperparameter optimization helps to find suitable hyperaparameters for the model. Search space is defined in hyperparameter_optimization.py, while using hyperopt for optimization.

python hyperparameter_optimization.py

Quantization

Quantization automatically quantizes weights, biases and activations. It also generates C++ code and header files, which could run on Cortex-M devices.

python quantize.py --model_architecture dnn --model_size_info 128 128 128 --checkpoint 
<checkpoint path> ...

Inference

To run inference on the trained model from a checkpoint on train/val/test set, run:

python test.py --model_architecture dnn --model_size_info 128 128 128 --checkpoint 
<checkpoint path>

Freezing the model

To freeze the trained model checkpoint into a .pb file, run:

python freeze.py --model_architecture dnn --model_size_info 128 128 128 --checkpoint 
<checkpoint path> --output_file dnn.pb

Pretrained models

Trained models (.pb files) for different neural network architectures such as DNN, CNN, Basic LSTM, LSTM, GRU, CRNN and DS-CNN shown in this arXiv paper are added in Pretrained_models. Accuracy of the models on validation set, their memory requirements and operations per inference are also summarized in the following table.

To run an audio file through the trained model (e.g. a DNN) and get top prediction, run:

python label_wav.py --wav <audio file> --graph Pretrained_models/DNN/DNN_S.pb 
--labels Pretrained_models/labels.txt --how_many_labels 1

Quantization Guide and Deployment on Microcontrollers

Quantization is automated, but can also performed manually. For this, check a quick guide on quantizing the KWS neural network models is here. The example code for running a DNN model on a Cortex-M development board is also provided here.

About

Keyword spotting on Arm Cortex-M Microcontrollers

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 76.3%
  • C++ 11.4%
  • Objective-C 7.4%
  • Python 4.2%
  • Makefile 0.7%