├── .gitignore ├── README.md ├── model.py ├── requirements.txt ├── train.py └── vit.png /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .idea 3 | logs/ 4 | __pycache__/ 5 | .python-version 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emla2805/vision-transformer/HEAD/README.md -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emla2805/vision-transformer/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emla2805/vision-transformer/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emla2805/vision-transformer/HEAD/train.py -------------------------------------------------------------------------------- /vit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emla2805/vision-transformer/HEAD/vit.png --------------------------------------------------------------------------------