__init__.py 3.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2020 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.

F
Feng Ni 已提交
15 16 17
from . import distill_loss
from . import distill_model
from . import ofa
18
from . import prune
B
Bai Yifan 已提交
19
from . import quant
M
minghaoBD 已提交
20
from . import unstructured_prune
21

F
Feng Ni 已提交
22 23 24
from .distill_loss import *
from .distill_model import *
from .ofa import *
25
from .prune import *
B
Bai Yifan 已提交
26
from .quant import *
M
minghaoBD 已提交
27
from .unstructured_prune import *
28 29 30 31 32 33 34 35 36

import yaml
from ppdet.core.workspace import load_config
from ppdet.utils.checkpoint import load_pretrain_weight


def build_slim_model(cfg, slim_cfg, mode='train'):
    with open(slim_cfg) as f:
        slim_load_cfg = yaml.load(f, Loader=yaml.Loader)
37

38 39 40 41
    if mode != 'train' and slim_load_cfg['slim'] == 'Distill':
        return cfg

    if slim_load_cfg['slim'] == 'Distill':
42 43 44
        if "slim_method" in slim_load_cfg and slim_load_cfg[
                'slim_method'] == "FGD":
            model = FGDDistillModel(cfg, slim_cfg)
45 46 47
        elif "slim_method" in slim_load_cfg and slim_load_cfg[
                'slim_method'] == "LD":
            model = LDDistillModel(cfg, slim_cfg)
D
Double_V 已提交
48 49 50
        elif "slim_method" in slim_load_cfg and slim_load_cfg[
                'slim_method'] == "CWD":
            model = CWDDistillModel(cfg, slim_cfg)
F
Feng Ni 已提交
51 52 53
        elif "slim_method" in slim_load_cfg and slim_load_cfg[
                'slim_method'] == "PPYOLOEDistill":
            model = PPYOLOEDistillModel(cfg, slim_cfg)
54
        else:
F
Feng Ni 已提交
55
            # common distillation model
56
            model = DistillModel(cfg, slim_cfg)
57
        cfg['model'] = model
C
Chang Xu 已提交
58
        cfg['slim_type'] = cfg.slim
C
Chang Xu 已提交
59 60 61 62 63 64
    elif slim_load_cfg['slim'] == 'OFA':
        load_config(slim_cfg)
        model = create(cfg.architecture)
        load_pretrain_weight(model, cfg.weights)
        slim = create(cfg.slim)
        cfg['slim'] = slim
C
Chang Xu 已提交
65 66
        cfg['model'] = slim(model, model.state_dict())
        cfg['slim_type'] = cfg.slim
67 68 69 70 71 72 73 74 75 76 77 78 79
    elif slim_load_cfg['slim'] == 'DistillPrune':
        if mode == 'train':
            model = DistillModel(cfg, slim_cfg)
            pruner = create(cfg.pruner)
            pruner(model.student_model)
        else:
            model = create(cfg.architecture)
            weights = cfg.weights
            load_config(slim_cfg)
            pruner = create(cfg.pruner)
            model = pruner(model)
            load_pretrain_weight(model, weights)
        cfg['model'] = model
80
        cfg['slim_type'] = cfg.slim
G
Guanghua Yu 已提交
81 82 83 84 85 86
    elif slim_load_cfg['slim'] == 'PTQ':
        model = create(cfg.architecture)
        load_config(slim_cfg)
        load_pretrain_weight(model, cfg.weights)
        slim = create(cfg.slim)
        cfg['slim'] = slim
C
Chang Xu 已提交
87 88
        cfg['model'] = slim(model)
        cfg['slim_type'] = cfg.slim
M
minghaoBD 已提交
89 90 91 92 93 94
    elif slim_load_cfg['slim'] == 'UnstructuredPruner':
        load_config(slim_cfg)
        slim = create(cfg.slim)
        cfg['slim_type'] = cfg.slim
        cfg['slim'] = slim
        cfg['unstructured_prune'] = True
95 96 97 98 99 100
    else:
        load_config(slim_cfg)
        model = create(cfg.architecture)
        if mode == 'train':
            load_pretrain_weight(model, cfg.pretrain_weights)
        slim = create(cfg.slim)
101
        cfg['slim_type'] = cfg.slim
G
Guanghua Yu 已提交
102
        # TODO: fix quant export model in framework.
103
        if mode == 'test' and 'QAT' in slim_load_cfg['slim']:
G
Guanghua Yu 已提交
104
            slim.quant_config['activation_preprocess_type'] = None
105
        cfg['model'] = slim(model)
G
Guanghua Yu 已提交
106
        cfg['slim'] = slim
107 108 109 110
        if mode != 'train':
            load_pretrain_weight(cfg['model'], cfg.weights)

    return cfg