当前位置:   article > 正文

VIT:Vision Transformer超级详解含代码_vit-transform架构预测图片案例代码

vit-transform架构预测图片案例代码

论文原文:An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale

1.VIT模型架构图

简单而言,模型由三个模块组成:

(1) Linear Projection of Flattened Patches(Embedding层)

(2) Transformer Encoder

(3) MLP Head:最终用于分类的层结构

具体步骤:

1.1 图片切分为patch

1.2 patch转化为embedding

由于一个patch是正方形,不能直接作为TRM的输入,需要把这一个patch转化成一个固定维度的embedding,然后用embedding作为TRM的输入。方法1:把patch拉平,二维转一维(eg.原来16x16变为256);方法2:把拉平之后的这个维度映射到我自己规定的一个向量长度。

注:在此过程中有两个实验方式,这里用的是Linear Projection是一个线性的转化,还有一种就是说petch=16*16,可以用一个16*16,步长为16的卷积来操作这个,卷积核设置成768,输出通道就是768,也就是说将768转换成了TRM Encoder的维度。

1.3 位置embedding和 token sembedding相加

首先生成CLS符号的token emb,图中*,然后生成所有序列的位置编码,图中1,2,3...,粉色的跟紫色的相加得到输入的embadding。

为啥加入一个CLS符号?

在论文后证明,CLS作用不大,它的作用就是减少对原始TRM模型的更改,BERT中使用CLS是由于,BERT有两个预训练任务,NSP(二分类)任务:预测下一句;MLM:预测当前单词。两个任务如果都使用池化进行损失的话,会在某些tokens上进行重复,使用CLS一定程度上让两个任务保持一种相对的独立。但是VIT不涉及到MLM这种形式的任务,只会有一个多分类任务,所以CLS符号不是必须的。

位置编码

为了保持输入图像patch之间的空间位置信息,还需要对图像块嵌入中添加一个位置编码向量,如上式中的Epos所示,ViT的位置编码没有使用更新的2D位置嵌入方法,而是直接用的一维可学习的位置嵌入变量,原先是论文作者发现实际使用时2D并没有展现出比1D更好的效果。

1.4 输入到TRM模型

输入之后先过一个Normalization层,在进入自注意力层,输出与输入做一个残差,在输入到Normalization,输入到前馈神经网络,在过一个残差,有几个Encoder就做几次,最终得到的每一个token都会生成一个输出。

1.5 CLS输出做多分类任务

把第一个CLS输出拿出来做多分类任务

