215 lines
7.2 KiB
Python
215 lines
7.2 KiB
Python
# Copyright (c) 2023 PaddlePaddle Authors. 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 logging
|
|
import os
|
|
import unittest
|
|
|
|
import numpy as np
|
|
from test_quant_aware import MobileNet
|
|
|
|
import paddle
|
|
from paddle.static.quantization.quanter import convert, quant_aware
|
|
|
|
logging.basicConfig(level="INFO", format="%(message)s")
|
|
|
|
|
|
class TestQuantAwareBase(unittest.TestCase):
|
|
def setUp(self):
|
|
paddle.enable_static()
|
|
|
|
def get_save_int8(self):
|
|
return False
|
|
|
|
def generate_config(self):
|
|
config = {
|
|
'weight_quantize_type': 'channel_wise_abs_max',
|
|
'activation_quantize_type': 'moving_average_abs_max',
|
|
'quantize_op_types': ['depthwise_conv2d', 'mul', 'conv2d'],
|
|
'onnx_format': False,
|
|
}
|
|
return config
|
|
|
|
def test_accuracy(self):
|
|
main_prog = paddle.static.Program()
|
|
with paddle.static.program_guard(main_prog):
|
|
image = paddle.static.data(
|
|
name='image', shape=[None, 1, 28, 28], dtype='float32'
|
|
)
|
|
label = paddle.static.data(
|
|
name='label', shape=[None, 1], dtype='int64'
|
|
)
|
|
model = MobileNet()
|
|
out = model.net(input=image, class_dim=10)
|
|
cost = paddle.nn.functional.loss.cross_entropy(
|
|
input=out, label=label
|
|
)
|
|
avg_cost = paddle.mean(x=cost)
|
|
acc_top1 = paddle.metric.accuracy(input=out, label=label, k=1)
|
|
acc_top5 = paddle.metric.accuracy(input=out, label=label, k=5)
|
|
optimizer = paddle.optimizer.Momentum(
|
|
momentum=0.9,
|
|
learning_rate=0.01,
|
|
weight_decay=paddle.regularizer.L2Decay(4e-5),
|
|
)
|
|
optimizer.minimize(avg_cost)
|
|
val_prog = main_prog.clone(for_test=True)
|
|
|
|
place = (
|
|
paddle.CUDAPlace(0)
|
|
if paddle.is_compiled_with_cuda()
|
|
else paddle.CPUPlace()
|
|
)
|
|
exe = paddle.static.Executor(place)
|
|
exe.run(paddle.static.default_startup_program())
|
|
|
|
def transform(x):
|
|
return np.reshape(x, [1, 28, 28])
|
|
|
|
train_dataset = paddle.vision.datasets.MNIST(
|
|
mode='train', backend='cv2', transform=transform
|
|
)
|
|
test_dataset = paddle.vision.datasets.MNIST(
|
|
mode='test', backend='cv2', transform=transform
|
|
)
|
|
batch_size = 64 if os.environ.get('DATASET') == 'full' else 8
|
|
train_loader = paddle.io.DataLoader(
|
|
train_dataset,
|
|
places=place,
|
|
feed_list=[image, label],
|
|
drop_last=True,
|
|
return_list=False,
|
|
batch_size=batch_size,
|
|
)
|
|
valid_loader = paddle.io.DataLoader(
|
|
test_dataset,
|
|
places=place,
|
|
feed_list=[image, label],
|
|
batch_size=batch_size,
|
|
return_list=False,
|
|
)
|
|
|
|
def train(program):
|
|
iter = 0
|
|
stop_iter = None if os.environ.get('DATASET') == 'full' else 10
|
|
for data in train_loader():
|
|
cost, top1, top5 = exe.run(
|
|
program,
|
|
feed=data,
|
|
fetch_list=[avg_cost, acc_top1, acc_top5],
|
|
)
|
|
iter += 1
|
|
if iter % 100 == 0:
|
|
logging.info(
|
|
f'train iter={iter}, avg loss {cost}, acc_top1 {top1}, acc_top5 {top5}'
|
|
)
|
|
if stop_iter is not None and iter == stop_iter:
|
|
break
|
|
|
|
def test(program):
|
|
iter = 0
|
|
stop_iter = None if os.environ.get('DATASET') == 'full' else 10
|
|
result = [[], [], []]
|
|
for data in valid_loader():
|
|
cost, top1, top5 = exe.run(
|
|
program,
|
|
feed=data,
|
|
fetch_list=[avg_cost, acc_top1, acc_top5],
|
|
)
|
|
iter += 1
|
|
if iter % 100 == 0:
|
|
logging.info(
|
|
f'eval iter={iter}, avg loss {cost}, acc_top1 {top1}, acc_top5 {top5}'
|
|
)
|
|
result[0].append(cost)
|
|
result[1].append(top1)
|
|
result[2].append(top5)
|
|
if stop_iter is not None and iter == stop_iter:
|
|
break
|
|
logging.info(
|
|
f' avg loss {np.mean(result[0])}, acc_top1 {np.mean(result[1])}, acc_top5 {np.mean(result[2])}'
|
|
)
|
|
return np.mean(result[1]), np.mean(result[2])
|
|
|
|
train(main_prog)
|
|
top1_1, top5_1 = test(main_prog)
|
|
|
|
config = self.generate_config()
|
|
quant_train_prog = quant_aware(main_prog, place, config, for_test=False)
|
|
quant_eval_prog = quant_aware(val_prog, place, config, for_test=True)
|
|
|
|
train(quant_train_prog)
|
|
save_int8 = self.get_save_int8()
|
|
if save_int8:
|
|
convert_eval_prog, _ = convert(
|
|
quant_eval_prog, place, config, save_int8=save_int8
|
|
)
|
|
else:
|
|
convert_eval_prog = convert(
|
|
quant_eval_prog, place, config, save_int8=save_int8
|
|
)
|
|
|
|
top1_2, top5_2 = test(convert_eval_prog)
|
|
# values before quantization and after quantization should be close
|
|
logging.info(f"before quantization: top1: {top1_1}, top5: {top5_1}")
|
|
logging.info(f"after quantization: top1: {top1_2}, top5: {top5_2}")
|
|
|
|
|
|
class TestQuantAwareNone(TestQuantAwareBase):
|
|
def generate_config(self):
|
|
config = None
|
|
return config
|
|
|
|
|
|
class TestQuantAwareTRT(TestQuantAwareBase):
|
|
def generate_config(self):
|
|
config = {
|
|
'weight_quantize_type': 'channel_wise_abs_max',
|
|
'activation_quantize_type': 'moving_average_abs_max',
|
|
'quantize_op_types': ['depthwise_conv2d', 'mul', 'conv2d'],
|
|
'onnx_format': False,
|
|
'for_tensorrt': True,
|
|
}
|
|
return config
|
|
|
|
|
|
class TestQuantAwareFullQuantize(TestQuantAwareBase):
|
|
def generate_config(self):
|
|
config = {
|
|
'weight_quantize_type': 'channel_wise_abs_max',
|
|
'activation_quantize_type': 'moving_average_abs_max',
|
|
'quantize_op_types': ['depthwise_conv2d', 'mul', 'conv2d'],
|
|
'onnx_format': False,
|
|
'is_full_quantize': True,
|
|
}
|
|
return config
|
|
|
|
|
|
class TestQuantAwareSaveInt8(TestQuantAwareBase):
|
|
def generate_config(self):
|
|
config = {
|
|
'weight_quantize_type': 'channel_wise_abs_max',
|
|
'activation_quantize_type': 'moving_average_abs_max',
|
|
'quantize_op_types': ['depthwise_conv2d', 'mul', 'conv2d'],
|
|
'onnx_format': False,
|
|
}
|
|
return config
|
|
|
|
def get_save_int8(self):
|
|
return True
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|