| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608 |
- """ Deep Layer Aggregation and DLA w/ Res2Net
- DLA original adapted from Official Pytorch impl at: https://github.com/ucbdrive/dla
- DLA Paper: `Deep Layer Aggregation` - https://arxiv.org/abs/1707.06484
- Res2Net additions from: https://github.com/gasvn/Res2Net/
- Res2Net Paper: `Res2Net: A New Multi-scale Backbone Architecture` - https://arxiv.org/abs/1904.01169
- """
- import math
- from typing import List, Optional, Tuple, Type
- import torch
- import torch.nn as nn
- from timm.data import IMAGENET_DEFAULT_MEAN, IMAGENET_DEFAULT_STD
- from timm.layers import create_classifier
- from ._builder import build_model_with_cfg
- from ._registry import register_model, generate_default_cfgs
- __all__ = ['DLA']
- class DlaBasic(nn.Module):
- """DLA Basic"""
- def __init__(
- self,
- inplanes: int,
- planes: int,
- stride: int = 1,
- dilation: int = 1,
- device=None,
- dtype=None,
- **_,
- ):
- dd = {'device': device, 'dtype': dtype}
- super().__init__()
- self.conv1 = nn.Conv2d(
- inplanes,
- planes,
- kernel_size=3,
- stride=stride,
- padding=dilation,
- bias=False,
- dilation=dilation,
- **dd,
- )
- self.bn1 = nn.BatchNorm2d(planes, **dd)
- self.relu = nn.ReLU(inplace=True)
- self.conv2 = nn.Conv2d(
- planes,
- planes,
- kernel_size=3,
- stride=1,
- padding=dilation,
- bias=False,
- dilation=dilation,
- **dd,
- )
- self.bn2 = nn.BatchNorm2d(planes, **dd)
- self.stride = stride
- def forward(self, x, shortcut: Optional[torch.Tensor] = None, children: Optional[List[torch.Tensor]] = None):
- if shortcut is None:
- shortcut = x
- out = self.conv1(x)
- out = self.bn1(out)
- out = self.relu(out)
- out = self.conv2(out)
- out = self.bn2(out)
- out += shortcut
- out = self.relu(out)
- return out
- class DlaBottleneck(nn.Module):
- """DLA/DLA-X Bottleneck"""
- expansion = 2
- def __init__(
- self,
- inplanes: int,
- outplanes: int,
- stride: int = 1,
- dilation: int = 1,
- cardinality: int = 1,
- base_width: int = 64,
- device=None,
- dtype=None,
- ):
- dd = {'device': device, 'dtype': dtype}
- super().__init__()
- self.stride = stride
- mid_planes = int(math.floor(outplanes * (base_width / 64)) * cardinality)
- mid_planes = mid_planes // self.expansion
- self.conv1 = nn.Conv2d(inplanes, mid_planes, kernel_size=1, bias=False, **dd)
- self.bn1 = nn.BatchNorm2d(mid_planes, **dd)
- self.conv2 = nn.Conv2d(
- mid_planes,
- mid_planes,
- kernel_size=3,
- stride=stride,
- padding=dilation,
- bias=False,
- dilation=dilation,
- groups=cardinality,
- **dd,
- )
- self.bn2 = nn.BatchNorm2d(mid_planes, **dd)
- self.conv3 = nn.Conv2d(mid_planes, outplanes, kernel_size=1, bias=False, **dd)
- self.bn3 = nn.BatchNorm2d(outplanes, **dd)
- self.relu = nn.ReLU(inplace=True)
- def forward(self, x, shortcut: Optional[torch.Tensor] = None, children: Optional[List[torch.Tensor]] = None):
- if shortcut is None:
- shortcut = x
- out = self.conv1(x)
- out = self.bn1(out)
- out = self.relu(out)
- out = self.conv2(out)
- out = self.bn2(out)
- out = self.relu(out)
- out = self.conv3(out)
- out = self.bn3(out)
- out += shortcut
- out = self.relu(out)
- return out
- class DlaBottle2neck(nn.Module):
- """ Res2Net/Res2NeXT DLA Bottleneck
- Adapted from https://github.com/gasvn/Res2Net/blob/master/dla.py
- """
- expansion = 2
- def __init__(
- self,
- inplanes: int,
- outplanes: int,
- stride: int = 1,
- dilation: int = 1,
- scale: int = 4,
- cardinality: int = 8,
- base_width: int = 4,
- device=None,
- dtype=None,
- ):
- dd = {'device': device, 'dtype': dtype}
- super().__init__()
- self.is_first = stride > 1
- self.scale = scale
- mid_planes = int(math.floor(outplanes * (base_width / 64)) * cardinality)
- mid_planes = mid_planes // self.expansion
- self.width = mid_planes
- self.conv1 = nn.Conv2d(inplanes, mid_planes * scale, kernel_size=1, bias=False, **dd)
- self.bn1 = nn.BatchNorm2d(mid_planes * scale, **dd)
- num_scale_convs = max(1, scale - 1)
- convs = []
- bns = []
- for _ in range(num_scale_convs):
- convs.append(nn.Conv2d(
- mid_planes,
- mid_planes,
- kernel_size=3,
- stride=stride,
- padding=dilation,
- dilation=dilation,
- groups=cardinality,
- bias=False,
- **dd,
- ))
- bns.append(nn.BatchNorm2d(mid_planes, **dd))
- self.convs = nn.ModuleList(convs)
- self.bns = nn.ModuleList(bns)
- self.pool = nn.AvgPool2d(kernel_size=3, stride=stride, padding=1) if self.is_first else None
- self.conv3 = nn.Conv2d(mid_planes * scale, outplanes, kernel_size=1, bias=False, **dd)
- self.bn3 = nn.BatchNorm2d(outplanes, **dd)
- self.relu = nn.ReLU(inplace=True)
- def forward(self, x, shortcut: Optional[torch.Tensor] = None, children: Optional[List[torch.Tensor]] = None):
- if shortcut is None:
- shortcut = x
- out = self.conv1(x)
- out = self.bn1(out)
- out = self.relu(out)
- spx = torch.split(out, self.width, 1)
- spo = []
- sp = spx[0] # redundant, for torchscript
- for i, (conv, bn) in enumerate(zip(self.convs, self.bns)):
- if i == 0 or self.is_first:
- sp = spx[i]
- else:
- sp = sp + spx[i]
- sp = conv(sp)
- sp = bn(sp)
- sp = self.relu(sp)
- spo.append(sp)
- if self.scale > 1:
- if self.pool is not None: # self.is_first == True, None check for torchscript
- spo.append(self.pool(spx[-1]))
- else:
- spo.append(spx[-1])
- out = torch.cat(spo, 1)
- out = self.conv3(out)
- out = self.bn3(out)
- out += shortcut
- out = self.relu(out)
- return out
- class DlaRoot(nn.Module):
- def __init__(
- self,
- in_channels: int,
- out_channels: int,
- kernel_size: int,
- shortcut: bool,
- device=None,
- dtype=None,
- ):
- dd = {'device': device, 'dtype': dtype}
- super().__init__()
- self.conv = nn.Conv2d(
- in_channels,
- out_channels,
- 1,
- stride=1,
- bias=False,
- padding=(kernel_size - 1) // 2,
- **dd,
- )
- self.bn = nn.BatchNorm2d(out_channels, **dd)
- self.relu = nn.ReLU(inplace=True)
- self.shortcut = shortcut
- def forward(self, x_children: List[torch.Tensor]):
- x = self.conv(torch.cat(x_children, 1))
- x = self.bn(x)
- if self.shortcut:
- x += x_children[0]
- x = self.relu(x)
- return x
- class DlaTree(nn.Module):
- def __init__(
- self,
- levels: int,
- block: Type[nn.Module],
- in_channels: int,
- out_channels: int,
- stride: int = 1,
- dilation: int = 1,
- cardinality: int = 1,
- base_width: int = 64,
- level_root: bool = False,
- root_dim: int = 0,
- root_kernel_size: int = 1,
- root_shortcut: bool = False,
- device=None,
- dtype=None,
- ):
- dd = {'device': device, 'dtype': dtype}
- super().__init__()
- if root_dim == 0:
- root_dim = 2 * out_channels
- if level_root:
- root_dim += in_channels
- self.downsample = nn.MaxPool2d(stride, stride=stride) if stride > 1 else nn.Identity()
- self.project = nn.Identity()
- cargs = dict(dilation=dilation, cardinality=cardinality, base_width=base_width, **dd)
- if levels == 1:
- self.tree1 = block(in_channels, out_channels, stride, **cargs)
- self.tree2 = block(out_channels, out_channels, 1, **cargs)
- if in_channels != out_channels:
- # NOTE the official impl/weights have project layers in levels > 1 case that are never
- # used, I've moved the project layer here to avoid wasted params but old checkpoints will
- # need strict=False while loading.
- self.project = nn.Sequential(
- nn.Conv2d(in_channels, out_channels, kernel_size=1, stride=1, bias=False, **dd),
- nn.BatchNorm2d(out_channels, **dd))
- self.root = DlaRoot(root_dim, out_channels, root_kernel_size, root_shortcut, **dd)
- else:
- cargs.update(dict(root_kernel_size=root_kernel_size, root_shortcut=root_shortcut))
- self.tree1 = DlaTree(
- levels - 1,
- block,
- in_channels,
- out_channels,
- stride,
- root_dim=0,
- **cargs,
- )
- self.tree2 = DlaTree(
- levels - 1,
- block,
- out_channels,
- out_channels,
- root_dim=root_dim + out_channels,
- **cargs,
- )
- self.root = None
- self.level_root = level_root
- self.root_dim = root_dim
- self.levels = levels
- def forward(self, x, shortcut: Optional[torch.Tensor] = None, children: Optional[List[torch.Tensor]] = None):
- if children is None:
- children = []
- bottom = self.downsample(x)
- shortcut = self.project(bottom)
- if self.level_root:
- children.append(bottom)
- x1 = self.tree1(x, shortcut)
- if self.root is not None: # levels == 1
- x2 = self.tree2(x1)
- x = self.root([x2, x1] + children)
- else:
- children.append(x1)
- x = self.tree2(x1, None, children)
- return x
- class DLA(nn.Module):
- def __init__(
- self,
- levels: Tuple[int, ...],
- channels: Tuple[int, ...],
- output_stride: int = 32,
- num_classes: int = 1000,
- in_chans: int = 3,
- global_pool: str = 'avg',
- cardinality: int = 1,
- base_width: int = 64,
- block: Type[nn.Module] = DlaBottle2neck,
- shortcut_root: bool = False,
- drop_rate: float = 0.0,
- device=None,
- dtype=None,
- ):
- dd = {'device': device, 'dtype': dtype}
- super().__init__()
- self.channels = channels
- self.num_classes = num_classes
- self.in_chans = in_chans
- self.cardinality = cardinality
- self.base_width = base_width
- assert output_stride == 32 # FIXME support dilation
- self.base_layer = nn.Sequential(
- nn.Conv2d(in_chans, channels[0], kernel_size=7, stride=1, padding=3, bias=False, **dd),
- nn.BatchNorm2d(channels[0], **dd),
- nn.ReLU(inplace=True),
- )
- self.level0 = self._make_conv_level(channels[0], channels[0], levels[0], **dd)
- self.level1 = self._make_conv_level(channels[0], channels[1], levels[1], stride=2, **dd)
- cargs = dict(cardinality=cardinality, base_width=base_width, root_shortcut=shortcut_root, **dd)
- self.level2 = DlaTree(levels[2], block, channels[1], channels[2], 2, level_root=False, **cargs)
- self.level3 = DlaTree(levels[3], block, channels[2], channels[3], 2, level_root=True, **cargs)
- self.level4 = DlaTree(levels[4], block, channels[3], channels[4], 2, level_root=True, **cargs)
- self.level5 = DlaTree(levels[5], block, channels[4], channels[5], 2, level_root=True, **cargs)
- self.feature_info = [
- dict(num_chs=channels[0], reduction=1, module='level0'), # rare to have a meaningful stride 1 level
- dict(num_chs=channels[1], reduction=2, module='level1'),
- dict(num_chs=channels[2], reduction=4, module='level2'),
- dict(num_chs=channels[3], reduction=8, module='level3'),
- dict(num_chs=channels[4], reduction=16, module='level4'),
- dict(num_chs=channels[5], reduction=32, module='level5'),
- ]
- self.num_features = self.head_hidden_size = channels[-1]
- self.global_pool, self.head_drop, self.fc = create_classifier(
- self.num_features,
- self.num_classes,
- pool_type=global_pool,
- use_conv=True,
- drop_rate=drop_rate,
- **dd,
- )
- self.flatten = nn.Flatten(1) if global_pool else nn.Identity()
- for m in self.modules():
- if isinstance(m, nn.Conv2d):
- n = m.kernel_size[0] * m.kernel_size[1] * m.out_channels
- m.weight.data.normal_(0, math.sqrt(2. / n))
- elif isinstance(m, nn.BatchNorm2d):
- m.weight.data.fill_(1)
- m.bias.data.zero_()
- def _make_conv_level(self, inplanes: int, planes: int, convs: int, stride: int = 1, dilation: int = 1, device=None, dtype=None):
- dd = {'device': device, 'dtype': dtype}
- modules = []
- for i in range(convs):
- modules.extend([
- nn.Conv2d(
- inplanes,
- planes,
- kernel_size=3,
- stride=stride if i == 0 else 1,
- padding=dilation,
- bias=False,
- dilation=dilation,
- **dd,
- ),
- nn.BatchNorm2d(planes, **dd),
- nn.ReLU(inplace=True)])
- inplanes = planes
- return nn.Sequential(*modules)
- @torch.jit.ignore
- def group_matcher(self, coarse=False):
- matcher = dict(
- stem=r'^base_layer',
- blocks=r'^level(\d+)' if coarse else [
- # an unusual arch, this achieves somewhat more granularity without getting super messy
- (r'^level(\d+)\.tree(\d+)', None),
- (r'^level(\d+)\.root', (2,)),
- (r'^level(\d+)', (1,))
- ]
- )
- return matcher
- @torch.jit.ignore
- def set_grad_checkpointing(self, enable=True):
- assert not enable, 'gradient checkpointing not supported'
- @torch.jit.ignore
- def get_classifier(self) -> nn.Module:
- return self.fc
- def reset_classifier(self, num_classes: int, global_pool: str = 'avg'):
- self.num_classes = num_classes
- self.global_pool, self.fc = create_classifier(
- self.num_features, self.num_classes, pool_type=global_pool, use_conv=True)
- self.flatten = nn.Flatten(1) if global_pool else nn.Identity()
- def forward_features(self, x):
- x = self.base_layer(x)
- x = self.level0(x)
- x = self.level1(x)
- x = self.level2(x)
- x = self.level3(x)
- x = self.level4(x)
- x = self.level5(x)
- return x
- def forward_head(self, x, pre_logits: bool = False):
- x = self.global_pool(x)
- x = self.head_drop(x)
- if pre_logits:
- return self.flatten(x)
- x = self.fc(x)
- return self.flatten(x)
- def forward(self, x):
- x = self.forward_features(x)
- x = self.forward_head(x)
- return x
- def _create_dla(variant, pretrained=False, **kwargs):
- return build_model_with_cfg(
- DLA,
- variant,
- pretrained,
- pretrained_strict=False,
- feature_cfg=dict(out_indices=(1, 2, 3, 4, 5)),
- **kwargs,
- )
- def _cfg(url='', **kwargs):
- return {
- 'url': url,
- 'num_classes': 1000, 'input_size': (3, 224, 224), 'pool_size': (7, 7),
- 'crop_pct': 0.875, 'interpolation': 'bilinear',
- 'mean': IMAGENET_DEFAULT_MEAN, 'std': IMAGENET_DEFAULT_STD,
- 'first_conv': 'base_layer.0', 'classifier': 'fc', 'license': 'bsd-3-clause',
- **kwargs
- }
- default_cfgs = generate_default_cfgs({
- 'dla34.in1k': _cfg(hf_hub_id='timm/'),
- 'dla46_c.in1k': _cfg(hf_hub_id='timm/'),
- 'dla46x_c.in1k': _cfg(hf_hub_id='timm/'),
- 'dla60x_c.in1k': _cfg(hf_hub_id='timm/'),
- 'dla60.in1k': _cfg(hf_hub_id='timm/'),
- 'dla60x.in1k': _cfg(hf_hub_id='timm/'),
- 'dla102.in1k': _cfg(hf_hub_id='timm/'),
- 'dla102x.in1k': _cfg(hf_hub_id='timm/'),
- 'dla102x2.in1k': _cfg(hf_hub_id='timm/'),
- 'dla169.in1k': _cfg(hf_hub_id='timm/'),
- 'dla60_res2net.in1k': _cfg(hf_hub_id='timm/', license='unknown'),
- 'dla60_res2next.in1k': _cfg(hf_hub_id='timm/', license='unknown'),
- })
- @register_model
- def dla60_res2net(pretrained=False, **kwargs) -> DLA:
- model_args = dict(
- levels=(1, 1, 1, 2, 3, 1), channels=(16, 32, 128, 256, 512, 1024),
- block=DlaBottle2neck, cardinality=1, base_width=28)
- return _create_dla('dla60_res2net', pretrained, **dict(model_args, **kwargs))
- @register_model
- def dla60_res2next(pretrained=False,**kwargs):
- model_args = dict(
- levels=(1, 1, 1, 2, 3, 1), channels=(16, 32, 128, 256, 512, 1024),
- block=DlaBottle2neck, cardinality=8, base_width=4)
- return _create_dla('dla60_res2next', pretrained, **dict(model_args, **kwargs))
- @register_model
- def dla34(pretrained=False, **kwargs) -> DLA: # DLA-34
- model_args = dict(
- levels=[1, 1, 1, 2, 2, 1], channels=[16, 32, 64, 128, 256, 512], block=DlaBasic)
- return _create_dla('dla34', pretrained, **dict(model_args, **kwargs))
- @register_model
- def dla46_c(pretrained=False, **kwargs) -> DLA: # DLA-46-C
- model_args = dict(
- levels=[1, 1, 1, 2, 2, 1], channels=[16, 32, 64, 64, 128, 256], block=DlaBottleneck)
- return _create_dla('dla46_c', pretrained, **dict(model_args, **kwargs))
- @register_model
- def dla46x_c(pretrained=False, **kwargs) -> DLA: # DLA-X-46-C
- model_args = dict(
- levels=[1, 1, 1, 2, 2, 1], channels=[16, 32, 64, 64, 128, 256],
- block=DlaBottleneck, cardinality=32, base_width=4)
- return _create_dla('dla46x_c', pretrained, **dict(model_args, **kwargs))
- @register_model
- def dla60x_c(pretrained=False, **kwargs) -> DLA: # DLA-X-60-C
- model_args = dict(
- levels=[1, 1, 1, 2, 3, 1], channels=[16, 32, 64, 64, 128, 256],
- block=DlaBottleneck, cardinality=32, base_width=4)
- return _create_dla('dla60x_c', pretrained, **dict(model_args, **kwargs))
- @register_model
- def dla60(pretrained=False, **kwargs) -> DLA: # DLA-60
- model_args = dict(
- levels=[1, 1, 1, 2, 3, 1], channels=[16, 32, 128, 256, 512, 1024],
- block=DlaBottleneck)
- return _create_dla('dla60', pretrained, **dict(model_args, **kwargs))
- @register_model
- def dla60x(pretrained=False, **kwargs) -> DLA: # DLA-X-60
- model_args = dict(
- levels=[1, 1, 1, 2, 3, 1], channels=[16, 32, 128, 256, 512, 1024],
- block=DlaBottleneck, cardinality=32, base_width=4)
- return _create_dla('dla60x', pretrained, **dict(model_args, **kwargs))
- @register_model
- def dla102(pretrained=False, **kwargs) -> DLA: # DLA-102
- model_args = dict(
- levels=[1, 1, 1, 3, 4, 1], channels=[16, 32, 128, 256, 512, 1024],
- block=DlaBottleneck, shortcut_root=True)
- return _create_dla('dla102', pretrained, **dict(model_args, **kwargs))
- @register_model
- def dla102x(pretrained=False, **kwargs) -> DLA: # DLA-X-102
- model_args = dict(
- levels=[1, 1, 1, 3, 4, 1], channels=[16, 32, 128, 256, 512, 1024],
- block=DlaBottleneck, cardinality=32, base_width=4, shortcut_root=True)
- return _create_dla('dla102x', pretrained, **dict(model_args, **kwargs))
- @register_model
- def dla102x2(pretrained=False, **kwargs) -> DLA: # DLA-X-102 64
- model_args = dict(
- levels=[1, 1, 1, 3, 4, 1], channels=[16, 32, 128, 256, 512, 1024],
- block=DlaBottleneck, cardinality=64, base_width=4, shortcut_root=True)
- return _create_dla('dla102x2', pretrained, **dict(model_args, **kwargs))
- @register_model
- def dla169(pretrained=False, **kwargs) -> DLA: # DLA-169
- model_args = dict(
- levels=[1, 1, 2, 3, 5, 1], channels=[16, 32, 128, 256, 512, 1024],
- block=DlaBottleneck, shortcut_root=True)
- return _create_dla('dla169', pretrained, **dict(model_args, **kwargs))
|