-
Notifications
You must be signed in to change notification settings - Fork 391
/
adaround.py
251 lines (208 loc) · 10.9 KB
/
adaround.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
# =============================================================================
#
# @@-COPYRIGHT-START-@@
#
# Copyright (c) 2021, Qualcomm Innovation Center, Inc. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its contributors
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# SPDX-License-Identifier: BSD-3-Clause
#
# @@-COPYRIGHT-END-@@
#
# =============================================================================
"""
This file demonstrates the use of quantization using AIMET Adaround
technique.
"""
import argparse
import copy
import logging
import os
from datetime import datetime
from functools import partial
from torchvision import models
import torch
import torch.utils.data as torch_data
# imports for AIMET
import aimet_common
from aimet_common.defs import QuantScheme
from aimet_torch.v1.adaround.adaround_weight import Adaround, AdaroundParameters
from aimet_torch.v1.batch_norm_fold import fold_all_batch_norms
from aimet_torch.v1.quantsim import QuantizationSimModel
# imports for data pipelines
from Examples.common import image_net_config
from Examples.torch.utils.image_net_data_loader import ImageNetDataLoader
from Examples.torch.utils.image_net_evaluator import ImageNetEvaluator
logger = logging.getLogger('TorchAdaround')
formatter = logging.Formatter('%(asctime)s : %(name)s - %(levelname)s - %(message)s')
logging.basicConfig(format=formatter)
###
# This script utilizes AIMET to apply Adaround on a resnet18 pretrained model with
# the ImageNet data set. This is intended as a working example to show how AIMET
# APIs can be invoked.
# Scenario parameters:
# - AIMET quantization accuracy using simulation model
# - Quant Scheme: 'tf_enhanced'
# - rounding_mode: 'nearest'
# - default_output_bw: 8, default_param_bw: 8
# - Encoding computation with or without encodings file
# - Encoding computation using 5 batches of data
# - AIMET Adaround
# - num of batches for adarounding: 5
# - bitwidth for quantizing layer parameters: 4
# - Quant Scheme: 'tf_enhanced'
# - Remaining Parameters: default
# - Input shape: [1, 3, 224, 224]
###
class ImageNetDataPipeline:
"""
Provides APIs for model quantization using evaluation and finetuning.
"""
def __init__(self, _config: argparse.Namespace):
"""
:param _config:
"""
self._config = _config
def evaluate(self, model: torch.nn.Module, iterations: int = None, use_cuda: bool = False) -> float:
"""
Evaluate the specified model using the specified number of samples from the validation set.
:param model: The model to be evaluated.
:param iterations: The number of batches of the dataset.
:param use_cuda: If True then use a GPU for inference.
:return: The accuracy for the sample with the maximum accuracy.
"""
# your code goes here instead of the example from below
evaluator = ImageNetEvaluator(self._config.dataset_dir, image_size=image_net_config.dataset['image_size'],
batch_size=image_net_config.evaluation['batch_size'],
num_workers=image_net_config.evaluation['num_workers'])
return evaluator.evaluate(model, iterations, use_cuda)
def apply_adaround_and_find_quantized_accuracy(model: torch.nn.Module, evaluator: aimet_common.defs.EvalFunction,
data_loader: torch_data.DataLoader, use_cuda: bool = False,
logdir: str = '') -> float:
"""
Quantizes the model using AIMET's adaround feature, and saves the model.
:param model: The loaded model
:param evaluator: The Eval function to use for evaluation
:param data_loader: The dataloader to be passed into the AdaroundParameters api
:param use_cuda: The cuda device.
:param logdir: Path to a directory for logging.
:return: Accuracy of model on this quantsim
"""
bn_folded_model = copy.deepcopy(model)
_ = fold_all_batch_norms(bn_folded_model, input_shapes=(1, 3, 224, 224))
input_shape = (1, image_net_config.dataset['image_channels'],
image_net_config.dataset['image_width'],
image_net_config.dataset['image_height'],)
if use_cuda:
dummy_input = torch.rand(input_shape).cuda()
else:
dummy_input = torch.rand(input_shape)
# Number of batches to use for computing encodings
# Only 5 batches are used here to speed up the process, also the
# number of images in these 5 batches should be sufficient for
# compute encodings
iterations = 5
params = AdaroundParameters(data_loader=data_loader, num_batches=5)
ada_model = Adaround.apply_adaround(bn_folded_model, dummy_input, params,
path=logdir, filename_prefix='adaround', default_param_bw=8,
default_quant_scheme=QuantScheme.post_training_tf_enhanced)
quantsim = QuantizationSimModel(model=ada_model, dummy_input=dummy_input,
quant_scheme=QuantScheme.post_training_tf_enhanced,
rounding_mode='nearest', default_output_bw=8, default_param_bw=8,
in_place=False)
# Set and freeze parameter encodings. These encodings are associated with the Adarounded parameters.
# This will make sure compute_encodings() doesn't alter the parameter encodings.
quantsim.set_and_freeze_param_encodings(encoding_path=os.path.join(logdir, 'adaround.encodings'))
quantsim.compute_encodings(forward_pass_callback=partial(evaluator, use_cuda=use_cuda),
forward_pass_callback_args=iterations)
quantsim.export(path=logdir, filename_prefix='adaround_resnet', dummy_input=dummy_input.cpu())
accuracy = evaluator(quantsim.model, use_cuda=use_cuda)
return accuracy
def adaround_example(config: argparse.Namespace):
"""
1. Instantiates Data Pipeline for evaluation
2. Loads the pretrained resnet18 Pytorch model
3. Calculates Model accuracy
3.1. Calculates floating point accuracy
3.2. Calculates Quant Simulator accuracy
4. Applies AIMET Adaround and calculates QuantSim accuracy
4.1. Applies AIMET Adaround
4.2. Calculates Adaround applied model Quant Simulator accuracy
4.3. Exports Adaround applied model so it is ready to be run on-target
:param config: This argparse.Namespace config expects following parameters:
tfrecord_dir: Path to a directory containing ImageNet TFRecords.
This folder should conatin files starting with:
'train*': for training records and 'validation*': for validation records
use_cuda: A boolean var to indicate to run the test on GPU.
logdir: Path to a directory for logging.
"""
# Instantiate Data Pipeline for evaluation and training
data_pipeline = ImageNetDataPipeline(config)
# Load the pretrained resnet18 model
model = models.resnet18(pretrained=True)
if config.use_cuda:
model.to(torch.device('cuda'))
model = model.eval()
# Calculate FP32 accuracy
accuracy = data_pipeline.evaluate(model, use_cuda=config.use_cuda)
logger.info("Original Model top-1 accuracy = %.2f", accuracy)
logger.info("Applying Adaround")
# Applying Adaround
# Optimally rounds the parameters of the model
data_loader = ImageNetDataLoader(is_training=False, images_dir=config.dataset_dir,
image_size=image_net_config.dataset['image_size']).data_loader
accuracy = apply_adaround_and_find_quantized_accuracy(model=model, evaluator=data_pipeline.evaluate,
data_loader=data_loader, use_cuda=config.use_cuda,
logdir=config.logdir)
logger.info("After applying Adaround, top-1 accuracy = %.2f", accuracy)
logger.info("Adaround Complete")
if __name__ == '__main__':
default_logdir = os.path.join("benchmark_output", "adaround_" + datetime.now().strftime("%Y-%m-%d-%H-%M-%S"))
parser = argparse.ArgumentParser(
description='Apply Adaround on pretrained ResNet18 model and evaluate on ImageNet dataset')
parser.add_argument('--dataset_dir', type=str,
required=True,
help="Path to a directory containing ImageNet dataset.\n\
This folder should conatin at least 2 subfolders:\n\
'train': for training dataset and 'val': for validation dataset")
parser.add_argument('--use_cuda', action='store_true',
required=True,
help='Add this flag to run the test on GPU.')
parser.add_argument('--logdir', type=str,
default=default_logdir,
help="Path to a directory for logging.\
Default value is 'benchmark_output/weight_svd_<Y-m-d-H-M-S>'")
_config = parser.parse_args()
os.makedirs(_config.logdir, exist_ok=True)
fileHandler = logging.FileHandler(os.path.join(_config.logdir, "test.log"))
fileHandler.setFormatter(formatter)
logger.addHandler(fileHandler)
if _config.use_cuda and not torch.cuda.is_available():
logger.error('use_cuda is selected but no cuda device found.')
raise RuntimeError("Found no CUDA Device while use_cuda is selected")
adaround_example(_config)