forked from lucidrains/vit-pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
efb40e0
commit 30362d5
Showing
1 changed file
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,17 @@ | ||
# vision-transformer-pytorch | ||
Implementation of Vision Transformer, a simple way to achieve SOTA in vision classification with only a single transformer encoder, in Pytorch | ||
## Vision Transformer - Pytorch | ||
|
||
Implementation of Vision Transformer, a simple way to achieve SOTA in vision classification with only a single transformer encoder, in Pytorch. There's really not much to code here, but may as well lay out all the code so we expedite the attention revolution and get everyone on the same page. | ||
|
||
## Citations | ||
|
||
```bibtex | ||
@inproceedings{ | ||
anonymous2021an, | ||
title={An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale}, | ||
author={Anonymous}, | ||
booktitle={Submitted to International Conference on Learning Representations}, | ||
year={2021}, | ||
url={https://openreview.net/forum?id=YicbFdNTTy}, | ||
note={under review} | ||
} | ||
``` |