forked from sony/model_optimization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_keras_mobilenet_mixed_precision.py
120 lines (97 loc) · 5.85 KB
/
example_keras_mobilenet_mixed_precision.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# Copyright 2021 Sony Semiconductor Israel, Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
import model_compression_toolkit as mct
from tensorflow.keras.applications.mobilenet_v2 import MobileNetV2
"""
Mixed precision is a method for quantizing a model using different bit widths
for different layers of the model.
This tutorial demonstrates how to use mixed-precision in MCT to
quantize MobileNetV2.
MCT supports mixed-precision for both weights and activation.
"""
####################################
# Preprocessing images
####################################
import cv2
import numpy as np
MEAN = 127.5
STD = 127.5
RESIZE_SCALE = 256 / 224
SIZE = 224
def resize(x):
resize_side = max(RESIZE_SCALE * SIZE / x.shape[0], RESIZE_SCALE * SIZE / x.shape[1])
height_tag = int(np.round(resize_side * x.shape[0]))
width_tag = int(np.round(resize_side * x.shape[1]))
resized_img = cv2.resize(x, (width_tag, height_tag))
offset_height = int((height_tag - SIZE) / 2)
offset_width = int((width_tag - SIZE) / 2)
cropped_img = resized_img[offset_height:offset_height + SIZE, offset_width:offset_width + SIZE]
return cropped_img
def normalization(x):
return (x - MEAN) / STD
if __name__ == '__main__':
# Set the batch size of the images at each calibration iteration.
batch_size = 50
# Set the path to the folder of images to load and use for the representative dataset.
# Notice that the folder have to contain at least one image.
folder = '/path/to/images/folder'
# Create a representative data generator, which returns a list of images.
# The images can be preprocessed using a list of preprocessing functions.
from model_compression_toolkit import FolderImageLoader, MixedPrecisionQuantizationConfig
image_data_loader = FolderImageLoader(folder,
preprocessing=[resize, normalization],
batch_size=batch_size)
# Create a Callable representative dataset for calibration purposes.
# The function should be called without any arguments, and should return a list numpy arrays (array for each
# model's input).
# For example: if the model has two input tensors - one with input shape of 32X32X3 and the second with input
# shape of 224X224X3, and we calibrate the model using batches of 20 images,
# calling representative_data_gen() should return a list
# of two numpy.ndarray objects where the arrays' shapes are [(20, 32, 32, 3), (20, 224, 224, 3)].
def representative_data_gen() -> list:
return [image_data_loader.sample()]
# Create a model to quantize.
model = MobileNetV2()
# Set the number of calibration iterations to 10.
num_iter = 10
# Create a mixed-precision quantization configuration with possible mixed-precision search options.
# MCT will search a mixed-precision configuration (namely, bit-width for each layer)
# and quantize the model according to this configuration.
# The candidates bit-width for quantization should be defined in the target platform model:
configuration = MixedPrecisionQuantizationConfig()
# Get a TargetPlatformCapabilities object that models the hardware for the quantized model inference.
# Here, for example, we use the default platform that is attached to a Tensorflow layers representation.
target_platform_cap = mct.get_target_platform_capabilities('tensorflow', 'default')
# Get KPI information to constraint your model's memory size.
# Retrieve a KPI object with helpful information of each KPI metric,
# to constraint the quantized model to the desired memory size.
kpi_data = mct.keras_kpi_data(model,
representative_data_gen,
configuration,
target_platform_capabilities=target_platform_cap)
# Set a constraint for each of the KPI metrics.
# Create a KPI object to limit our returned model's size. Note that this values affects only layers and attributes
# that should be quantized (for example, the kernel of Conv2D in Keras will be affected by this value,
# while the bias will not):
kpi = mct.KPI(kpi_data.weights_memory * 0.75, # About 0.75 of the model's weights memory size when quantized with 8 bits.
kpi_data.activation_memory * 0.5) # About 0.5 of the model's activation size when quantized with 8 bits.
# It is also possible to constraint only part of the KPI metric, e.g., by providing only weights_memory target
# in the past KPI object, e.g., kpi = mct.KPI(kpi_data.weights_memory * 0.75)
quantized_model, quantization_info = mct.keras_post_training_quantization_mixed_precision(model,
representative_data_gen,
target_kpi=kpi,
n_iter=num_iter,
quant_config=configuration,
target_platform_capabilities=target_platform_cap)