Add Vision Transformer to `keras.applications`
See original GitHub issueIf you open a GitHub issue, here is our policy:
Vision Transformer[1] is model which uses transformers-like architecture. A sequence of vectors is created by dividing a picture into fixed-size patches, linearly embedding each one, adding position embeddings, and then feeding the assembled vectors to a conventional Transformer encoder.
Who will benefit from this feature?
Keras users using keras.applications
in their projects.
Will this change the current api? How?
keras.applications.ViTBase, keras.applications.ViTLarge, ...
- Do you want to contribute a PR? (yes/no): Yes
- If yes, please read this page for instructions
- Briefly describe your candidate solution(if contributing): I have implemented base model of vision transformer from scratch here
References
Issue Analytics
- State:
- Created 9 months ago
- Comments:5
Top Results From Across the Web
Image classification with Vision Transformer
This example implements the Vision Transformer (ViT) model by Alexey Dosovitskiy et al. for image classification, and demonstrates it on the ...
Read more >Vision Transformer - Keras Code Examples!! - YouTube
This video walks through the Keras Code Example implementation of Vision Transformers !! I see this as a huge opportunity for graduate ...
Read more >Vision Transformer with TensorFlow
This post is a deep dive and step by step implementation of Vision Transformer (ViT) using TensorFlow 2.0. What you can expect to...
Read more >Vision Transformer in TensorFlow | notebooks
The publication of the Vision Transformer (or simply ViT) architecture in An Image is Worth 16x16 Words: Transformers for Image Recognition ...
Read more >Vision Transformer (ViT)
A [CLS] token is added to serve as representation of an entire image, which can be used for classification. The authors also add...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Check. https://github.com/keras-team/keras-cv/issues/668
closing this issue…