python|ViT结构

Vision Transformer 【python|ViT结构】图像输入尺寸为 [ N , C , H , W ] [N, C, H, W] [N,C,H,W], C C C通常为3,为了构建为 T r a n s f o r m e r Transformer Transformer需要的输入,将输入图像切分为 p h ? p w ? C p_h * p_w * C ph??pw??C尺寸的 n n n个小图块,合计切出 h ? w h*w h?w个小图块。

# reshape and flatten [N, C, H, W] => [N, h*w, p_h * p_w * C] => [N, h*w, dim] # h = H // p_h, w = W // p_w, input flattened feature to nn.Linear, map into dim dimenstion. # concat cls_tokens and add positional embedding cls_token = nn.Parameter(torch.randn(1, 1, dim)) cls_token = repeat(cls_token, '() n d -> b n d', b=b) pose_embedding = nn.Parameter(torch.randn(1, num_patches + 1, dim) [N, n, dim] => [N, n + 1, dim] => [N, n + 1, dim] # n = h * w, cls_tokens -> positional embedding.

经过 n n n个 e n c o d i n g ?? l a y e r s encoding\; layers encodinglayers构建成的 T r a n s f o r m e r Transformer Transformer提取特征后,输入到 M L P ?? h e a d MLP\; head MLPhead 模块
[N, n + 1, dim] => [N, num_classes]

T r a n s f o r m e r Transformer Transformer的 e n c o d i n g ?? l a y e r encoding\; layer encodinglayer模块的结构如下:
encoding layer = MSA + MLP MSA: Multi-headed Self-Attention MLP: Multi-Layer Perceptron

python|ViT结构
文章图片

注意力模块如下:
python|ViT结构
文章图片

多层注意力由多个单一的注意力模块提取信息后,concat到一起。
python|ViT结构
文章图片

    推荐阅读