(self, img_size=[224], patch_size=16, in_chans=3, num_classes=0, embed_dim=768, depth=12,
num_heads=12, mlp_ratio=4., qkv_bias=False, qk_scale=None, drop_rate=0., attn_drop_rate=0.,
drop_path_rate=0., norm_layer=nn.LayerNorm, **kwargs)
| 262 | class VisionTransformer(nn.Module): |
| 263 | """ Vision Transformer """ |
| 264 | def __init__(self, img_size=[224], patch_size=16, in_chans=3, num_classes=0, embed_dim=768, depth=12, |
| 265 | num_heads=12, mlp_ratio=4., qkv_bias=False, qk_scale=None, drop_rate=0., attn_drop_rate=0., |
| 266 | drop_path_rate=0., norm_layer=nn.LayerNorm, **kwargs): |
| 267 | super().__init__() |
| 268 | self.num_features = self.embed_dim = embed_dim |
| 269 | self.num_heads = num_heads |
| 270 | |
| 271 | self.patch_embed = PatchEmbed( |
| 272 | img_size=img_size[0], patch_size=patch_size, in_chans=in_chans, embed_dim=embed_dim) |
| 273 | num_patches = self.patch_embed.num_patches |
| 274 | |
| 275 | self.pos_embed = nn.Parameter(torch.zeros(1, num_patches, embed_dim)) |
| 276 | self.pos_drop = nn.Dropout(p=drop_rate) |
| 277 | |
| 278 | dpr = [x.item() for x in torch.linspace(0, drop_path_rate, depth)] # stochastic depth decay rule |
| 279 | self.blocks = nn.ModuleList([ |
| 280 | Block( |
| 281 | dim=embed_dim, num_heads=num_heads, mlp_ratio=mlp_ratio, qkv_bias=qkv_bias, qk_scale=qk_scale, |
| 282 | drop=drop_rate, attn_drop=attn_drop_rate, drop_path=dpr[i], norm_layer=norm_layer) |
| 283 | for i in range(depth)]) |
| 284 | |
| 285 | # Classifier head |
| 286 | self.head = nn.Linear(embed_dim, num_classes) if num_classes > 0 else nn.Identity() |
| 287 | |
| 288 | trunc_normal_(self.pos_embed, std=.02) |
| 289 | self.apply(self._init_weights) |
| 290 | |
| 291 | def _init_weights(self, m): |
| 292 | if isinstance(m, nn.Linear): |
nothing calls this directly
no test coverage detected