2.代码

  1. import torch
  2. from torch import nn
  3. from einops import rearrange, repeat
  4. from einops.layers.torch import Rearrange
  5. # helpers
  6. def pair(t):
  7. return t if isinstance(t, tuple) else (t, t)
  8. # classes
  9. class PreNorm(nn.Module):
  10. def __init__(self, dim, fn):
  11. super().__init__()
  12. self.norm = nn.LayerNorm(dim)
  13. self.fn = fn
  14. def forward(self, x, **kwargs):
  15. return self.fn(self.norm(x), **kwargs)
  16. class FeedForward(nn.Module):
  17. def __init__(self, dim, hidden_dim, dropout = 0.):
  18. super().__init__()
  19. self.net = nn.Sequential(
  20. nn.Linear(dim, hidden_dim),
  21. nn.GELU(),
  22. nn.Dropout(dropout),
  23. nn.Linear(hidden_dim, dim),
  24. nn.Dropout(dropout)
  25. )
  26. def forward(self, x):
  27. return self.net(x)
  28. # 多头注意力机制实现
  29. class Attention(nn.Module):
  30. def __init__(self, dim, heads = 8, dim_head = 64, dropout = 0.):
  31. super().__init__()
  32. inner_dim = dim_head * heads
  33. project_out = not (heads == 1 and dim_head == dim)
  34. self.heads = heads
  35. self.scale = dim_head ** -0.5
  36. self.attend = nn.Softmax(dim = -1)
  37. self.to_qkv = nn.Linear(dim, inner_dim * 3, bias = False) # 把dim维度映射到inner_dim * 3这个维度
  38. self.to_out = nn.Sequential(
  39. nn.Linear(inner_dim, dim),
  40. nn.Dropout(dropout)
  41. ) if project_out else nn.Identity()
  42. def forward(self, x):
  43. qkv = self.to_qkv(x).chunk(3, dim = -1) # 对tensor张量分块 x :1*197*1024 qkv 最后是一个元组,tuple,长度是3,每个元素形状:1 197 1024
  44. q, k, v = map(lambda t: rearrange(t, 'b n (h d) -> b h n d', h = self.heads), qkv)
  45. dots = torch.matmul(q, k.transpose(-1, -2)) * self.scale
  46. attn = self.attend(dots)
  47. out = torch.matmul(attn, v) # 乘以对应的v矩阵
  48. out = rearrange(out, 'b h n d -> b n (h d)') # 做一个形状的变化
  49. return self.to_out(out)
  50. class Transformer(nn.Module):
  51. def __init__(self, dim, depth, heads, dim_head, mlp_dim, dropout = 0.):
  52. super().__init__()
  53. self.layers = nn.ModuleList([])
  54. # 把多个encoder堆叠在一起
  55. for _ in range(depth):
  56. self.layers.append(nn.ModuleList([
  57. PreNorm(dim, Attention(dim, heads = heads, dim_head = dim_head, dropout = dropout)), # 多头注意力机制
  58. PreNorm(dim, FeedForward(dim, mlp_dim, dropout = dropout)) # 前馈神经网络
  59. ]))
  60. def forward(self, x):
  61. for attn, ff in self.layers:
  62. x = attn(x) + x
  63. x = ff(x) + x
  64. return x
  65. # 整体架构
  66. class ViT(nn.Module):
  67. def __init__(self, *, image_size, patch_size, num_classes, dim, depth, heads, mlp_dim, pool = 'cls', channels = 3, dim_head = 64, dropout = 0., emb_dropout = 0.):
  68. super().__init__()
  69. image_height, image_width = pair(image_size) ## 224*224
  70. patch_height, patch_width = pair(patch_size)## 16 * 16
  71. assert image_height % patch_height == 0 and image_width % patch_width == 0, 'Image dimensions must be divisible by the patch size.'
  72. num_patches = (image_height // patch_height) * (image_width // patch_width) # 图片分割成多少个patch
  73. patch_dim = channels * patch_height * patch_width # 拉平:patch的宽和高乘通道数
  74. assert pool in {'cls', 'mean'}, 'pool type must be either cls (cls token) or mean (mean pooling)'
  75. # 图片拉平映射到encoder我们自己规定的模型里
  76. self.to_patch_embedding = nn.Sequential(
  77. Rearrange('b c (h p1) (w p2) -> b (h w) (p1 p2 c)', p1 = patch_height, p2 = patch_width),
  78. nn.Linear(patch_dim, dim),
  79. )
  80. self.pos_embedding = nn.Parameter(torch.randn(1, num_patches + 1, dim)) # 生成所有位置编码
  81. self.cls_token = nn.Parameter(torch.randn(1, 1, dim)) # 生成CLS token的初始化参数
  82. self.dropout = nn.Dropout(emb_dropout)
  83. self.transformer = Transformer(dim, depth, heads, dim_head, mlp_dim, dropout) # 输入解决了之后,把它放到TRM中
  84. self.pool = pool
  85. self.to_latent = nn.Identity()
  86. self.mlp_head = nn.Sequential(
  87. nn.LayerNorm(dim),
  88. nn.Linear(dim, num_classes)
  89. )
  90. def forward(self, img):
  91. x = self.to_patch_embedding(img) # img betch:1 通道3 224 224 输出形状x : 1*196*1024
  92. b, n, _ = x.shape ##
  93. cls_tokens = repeat(self.cls_token, '() n d -> b n d', b = b) # 复制b份,每一个betchsize都要加一个CLS符号
  94. x = torch.cat((cls_tokens, x), dim=1) # 把CLS的tokens Embedding 和Patch Embedding进行拼接
  95. x += self.pos_embedding[:, :(n + 1)] # 相加
  96. x = self.dropout(x)
  97. x = self.transformer(x)
  98. x = x.mean(dim = 1) if self.pool == 'mean' else x[:, 0]
  99. x = self.to_latent(x)
  100. return self.mlp_head(x)
  101. v = ViT(
  102. image_size = 224, # 输入图像大小
  103. patch_size = 16, # 切分的每一块的大小
  104. num_classes = 1000, # 最后CLS拿出来的映射到多少个维度上,类别上
  105. dim = 1024,
  106. depth = 6, # encoder层数
  107. heads = 16, # 多头注意力机制参数
  108. mlp_dim = 2048,
  109. dropout = 0.1,
  110. emb_dropout = 0.1
  111. )
  112. img = torch.randn(1, 3, 224, 224)
  113. preds = v(img) # (1, 1000)

3.总结一下下

想总结,总结不太出来,就是这东西很简单,感觉没啥,但是又搞不太懂,先发出去,以后有机会在改。
 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/345781
推荐阅读
相关标签
  

闽ICP备14008679号