megvii-research / AnchorDETR

An official implementation of the Anchor DETR.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bs, l, c, h, w = srcs.shape

feimadada opened this issue · comments

hi, the transformer module, bs, l, c, h, w = srcs.shape, what does the second dimension "l" mean?

commented

Hi, it means the number of features. We only use a single DC5 feature so the "l" is 1. We keep this dimension to facilitate scaling to multiple features if it is needed.