| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- """ Squeeze-and-Excitation Channel Attention
- An SE implementation originally based on PyTorch SE-Net impl.
- Has since evolved with additional functionality / configuration.
- Paper: `Squeeze-and-Excitation Networks` - https://arxiv.org/abs/1709.01507
- Also included is Effective Squeeze-Excitation (ESE).
- Paper: `CenterMask : Real-Time Anchor-Free Instance Segmentation` - https://arxiv.org/abs/1911.06667
- Hacked together by / Copyright 2021 Ross Wightman
- """
- from typing import Optional, Tuple, Type, Union
- from torch import nn as nn
- from .create_act import create_act_layer
- from .helpers import make_divisible
- class SEModule(nn.Module):
- """ SE Module as defined in original SE-Nets with a few additions
- Additions include:
- * divisor can be specified to keep channels % div == 0 (default: 8)
- * reduction channels can be specified directly by arg (if rd_channels is set)
- * reduction channels can be specified by float rd_ratio (default: 1/16)
- * global max pooling can be added to the squeeze aggregation
- * customizable activation, normalization, and gate layer
- """
- def __init__(
- self,
- channels: int,
- rd_ratio: float = 1. / 16,
- rd_channels: Optional[int] = None,
- rd_divisor: int = 8,
- add_maxpool: bool = False,
- bias: bool = True,
- act_layer: Type[nn.Module] = nn.ReLU,
- norm_layer: Optional[Type[nn.Module]] = None,
- gate_layer: Union[str, Type[nn.Module]] = 'sigmoid',
- device=None,
- dtype=None,
- ):
- dd = {'device': device, 'dtype': dtype}
- super().__init__()
- self.add_maxpool = add_maxpool
- if not rd_channels:
- rd_channels = make_divisible(channels * rd_ratio, rd_divisor, round_limit=0.)
- self.fc1 = nn.Conv2d(channels, rd_channels, kernel_size=1, bias=bias, **dd)
- self.bn = norm_layer(rd_channels, **dd) if norm_layer else nn.Identity()
- self.act = create_act_layer(act_layer, inplace=True)
- self.fc2 = nn.Conv2d(rd_channels, channels, kernel_size=1, bias=bias, **dd)
- self.gate = create_act_layer(gate_layer)
- def forward(self, x):
- x_se = x.mean((2, 3), keepdim=True)
- if self.add_maxpool:
- # experimental codepath, may remove or change
- x_se = 0.5 * x_se + 0.5 * x.amax((2, 3), keepdim=True)
- x_se = self.fc1(x_se)
- x_se = self.act(self.bn(x_se))
- x_se = self.fc2(x_se)
- return x * self.gate(x_se)
- SqueezeExcite = SEModule # alias
- class EffectiveSEModule(nn.Module):
- """ 'Effective Squeeze-Excitation
- From `CenterMask : Real-Time Anchor-Free Instance Segmentation` - https://arxiv.org/abs/1911.06667
- """
- def __init__(
- self,
- channels: int,
- add_maxpool: bool = False,
- gate_layer: Union[str, Type[nn.Module]] = 'hard_sigmoid',
- device=None,
- dtype=None,
- **_,
- ):
- dd = {'device': device, 'dtype': dtype}
- super().__init__()
- self.add_maxpool = add_maxpool
- self.fc = nn.Conv2d(channels, channels, kernel_size=1, padding=0, device=device, dtype=dtype)
- self.gate = create_act_layer(gate_layer)
- def forward(self, x):
- x_se = x.mean((2, 3), keepdim=True)
- if self.add_maxpool:
- # experimental codepath, may remove or change
- x_se = 0.5 * x_se + 0.5 * x.amax((2, 3), keepdim=True)
- x_se = self.fc(x_se)
- return x * self.gate(x_se)
- EffectiveSqueezeExcite = EffectiveSEModule # alias
- class SqueezeExciteCl(nn.Module):
- """ SE Module as defined in original SE-Nets with a few additions
- Additions include:
- * divisor can be specified to keep channels % div == 0 (default: 8)
- * reduction channels can be specified directly by arg (if rd_channels is set)
- * reduction channels can be specified by float rd_ratio (default: 1/16)
- * global max pooling can be added to the squeeze aggregation
- * customizable activation, normalization, and gate layer
- """
- def __init__(
- self,
- channels: int,
- rd_ratio: float = 1. / 16,
- rd_channels: Optional[int] = None,
- rd_divisor: int = 8,
- bias: bool = True,
- act_layer: Type[nn.Module] = nn.ReLU,
- gate_layer: Union[str, Type[nn.Module]] = 'sigmoid',
- device=None,
- dtype=None,
- ):
- dd = {'device': device, 'dtype': dtype}
- super().__init__()
- if not rd_channels:
- rd_channels = make_divisible(channels * rd_ratio, rd_divisor, round_limit=0.)
- self.fc1 = nn.Linear(channels, rd_channels, bias=bias, **dd)
- self.act = create_act_layer(act_layer, inplace=True)
- self.fc2 = nn.Linear(rd_channels, channels, bias=bias, **dd)
- self.gate = create_act_layer(gate_layer)
- def forward(self, x):
- x_se = x.mean((1, 2), keepdims=True) # FIXME avg dim [1:n-1], don't assume 2D NHWC
- x_se = self.fc1(x_se)
- x_se = self.act(x_se)
- x_se = self.fc2(x_se)
- return x * self.gate(x_se)
|