forked from sony/model_optimization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_keras_mobilenet.py
92 lines (73 loc) · 3.98 KB
/
example_keras_mobilenet.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
# 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 import MobileNet
"""
This tutorial demonstrates how a model (more specifically, MobileNetV1) can be
quantized and optimized using the Model Compression Toolkit (MCT).
"""
####################################
# 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
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: A model has two input tensors - one with input shape of [32 X 32 X 3] and the second with
# an input shape of [224 X 224 X 3]. 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, 3, 32, 32), (20, 3, 224, 224)].
def representative_data_gen() -> list:
return [image_data_loader.sample()]
# Get a TargetPlatformModel object that models the hardware for the quantized model inference.
# The model determines the quantization methods to use during the MCT optimization process.
# Here, for example, we use the default target platform model that is attached to a Tensorflow
# layers representation.
target_platform_cap = mct.get_target_platform_capabilities('tensorflow', 'default')
# Create a model and quantize it using the representative_data_gen as the calibration images.
# Set the number of calibration iterations to 10.
model = MobileNet()
quantized_model, quantization_info = mct.keras_post_training_quantization(model,
representative_data_gen,
target_platform_capabilities=target_platform_cap,
n_iter=10)