In a nutshellVision Transformer treats an image as a sequence of patches. With large-scale pretraining, this straightforward adaptation of a Transformer performs strongly on image recognition.
Jakob Uszkoreit
Jakob Uszkoreit is a credited coauthor of “An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale” and “Attention Is All You Need”. Explore the papers, research findings, and collaborators represented in this collection.
Papers & publications
2 in this collectionRead the original papers, explore an overview, and collect ideas for your own research.
In a nutshellThe Transformer replaces recurrence and convolution with attention. It connects words directly across a sequence, enabling more parallel training and strong machine translation performance.
Research in focus
An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale
Images are divided into fixed-size patches and encoded as sequences. The model is pretrained on large datasets and fine-tuned on image classification tasks.
- Image patches can serve as the input tokens of a Transformer.
- Large-scale pretraining is central to the reported performance.
- The learned representations transfer to several image recognition benchmarks.
Reading context: The strong results depend on the training-data regime. They should not be read as a universal advantage over convolutional models on small datasets.
Read the original on arXiv ↗Attention Is All You Need
The authors evaluate an attention-based encoder and decoder on WMT 2014 translation tasks, comparing translation quality and training cost with earlier architectures.
- Attention alone can support an encoder–decoder translation architecture.
- The model reports 28.4 BLEU on English-to-German translation.
- Parallel computation reduces the sequential work required during training.
Reading context: The experiments focus primarily on translation. Results do not establish that attention is the best choice for every task or resource budget.
Read the original on arXiv ↗