distillation_models.py 2.0 KB
Newer Older
1
# copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
littletomatodonkey's avatar
littletomatodonkey 已提交
2
#
3 4 5
# 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
littletomatodonkey's avatar
littletomatodonkey 已提交
6 7 8
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
9 10 11 12 13
# 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.
littletomatodonkey's avatar
littletomatodonkey 已提交
14 15 16 17 18 19 20 21

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import math

import paddle
littletomatodonkey's avatar
littletomatodonkey 已提交
22
import paddle.nn as nn
littletomatodonkey's avatar
littletomatodonkey 已提交
23 24 25 26 27 28

from .resnet_vd import ResNet50_vd
from .mobilenet_v3 import MobileNetV3_large_x1_0
from .resnext101_wsl import ResNeXt101_32x16d_wsl

__all__ = [
littletomatodonkey's avatar
littletomatodonkey 已提交
29
    'ResNet50_vd_distill_MobileNetV3_large_x1_0',
littletomatodonkey's avatar
littletomatodonkey 已提交
30 31 32 33
    'ResNeXt101_32x16d_wsl_distill_ResNet50_vd'
]


littletomatodonkey's avatar
littletomatodonkey 已提交
34
class ResNet50_vd_distill_MobileNetV3_large_x1_0(nn.Layer):
35 36
    def __init__(self, class_dim=1000, **args):
        super(ResNet50_vd_distill_MobileNetV3_large_x1_0, self).__init__()
littletomatodonkey's avatar
littletomatodonkey 已提交
37

38 39 40 41 42 43
        self.teacher = ResNet50_vd(class_dim=class_dim, **args)

        self.student = MobileNetV3_large_x1_0(class_dim=class_dim, **args)

    def forward(self, input):
        teacher_label = self.teacher(input)
44
        teacher_label.stop_gradient = True
45 46 47 48

        student_label = self.student(input)

        return teacher_label, student_label
littletomatodonkey's avatar
littletomatodonkey 已提交
49 50


littletomatodonkey's avatar
littletomatodonkey 已提交
51
class ResNeXt101_32x16d_wsl_distill_ResNet50_vd(nn.Layer):
52
    def __init__(self, class_dim=1000, **args):
C
cuicheng01 已提交
53
        super(ResNeXt101_32x16d_wsl_distill_ResNet50_vd, self).__init__()
54 55 56 57 58 59 60 61 62 63

        self.teacher = ResNeXt101_32x16d_wsl(class_dim=class_dim, **args)

        self.student = ResNet50_vd(class_dim=class_dim, **args)

    def forward(self, input):
        teacher_label = self.teacher(input)
        teacher_label.stop_gradient = True

        student_label = self.student(input)
littletomatodonkey's avatar
littletomatodonkey 已提交
64

C
cuicheng01 已提交
65
        return teacher_label, student_label