File size: 18,871 Bytes
d9bb75c | 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 | # Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This software may be used and distributed in accordance with
# the terms of the DINOv3 License Agreement.
# ------------------------------------------------------------------------
# Deformable DETR
# Copyright (c) 2020 SenseTime. All Rights Reserved.
# Licensed under the Apache License, Version 2.0 [see LICENSE for details]
# ------------------------------------------------------------------------
# Modified from DETR (https://github.com/facebookresearch/detr)
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
# ------------------------------------------------------------------------
import math
import torch
import torch.nn.functional as F
from torch import nn
from torch.nn.init import constant_, normal_, xavier_uniform_
from ..util.box_ops import box_xyxy_to_cxcywh, delta2bbox
from .global_ape_decoder import build_global_ape_decoder
from .global_rpe_decomp_decoder import build_global_rpe_decomp_decoder
from .transformer_encoder import TransformerEncoder, TransformerEncoderLayer
from .utils import LayerNorm2D
class Transformer(nn.Module):
def __init__(
self,
d_model=256,
nhead=8,
num_feature_levels=4,
two_stage=False,
two_stage_num_proposals=300,
mixed_selection=False,
norm_type="post_norm",
decoder_type="deform",
proposal_feature_levels=1,
proposal_in_stride=16,
proposal_tgt_strides=[8, 16, 32, 64],
proposal_min_size=50,
args=None,
# transformer_encoder
add_transformer_encoder=False,
dim_feedforward=2048,
dropout=0.1,
activation="relu",
normalize_before=False,
num_encoder_layers=6,
):
super().__init__()
self.d_model = d_model
self.nhead = nhead
self.two_stage = two_stage
self.two_stage_num_proposals = two_stage_num_proposals
assert norm_type in ["pre_norm", "post_norm"], f"expected norm type is pre_norm or post_norm, get {norm_type}"
if decoder_type == "global_ape":
self.decoder = build_global_ape_decoder(args)
elif decoder_type == "global_rpe_decomp":
self.decoder = build_global_rpe_decomp_decoder(args)
else:
raise NotImplementedError
self.level_embed = nn.Parameter(torch.Tensor(num_feature_levels, d_model))
if two_stage:
self.enc_output = nn.Linear(d_model, d_model)
self.enc_output_norm = nn.LayerNorm(d_model)
self.pos_trans = nn.Linear(d_model * 2, d_model * 2)
self.pos_trans_norm = nn.LayerNorm(d_model * 2)
else:
self.reference_points = nn.Linear(d_model, 2)
self.mixed_selection = mixed_selection
self.proposal_feature_levels = proposal_feature_levels
self.proposal_tgt_strides = proposal_tgt_strides
self.proposal_min_size = proposal_min_size
if two_stage and proposal_feature_levels > 1:
assert len(proposal_tgt_strides) == proposal_feature_levels
self.proposal_in_stride = proposal_in_stride
self.enc_output_proj = nn.ModuleList([])
for stride in proposal_tgt_strides:
if stride == proposal_in_stride:
self.enc_output_proj.append(nn.Identity())
elif stride > proposal_in_stride:
scale = int(math.log2(stride / proposal_in_stride))
layers = []
for _ in range(scale - 1):
layers += [
nn.Conv2d(d_model, d_model, kernel_size=2, stride=2),
LayerNorm2D(d_model),
nn.GELU(),
]
layers.append(nn.Conv2d(d_model, d_model, kernel_size=2, stride=2))
self.enc_output_proj.append(nn.Sequential(*layers))
else:
scale = int(math.log2(proposal_in_stride / stride))
layers = []
for _ in range(scale - 1):
layers += [
nn.ConvTranspose2d(d_model, d_model, kernel_size=2, stride=2),
LayerNorm2D(d_model),
nn.GELU(),
]
layers.append(nn.ConvTranspose2d(d_model, d_model, kernel_size=2, stride=2))
self.enc_output_proj.append(nn.Sequential(*layers))
# ENCODER TRANSFORMER
self.encoder = None
if add_transformer_encoder:
encoder_layer = TransformerEncoderLayer(
d_model,
nhead,
dim_feedforward,
dropout,
activation,
normalize_before,
)
encoder_norm = nn.LayerNorm(d_model) if normalize_before else None
self.encoder = TransformerEncoder(encoder_layer, num_encoder_layers, encoder_norm)
self._reset_parameters()
def _reset_parameters(self):
for p in self.parameters():
if p.dim() > 1:
nn.init.xavier_uniform_(p)
if not self.two_stage:
xavier_uniform_(self.reference_points.weight.data, gain=1.0)
constant_(self.reference_points.bias.data, 0.0)
normal_(self.level_embed)
if hasattr(self.decoder, "_reset_parameters"):
self.decoder._reset_parameters()
def get_proposal_pos_embed(self, proposals):
num_pos_feats = self.d_model // 2
temperature = 10000
scale = 2 * math.pi
dim_t = torch.arange(num_pos_feats, dtype=torch.float32, device=proposals.device)
dim_t = temperature ** (2 * (dim_t // 2) / num_pos_feats)
# N, L, 4
proposals = proposals * scale
# N, L, 4, 128
pos = proposals[:, :, :, None] / dim_t
# N, L, 4, 64, 2
pos = torch.stack((pos[:, :, :, 0::2].sin(), pos[:, :, :, 1::2].cos()), dim=4).flatten(2)
return pos
def gen_encoder_output_proposals(self, memory, memory_padding_mask, spatial_shapes):
if self.proposal_feature_levels > 1:
memory, memory_padding_mask, spatial_shapes = self.expand_encoder_output(
memory, memory_padding_mask, spatial_shapes
)
N_, S_, C_ = memory.shape
# base_scale = 4.0
proposals = []
_cur = 0
for lvl, (H_, W_) in enumerate(spatial_shapes):
mask_flatten_ = memory_padding_mask[:, _cur : (_cur + H_ * W_)].view(N_, H_, W_, 1)
valid_H = torch.sum(~mask_flatten_[:, :, 0, 0], 1)
valid_W = torch.sum(~mask_flatten_[:, 0, :, 0], 1)
grid_y, grid_x = torch.meshgrid(
torch.linspace(0, H_ - 1, H_, dtype=torch.float32, device=memory.device),
torch.linspace(0, W_ - 1, W_, dtype=torch.float32, device=memory.device),
)
grid = torch.cat([grid_x.unsqueeze(-1), grid_y.unsqueeze(-1)], -1)
scale = torch.cat([valid_W.unsqueeze(-1), valid_H.unsqueeze(-1)], 1).view(N_, 1, 1, 2)
grid = (grid.unsqueeze(0).expand(N_, -1, -1, -1) + 0.5) / scale
wh = torch.ones_like(grid) * 0.05 * (2.0**lvl)
proposal = torch.cat((grid, wh), -1).view(N_, -1, 4)
proposals.append(proposal)
_cur += H_ * W_
output_proposals = torch.cat(proposals, 1)
output_proposals_valid = ((output_proposals > 0.01) & (output_proposals < 0.99)).all(-1, keepdim=True)
output_proposals = torch.log(output_proposals / (1 - output_proposals))
output_proposals = output_proposals.masked_fill(memory_padding_mask.unsqueeze(-1), float("inf"))
output_proposals = output_proposals.masked_fill(~output_proposals_valid, float("inf"))
output_memory = memory
output_memory = output_memory.masked_fill(memory_padding_mask.unsqueeze(-1), float(0))
output_memory = output_memory.masked_fill(~output_proposals_valid, float(0))
output_memory = self.enc_output_norm(self.enc_output(output_memory))
max_shape = None
return output_memory, output_proposals, max_shape
def get_valid_ratio(self, mask):
_, H, W = mask.shape
valid_H = torch.sum(~mask[:, :, 0], 1)
valid_W = torch.sum(~mask[:, 0, :], 1)
valid_ratio_h = valid_H.float() / H
valid_ratio_w = valid_W.float() / W
valid_ratio = torch.stack([valid_ratio_w, valid_ratio_h], -1)
return valid_ratio
def expand_encoder_output(self, memory, memory_padding_mask, spatial_shapes):
assert len(spatial_shapes) == 1, f"Get encoder output of shape {spatial_shapes}, not sure how to expand"
bs, _, c = memory.shape
h, w = spatial_shapes[0]
_out_memory = memory.view(bs, h, w, c).permute(0, 3, 1, 2)
_out_memory_padding_mask = memory_padding_mask.view(bs, h, w)
out_memory, out_memory_padding_mask, out_spatial_shapes = [], [], []
for i in range(self.proposal_feature_levels):
mem = self.enc_output_proj[i](_out_memory)
mask = F.interpolate(_out_memory_padding_mask[None].float(), size=mem.shape[-2:]).to(torch.bool)
out_memory.append(mem)
out_memory_padding_mask.append(mask.squeeze(0))
out_spatial_shapes.append(mem.shape[-2:])
out_memory = torch.cat([mem.flatten(2).transpose(1, 2) for mem in out_memory], dim=1)
out_memory_padding_mask = torch.cat([mask.flatten(1) for mask in out_memory_padding_mask], dim=1)
return out_memory, out_memory_padding_mask, out_spatial_shapes
def get_reference_points(self, memory, mask_flatten, spatial_shapes):
output_memory, output_proposals, max_shape = self.gen_encoder_output_proposals(
memory, mask_flatten, spatial_shapes
)
# hack implementation for two-stage Deformable DETR
enc_outputs_class = self.decoder.class_embed[self.decoder.num_layers](output_memory)
enc_outputs_delta = None
enc_outputs_coord_unact = self.decoder.bbox_embed[self.decoder.num_layers](output_memory) + output_proposals
topk = self.two_stage_num_proposals
topk_proposals = torch.topk(enc_outputs_class[..., 0], topk, dim=1)[1]
topk_coords_unact = torch.gather(enc_outputs_coord_unact, 1, topk_proposals.unsqueeze(-1).repeat(1, 1, 4))
topk_coords_unact = topk_coords_unact.detach()
reference_points = topk_coords_unact.sigmoid()
return (
reference_points,
max_shape,
enc_outputs_class,
enc_outputs_coord_unact,
enc_outputs_delta,
output_proposals,
)
def forward(self, srcs, masks, pos_embeds, query_embed=None, self_attn_mask=None):
# TODO: we may remove this loop as we only have one feature level
# prepare input for encoder
src_flatten = []
mask_flatten = []
lvl_pos_embed_flatten = []
spatial_shapes = []
for lvl, (src, mask, pos_embed) in enumerate(zip(srcs, masks, pos_embeds)):
bs, c, h, w = src.shape
spatial_shape = (h, w)
spatial_shapes.append(spatial_shape)
src = src.flatten(2).transpose(1, 2)
mask = mask.flatten(1)
pos_embed = pos_embed.flatten(2).transpose(1, 2)
lvl_pos_embed = pos_embed + self.level_embed[lvl].view(1, 1, -1)
lvl_pos_embed_flatten.append(lvl_pos_embed)
src_flatten.append(src)
mask_flatten.append(mask)
src_flatten = torch.cat(src_flatten, 1)
mask_flatten = torch.cat(mask_flatten, 1)
lvl_pos_embed_flatten = torch.cat(lvl_pos_embed_flatten, 1)
level_start_index = None # not used so far
valid_ratios = torch.stack([self.get_valid_ratio(m) for m in masks], 1)
if self.encoder is not None:
memory = self.encoder(src_flatten, src_key_padding_mask=mask_flatten, pos=lvl_pos_embed_flatten)
else:
memory = src_flatten
# prepare input for decoder
bs, _, c = memory.shape
if self.two_stage:
(
reference_points,
max_shape,
enc_outputs_class,
enc_outputs_coord_unact,
enc_outputs_delta,
output_proposals,
) = self.get_reference_points(memory, mask_flatten, spatial_shapes)
init_reference_out = reference_points
pos_trans_out = torch.zeros((bs, self.two_stage_num_proposals, 2 * c), device=init_reference_out.device)
pos_trans_out = self.pos_trans_norm(self.pos_trans(self.get_proposal_pos_embed(reference_points)))
if not self.mixed_selection:
query_embed, tgt = torch.split(pos_trans_out, c, dim=2)
else:
# query_embed here is the content embed for deformable DETR
tgt = query_embed.unsqueeze(0).expand(bs, -1, -1)
query_embed, _ = torch.split(pos_trans_out, c, dim=2)
else:
query_embed, tgt = torch.split(query_embed, c, dim=1)
query_embed = query_embed.unsqueeze(0).expand(bs, -1, -1)
tgt = tgt.unsqueeze(0).expand(bs, -1, -1)
reference_points = self.reference_points(query_embed).sigmoid()
init_reference_out = reference_points
max_shape = None
# decoder
hs, inter_references = self.decoder(
tgt,
reference_points,
memory,
lvl_pos_embed_flatten,
spatial_shapes,
level_start_index,
valid_ratios,
query_embed,
mask_flatten,
self_attn_mask,
max_shape,
)
inter_references_out = inter_references
if self.two_stage:
return (
hs,
init_reference_out,
inter_references_out,
enc_outputs_class,
enc_outputs_coord_unact,
enc_outputs_delta,
output_proposals,
max_shape,
)
return hs, init_reference_out, inter_references_out, None, None, None, None, None
class TransformerReParam(Transformer):
def gen_encoder_output_proposals(self, memory, memory_padding_mask, spatial_shapes):
if self.proposal_feature_levels > 1:
memory, memory_padding_mask, spatial_shapes = self.expand_encoder_output(
memory, memory_padding_mask, spatial_shapes
)
N_, S_, C_ = memory.shape
# base_scale = 4.0
proposals = []
_cur = 0
for lvl, (H_, W_) in enumerate(spatial_shapes):
stride = self.proposal_tgt_strides[lvl]
grid_y, grid_x = torch.meshgrid(
torch.linspace(0, H_ - 1, H_, dtype=torch.float32, device=memory.device),
torch.linspace(0, W_ - 1, W_, dtype=torch.float32, device=memory.device),
)
grid = torch.cat([grid_x.unsqueeze(-1), grid_y.unsqueeze(-1)], -1)
grid = (grid.unsqueeze(0).expand(N_, -1, -1, -1) + 0.5) * stride
wh = torch.ones_like(grid) * self.proposal_min_size * (2.0**lvl)
proposal = torch.cat((grid, wh), -1).view(N_, -1, 4)
proposals.append(proposal)
_cur += H_ * W_
output_proposals = torch.cat(proposals, 1)
H_, W_ = spatial_shapes[0]
stride = self.proposal_tgt_strides[0]
mask_flatten_ = memory_padding_mask[:, : H_ * W_].view(N_, H_, W_, 1)
valid_H = torch.sum(~mask_flatten_[:, :, 0, 0], 1, keepdim=True) * stride
valid_W = torch.sum(~mask_flatten_[:, 0, :, 0], 1, keepdim=True) * stride
img_size = torch.cat([valid_W, valid_H, valid_W, valid_H], dim=-1)
img_size = img_size.unsqueeze(1) # [BS, 1, 4]
output_proposals_valid = ((output_proposals > 0.01 * img_size) & (output_proposals < 0.99 * img_size)).all(
-1, keepdim=True
)
output_proposals = output_proposals.masked_fill(
memory_padding_mask.unsqueeze(-1).repeat(1, 1, 1), max(H_, W_) * stride
)
output_proposals = output_proposals.masked_fill(~output_proposals_valid, max(H_, W_) * stride)
output_memory = memory
output_memory = output_memory.masked_fill(memory_padding_mask.unsqueeze(-1), float(0))
output_memory = output_memory.masked_fill(~output_proposals_valid, float(0))
output_memory = self.enc_output_norm(self.enc_output(output_memory))
max_shape = (valid_H[:, None, :], valid_W[:, None, :])
return output_memory, output_proposals, max_shape
def get_reference_points(self, memory, mask_flatten, spatial_shapes):
output_memory, output_proposals, max_shape = self.gen_encoder_output_proposals(
memory, mask_flatten, spatial_shapes
)
# hack implementation for two-stage Deformable DETR
enc_outputs_class = self.decoder.class_embed[self.decoder.num_layers](output_memory)
enc_outputs_delta = self.decoder.bbox_embed[self.decoder.num_layers](output_memory)
enc_outputs_coord_unact = box_xyxy_to_cxcywh(delta2bbox(output_proposals, enc_outputs_delta, max_shape))
topk = self.two_stage_num_proposals
topk_proposals = torch.topk(enc_outputs_class[..., 0], topk, dim=1)[1]
topk_coords_unact = torch.gather(enc_outputs_coord_unact, 1, topk_proposals.unsqueeze(-1).repeat(1, 1, 4))
topk_coords_unact = topk_coords_unact.detach()
reference_points = topk_coords_unact
return (
reference_points,
max_shape,
enc_outputs_class,
enc_outputs_coord_unact,
enc_outputs_delta,
output_proposals,
)
def build_transformer(args):
model_class = Transformer if (not args.reparam) else TransformerReParam
return model_class(
d_model=args.hidden_dim,
nhead=args.nheads,
num_feature_levels=args.num_feature_levels,
two_stage=args.two_stage,
two_stage_num_proposals=args.num_queries_one2one + args.num_queries_one2many,
mixed_selection=args.mixed_selection,
norm_type=args.norm_type,
decoder_type=args.decoder_type,
proposal_feature_levels=args.proposal_feature_levels,
proposal_in_stride=args.proposal_in_stride,
proposal_tgt_strides=args.proposal_tgt_strides,
args=args,
proposal_min_size=args.proposal_min_size,
# transformer_encoder
add_transformer_encoder=args.add_transformer_encoder,
num_encoder_layers=args.num_encoder_layers,
)
|