NNoM Utils - Structured API
What makes NNoM easy to use is the models can be deployed to MCU automatically or manually with the help of NNoM utils.
These functions are located in scripts/nnom.py
This tools, will generate NNoM model using Structured API instead of 'layer API' in the previous script.
Usage in short, in your python file, add the scripts the directory to your enviroment. Then you can imports the below apis from nnom.py.
import sys
import os
sys.path.append(os.path.abspath("../../scripts"))
from nnom import *
Please refer to examples for usage.
generate_model()
generate_model(model, x_test, per_channel_quant=False, name='weights.h', format='hwc', quantize_method='max_min')
This is all you need
This method is the most frequently used function for deployment.
- It firsly scans the output range of each layer's output using
quantize_output()
- Then it quantised and write the weights & bias, fused the BatchNorm parameters using
generate_weights()
- Finally, it links all useful codes and generate the NNoM model in
weights.h
Arguments
- model: the trained Keras model
- x_test: the dataset used to check calibrate the output data quantisation range of each layer.
- per_channel_quant:
true
quantise layers (Conv layers) in channel-wise (per-axis).false
, layer-wise (per-tensor) - name: the name of the automatically generated header, contains the NNoM model.
- format: indicate the backend format, options between
'hwc'
and'chw'
. See notes - quantize_method: Option between
'max_min'
and'kld'
. 'kld' indicated to use KLD method for activation quantisation (saturated). 'max_min', use min-max method (nonsaturated).
Notes
- This API generate the model using Structured API.
- Currently, only support single input, single output models.
- The default backend format is set to 'hwc', also call 'channel last', which is the same format as CMSIS-NN. This format is optimal for CPU. 'chw' format, call 'channel first', is for MCU with hardware AI accelerator (such as Kendryte K210). This setting only affects the format in the backend. the frontend will always use 'HWC' for data shape.
- About activation quantisat method options, check TensorRT notes for detail.
quantize_output()
quantize_output(model, x_test, quantize_method='max_min', layer_offset=True, calibrate_size=100):
This function is to check the output range and generate the output shifting list of each layer. It will automatically distinguish whether a layer can change its output Q format or not.
Arguments
- model: the trained Keras model
- x_test: the dataset for calibrating quantisation.
- quantize_method: Option between
'max_min'
and'kld'
. 'kld' indicated to use KLD method for activation quantisation (saturated). 'max_min', use min-max method (nonsaturated). - layer_offset: whether calculate the zero-point offset
- calibrate_size: how many data for calibration. TensorRT suggest 100 is enough. If
x_test
is longger than this value, it will randomly pick the lenght from thex_test
.
Return
- The 2d shifting list with
list[][0]=shift
,list[][1]=offset
Notes
- Checking output range of each layer is essential in deploying. It is a part of the quantisation process.
generate_weights()
quantize_weights(model, name='weights.h', format='hwc', per_channel_quant=True, layer_q_list=None)
Scans all the layer which includes weights, quantise the weights and put them into the c header.
Arguments
- model: the trained Keras model
- name: the c file name to store weigths.
- format: indicate the backend format, options between
'hwc'
and'chw'
. See notes in generate_model() - per_channel_quant:
true
quantise layers (Conv layers) in channel-wise (per-axis).false
, layer-wise (per-tensor) - shift_list: the shift list returned by
layers_output_ranges(model, x_test)
Notes
- Use function individually when willing to use non-supported operation by
generate_model()
evaluate_model()
def evaluate_model(model, x_test, y_test, running_time=False, to_file='evaluation.txt'):
Evaluate the model after training. It do running time check, Top-k(k=1,2) accuracy, and confusion matrix.
Arguments
- model: the trained Keras model
- x_test: the dataset for testing (one hot format)
- y_test: the label for testing dataset
- running_time: check running time for one prediction
- to_file: save above metrics to the file .
generate_test_bin()
generate_test_bin(x, y, name='test_data_with_label.bin')
This is to generate a binary file for MCU side for model validation. The format of the file is shown below. Each batch size 128 started with 128 label, each label has converted from one-hot to number. The 'n' is the size of one data, such as 28x28=784 for mnist, or 32x32x3=3072 for cifar.
Label(0~127) | Data0 | Data1 | ... | Data127 | Label(128) | Data128... |
---|---|---|---|---|---|---|
128-byte | n-byte | n-byte | ... | n-byte | 128-byte | n-bytes... |
Arguments
- x: the quantised dataset for testing
- y: the label for testing dataset(one hot format)
- name: the label for testing dataset
Output - the binary file for testing on MCU.
Notes
The data must be quantised to the fixed-point range. For example,
MNIST range 0~255
whcih can be converted into 0~1
using ((float)mnist/255)
for training.
After training, it should be converted back to 0~127
for binary file because MCU only recognised q7 format.
Examples
This code snips shows training using above functions.
Please check examples for the utilisation.
# load data
(x_train, y_train), (x_test, y_test) = mnist.load_data()
# convert class vectors to one-hot
y_train = to_categorical(y_train, num_classes)
y_test = to_categorical(y_test, num_classes)
# quantize the range to 0~1
x_test = x_test.astype('float32')/255
x_train = x_train.astype('float32')/255
# (NNoM utils) generate the binary file for testing on MCU.
generate_test_bin(x_test*127, y_test, name='test_data.bin')
# Train
train(x_train,y_train, x_test, y_test, batch_size=128, epochs=epochs)
# (NNoM utils) evaluate
evaluate_model(model, x_test, y_test)
# (NNoM utils) Automatically deploying, use 100 pices for output range
generate_model(model, x_test[:100], name=weights)