tahmid0007 / VisionTransformer

A complete easy to follow implementation of Google's Vision Transformer proposed in "AN IMAGE IS WORTH 16X16 WORDS". This pytorch implementation has comments for better understanding.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VisionTransformer (Pytorch)

A complete easy to follow implementation of Google's Vision Transformer proposed in "AN IMAGE IS WORTH 16X16 WORDS". This pytorch implementation has comments for better understanding.

An image is worth 16x16 words: transformers for image recognition at scale: Find the original paper here.

  • This Pytorch Implementation is based on This repo but follows the original paper more closely in terms of the first patch embedding and initializations. The default dataset used here is CIFAR10 which can be easily changed to ImageNet or anything else.
  • You might need to install einops.
  • According to the paper, if you are training from scratch, accuracy might not match state of the art CNNs like ResNet. Pretrain on a larger dataset to exploit the full potential of Vision transformer.
  • Easy to understand commnets are available in the code for better understanding, specially for beginners in attention and transformer models.
  • The standalone script "Google_ViT" is sufficient to run this code.

About

A complete easy to follow implementation of Google's Vision Transformer proposed in "AN IMAGE IS WORTH 16X16 WORDS". This pytorch implementation has comments for better understanding.


Languages

Language:Python 100.0%