vision-transformer-pytorch
vision-transformer-pytorch copied to clipboard
R50+ViT-B/16 hybrid model ?
I found that Google has updated the R50+ViT-B/16 hybrid model. Can the pytorch version also be updated?
We have provided the PyTorch version of the code and pre-trained model in https://github.com/tczhangzhi/VisionTransformer-Pytorch. If the authors have no other plans, we are glad to make PR to this repo. You can currently use R50+ViT-B
in the following ways:
from vision_transformer_pytorch import VisionTransformer
net = VisionTransformer.from_pretrained('R50+ViT-B_16')
Thank you! Could you make a PR to the repo?