vgg_variant.py 822 字节
Newer Older
B
Bin Lu 已提交
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
import paddle
from paddle.nn import Sigmoid
from ppcls.arch.backbone.legendary_models.vgg import VGG19
 
__all__ = ["VGG19Sigmoid"]
 
 
class SigmoidSuffix(paddle.nn.Layer):
    def __init__(self, origin_layer):
        super(SigmoidSuffix, self).__init__()
        self.origin_layer = origin_layer
        self.sigmoid = Sigmoid()
 
    def forward(self, *input, res_dict=None, **kwargs):
        x = self.origin_layer(input)
        x = self.sigmoid(x)
        return x
 
 
def VGG19Sigmoid(pretrained=False, use_ssld=False, **kwargs):
    def replace_function(origin_layer):
        new_layer = SigmoidSuffix(origin_layer)
        return new_layer
 
    match_re = "linear_2"
    model = VGG19(pretrained=pretrained, use_ssld=use_ssld, **kwargs)
    model.replace_sub(match_re, replace_function, True)
    return model