| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- import torch
- import torch.nn as nn
- import torch.nn.functional as F
- from typing import List
- from .conv import BasicConv, ELANLayer
- from .transformer import TransformerEncoder
- # Build PaFPN
- def build_fpn(cfg, in_dims):
- if cfg.fpn == 'hybrid_encoder':
- return HybridEncoder(in_dims = in_dims,
- out_dim = cfg.hidden_dim,
- num_blocks = cfg.fpn_num_blocks,
- expand_ratio= cfg.fpn_expand_ratio,
- act_type = cfg.fpn_act,
- norm_type = cfg.fpn_norm,
- depthwise = cfg.fpn_depthwise,
- num_heads = cfg.en_num_heads,
- num_layers = cfg.en_num_layers,
- ffn_dim = cfg.en_ffn_dim,
- dropout = cfg.en_dropout,
- en_act_type = cfg.en_act,
- )
- else:
- raise NotImplementedError("Unknown PaFPN: <{}>".format(cfg.fpn))
- # ----------------- Feature Pyramid Network -----------------## Hybrid Encoder (Transformer encoder + Convolutional PaFPN)
- class HybridEncoder(nn.Module):
- def __init__(self,
- in_dims :List = [256, 512, 1024],
- out_dim :int = 256,
- num_blocks :int = 3,
- expand_ratio :float = 0.5,
- act_type :str = 'silu',
- norm_type :str = 'BN',
- depthwise :bool = False,
- # Transformer's parameters
- num_heads :int = 8,
- num_layers :int = 1,
- ffn_dim :int = 1024,
- dropout :float = 0.1,
- pe_temperature :float = 10000.,
- en_act_type :str = 'gelu'
- ) -> None:
- super(HybridEncoder, self).__init__()
- print('==============================')
- print('FPN: {}'.format("RTC-PaFPN"))
- # ---------------- Basic parameters ----------------
- self.in_dims = in_dims
- self.out_dim = out_dim
- self.out_dims = [self.out_dim] * len(in_dims)
- self.num_heads = num_heads
- self.num_layers = num_layers
- self.ffn_dim = ffn_dim
- c3, c4, c5 = in_dims
- # ---------------- Input projs ----------------
- self.reduce_layer_1 = BasicConv(c5, self.out_dim, kernel_size=1, act_type=act_type, norm_type=norm_type)
- self.reduce_layer_2 = BasicConv(c4, self.out_dim, kernel_size=1, act_type=act_type, norm_type=norm_type)
- self.reduce_layer_3 = BasicConv(c3, self.out_dim, kernel_size=1, act_type=act_type, norm_type=norm_type)
- # ---------------- Downsample ----------------
- self.dowmsample_layer_1 = BasicConv(self.out_dim, self.out_dim,
- kernel_size=3, padding=1, stride=2,
- act_type=act_type, norm_type=norm_type, depthwise=depthwise)
- self.dowmsample_layer_2 = BasicConv(self.out_dim, self.out_dim,
- kernel_size=3, padding=1, stride=2,
- act_type=act_type, norm_type=norm_type, depthwise=depthwise)
- # ---------------- Transformer Encoder ----------------
- self.transformer_encoder = TransformerEncoder(d_model = self.out_dim,
- num_heads = num_heads,
- num_layers = num_layers,
- ffn_dim = ffn_dim,
- pe_temperature = pe_temperature,
- dropout = dropout,
- act_type = en_act_type
- )
- # ---------------- Top dwon FPN ----------------
- ## P5 -> P4
- self.top_down_layer_1 = ELANLayer(in_dim = self.out_dim * 2,
- out_dim = self.out_dim,
- num_blocks = num_blocks,
- expand_ratio = expand_ratio,
- shortcut = False,
- act_type = act_type,
- norm_type = norm_type,
- depthwise = depthwise,
- )
- ## P4 -> P3
- self.top_down_layer_2 = ELANLayer(in_dim = self.out_dim * 2,
- out_dim = self.out_dim,
- num_blocks = num_blocks,
- expand_ratio = expand_ratio,
- shortcut = False,
- act_type = act_type,
- norm_type = norm_type,
- depthwise = depthwise,
- )
-
- # ---------------- Bottom up PAN----------------
- ## P3 -> P4
- self.bottom_up_layer_1 = ELANLayer(in_dim = self.out_dim * 2,
- out_dim = self.out_dim,
- num_blocks = num_blocks,
- expand_ratio = expand_ratio,
- shortcut = False,
- act_type = act_type,
- norm_type = norm_type,
- depthwise = depthwise,
- )
- ## P4 -> P5
- self.bottom_up_layer_2 = ELANLayer(in_dim = self.out_dim * 2,
- out_dim = self.out_dim,
- num_blocks = num_blocks,
- expand_ratio = expand_ratio,
- shortcut = False,
- act_type = act_type,
- norm_type = norm_type,
- depthwise = depthwise,
- )
- self.init_weights()
-
- def init_weights(self):
- """Initialize the parameters."""
- for m in self.modules():
- if isinstance(m, torch.nn.Conv2d):
- # In order to be consistent with the source code,
- # reset the Conv2d initialization parameters
- m.reset_parameters()
- def forward(self, features):
- c3, c4, c5 = features
- # -------- Input projs --------
- p5 = self.reduce_layer_1(c5)
- p4 = self.reduce_layer_2(c4)
- p3 = self.reduce_layer_3(c3)
- # -------- Transformer encoder --------
- p5 = self.transformer_encoder(p5)
- # -------- Top down FPN --------
- p5_up = F.interpolate(p5, scale_factor=2.0)
- p4 = self.top_down_layer_1(torch.cat([p4, p5_up], dim=1))
- p4_up = F.interpolate(p4, scale_factor=2.0)
- p3 = self.top_down_layer_2(torch.cat([p3, p4_up], dim=1))
- # -------- Bottom up PAN --------
- p3_ds = self.dowmsample_layer_1(p3)
- p4 = self.bottom_up_layer_1(torch.cat([p4, p3_ds], dim=1))
- p4_ds = self.dowmsample_layer_2(p4)
- p5 = self.bottom_up_layer_2(torch.cat([p5, p4_ds], dim=1))
- out_feats = [p3, p4, p5]
-
- return out_feats
|