Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vit-pytorch

This repository is intended as a personal experiment to try and implement existing model of neural network based on transformers.

This repository does not include any resource for training the models.

For more details on the models themselves, please refer to the corresponding papers.

Current implemented models

Vision Transformer (ViT)

Usage

from models.vit import VisionTransformer
import torch


vit = VisionTransformer(num_classes=1000,
                        input_size=(224, 224),
                        patch_size=(16, 16),
                        depth=12,
                        hidden_dim=768,
                        num_heads=12)
x = torch.rand((1, 3, 224, 224)) # input
y = vit(x) # output
print(y.shape) # (1, 1000)

Paper

@misc{dosovitskiy2020image,
    title   = {An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale},
    author  = {Alexey Dosovitskiy and Lucas Beyer and Alexander Kolesnikov and Dirk Weissenborn and Xiaohua Zhai and Thomas Unterthiner and Mostafa Dehghani and Matthias Minderer and Georg Heigold and Sylvain Gelly and Jakob Uszkoreit and Neil Houlsby},
    year    = {2020},
    eprint  = {2010.11929},
    archivePrefix = {arXiv},
    primaryClass = {cs.CV}
}

Convolutional Neural Networks Meet Vision Transformers (CMT)

Usage

from models.cmt import CMT, cmt_configs
import torch


cmt = CMT(num_classes=1000,
          input_size=224,
          **cmt_configs('CMT-Ti'))
x = torch.rand((1, 3, 224, 224)) # input
y = cmt(x) # output
print(y.shape) # (1, 1000)

Paper

@misc{guo2021cmt,
    title   = {CMT: Convolutional Neural Networks Meet Vision Transformers},
    author  = {Guo, Jianyuan and Han, Kai and Wu, Han and Xu, Chang and Tang, Yehui and Xu, Chunjing and Wang, Yunhe},
    year    = {2021},
    eprint  = {2107.06263},
    archivePrefix = {arXiv},
    primaryClass = {cs.CV}
}

About

No description, website, or topics provided.

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages