Took an Image Processing course last semester and one of the topics the prof suggested to learn about was ViT's I knew about the basics of Deep Learning and over the summers explored more about autoencoders Starting from August, I dwelved into the Transformer architecture, and now ViT seems very simple It's just that we divide input image into patches, line these patches up in a sequence and convert them to embeddings, add positional vectors and boom feed it to the transformer module
I was studying up on Transformers and ViTs half a year ago, and recently checked back to find this (to my surprise). Great clear explanations, can tell CAML is in great hands!
I've held guest lectures on the inner workings of transformers myself, but I still learned a bunch from this! Everything after 22:15 was very exciting to watch, very well presented and easy to understand! Very well done, I dubscribed for more :)
Wow, this video helped me a lot in understanding Attention and ViT. Packed with all the logics needed to design a solution using the latest as of this day.
🎯 Key Takeaways for quick navigation: 00:00 🧠 *The Evolution of AI and Computer Vision* - General methods leveraging computation prove most effective in AI development. - Evolution from handcrafted features to Convolutional Neural Networks (CNNs) and then to Transformers, showcasing a reduction in inductive biases and an increase in data-driven approaches. 01:09 🤖 *Neural Network Architectures* - Importance of network architecture in building intelligent machines. - Distinction between network architecture and network parameters, focusing on resource limitations and efficient design. 02:32 💡 *Introduction to Transformers* - Transformers' dominance in AI, initially in Natural Language Processing (NLP) and then in Computer Vision. - Discussion on why Transformers took time to transition from NLP to Computer Vision. 03:57 🌐 *Understanding Transformers: Encoder and Decoder* - Explanation of the Transformer architecture with its encoder and decoder components. - Different variants of Transformers: Encoder-only, Decoder-only, and Encoder-Decoder architectures. 05:33 🔍 *Applying Transformers to Computer Vision* - Vision Transformers (ViT) process images by slicing them into patches, using position embeddings and Transformer encoders. - The methodology of transforming images into a sequence of embeddings for the Transformer encoder. 07:08 🔗 *Multi-Head Attention in Transformers* - Detailed explanation of the multi-head attention mechanism in Transformers. - Role of queries, keys, and values in facilitating communication between different embeddings. 09:12 🧩 *Transformer Encoder Blocks and Scaling* - The structure and function of Transformer encoder blocks, including multi-head attention and MLP. - Importance of residual connections and layer normalization in optimizing Transformer models. 11:05 🚀 *Scaling and Hardware Influence in AI* - The impact of scaling and hardware advancements on Transformer model performance. - Discussion on the exponential increase in computational resources for training large models. 13:50 🛠 *MLP and Optimization in Transformers* - Role of the multi-layer perceptron (MLP) in Transformer architecture for independent processing of embeddings. - Importance of non-linearities like ReLU and GELU in Transformer models. 15:00 ⚙️ *Residual Connections and Layer Normalization* - Implementation and significance of residual connections and layer normalization in Transformers. - These components facilitate gradient flow and stable learning in deep network training. 17:05 🌐 *Positional Embeddings in Transformers* - Explanation of positional embeddings in Transformers, necessary for maintaining spatial information in sequences. - Different methods of implementing positional embeddings in Transformer models. 19:27 🔄 *Cross Attention and Causal Attention in Transformers* - Discussion of Made with HARPA AI
This is by far one of the most accurate, yet understandable and intuitive explaination of such a hard concept, you did a better job at explaining it than the authors! very impressive!
Excellent and clearly communicated. Thanks. question in 20:05 when discssing positional embeddings, the legend of the waves says dim 4,....dim 7. Here, does dim refer to the length of the pathch D? as in, we'll get as many sine waves as D dims ?
Another question: in 30:00 discussing how early attention layers tend to focus on local features and deeper ones on more global features of the input. I didn't understand the significance of the x-axis (sorted attention head). is this just a count of how many attention head there are in the respective block? Which suggests that in the large data regime, even early attention blocks with 14+ heads will also tend to observe the features globally? Is this correct? And thank you in advance!
So for someone approaching this now, working on resource-constrained devices, both for training and inference, it makes more sense to just stick to CNNs?
This is one of the best explanations of not just ViT, but transformers in general that I have watched. Excellent video
Unbelievable quality. Happy to be here before this channel blows up.
Thanks!
Goodness, what a remarkable video. This is by far the best explanation video I have watched about vision transformers.
Thank you for this incredible piece of content. I feel like I understand transformers more
This is one of the cleanest explanation of ViTs I have come across. Amazing work Samuel! Inspiring.
Took an Image Processing course last semester and one of the topics the prof suggested to learn about was ViT's
I knew about the basics of Deep Learning and over the summers explored more about autoencoders
Starting from August, I dwelved into the Transformer architecture, and now ViT seems very simple
It's just that we divide input image into patches, line these patches up in a sequence and convert them to embeddings, add positional vectors and boom feed it to the transformer module
for a beginner like me, I would say, this is the introduce video that we were waiting for :')
One of the greatest explanations of the concepts of transformers to a Computer Vision Reserach
Excellent video! Honored to be here before it goes viral 🙏🏾
Thank you for making this wonderful video. So clear! Please continue your awesome video work!
I have never been so HOOKED while watching a video which is going fairly "deep" into such topics. Very well presented. Keep up the good work man.
I was studying up on Transformers and ViTs half a year ago, and recently checked back to find this (to my surprise). Great clear explanations, can tell CAML is in great hands!
I've held guest lectures on the inner workings of transformers myself, but I still learned a bunch from this! Everything after 22:15 was very exciting to watch, very well presented and easy to understand! Very well done, I dubscribed for more :)
Your weekly ai news was really useful
Please bring it back
Wow, this video helped me a lot in understanding Attention and ViT. Packed with all the logics needed to design a solution using the latest as of this day.
🎯 Key Takeaways for quick navigation:
00:00 🧠 *The Evolution of AI and Computer Vision*
- General methods leveraging computation prove most effective in AI development.
- Evolution from handcrafted features to Convolutional Neural Networks (CNNs) and then to Transformers, showcasing a reduction in inductive biases and an increase in data-driven approaches.
01:09 🤖 *Neural Network Architectures*
- Importance of network architecture in building intelligent machines.
- Distinction between network architecture and network parameters, focusing on resource limitations and efficient design.
02:32 💡 *Introduction to Transformers*
- Transformers' dominance in AI, initially in Natural Language Processing (NLP) and then in Computer Vision.
- Discussion on why Transformers took time to transition from NLP to Computer Vision.
03:57 🌐 *Understanding Transformers: Encoder and Decoder*
- Explanation of the Transformer architecture with its encoder and decoder components.
- Different variants of Transformers: Encoder-only, Decoder-only, and Encoder-Decoder architectures.
05:33 🔍 *Applying Transformers to Computer Vision*
- Vision Transformers (ViT) process images by slicing them into patches, using position embeddings and Transformer encoders.
- The methodology of transforming images into a sequence of embeddings for the Transformer encoder.
07:08 🔗 *Multi-Head Attention in Transformers*
- Detailed explanation of the multi-head attention mechanism in Transformers.
- Role of queries, keys, and values in facilitating communication between different embeddings.
09:12 🧩 *Transformer Encoder Blocks and Scaling*
- The structure and function of Transformer encoder blocks, including multi-head attention and MLP.
- Importance of residual connections and layer normalization in optimizing Transformer models.
11:05 🚀 *Scaling and Hardware Influence in AI*
- The impact of scaling and hardware advancements on Transformer model performance.
- Discussion on the exponential increase in computational resources for training large models.
13:50 🛠 *MLP and Optimization in Transformers*
- Role of the multi-layer perceptron (MLP) in Transformer architecture for independent processing of embeddings.
- Importance of non-linearities like ReLU and GELU in Transformer models.
15:00 ⚙️ *Residual Connections and Layer Normalization*
- Implementation and significance of residual connections and layer normalization in Transformers.
- These components facilitate gradient flow and stable learning in deep network training.
17:05 🌐 *Positional Embeddings in Transformers*
- Explanation of positional embeddings in Transformers, necessary for maintaining spatial information in sequences.
- Different methods of implementing positional embeddings in Transformer models.
19:27 🔄 *Cross Attention and Causal Attention in Transformers*
- Discussion of
Made with HARPA AI
This is by far one of the most accurate, yet understandable and intuitive explaination of such a hard concept, you did a better job at explaining it than the authors! very impressive!
Thanks for such a informative and educational video
The best video to easily understand VIT
The best explanation of ViT..
Very well presented!
That is a masterpiece of a video! Many thanks for your work!
Beautifully put together. Keep it going @Sam
Very good video - contents & it’s presentation!
Thank you so very much for sharing your insights and intuition behind soooo many concepts.
Glad it was helpful!
beautifully explained.
excellent contents and slides!!!
Thanks!
man, what a video. thank you!
great explanation
Excellent and clearly communicated. Thanks.
question in 20:05 when discssing positional embeddings, the legend of the waves says dim 4,....dim 7. Here, does dim refer to the length of the pathch D? as in, we'll get as many sine waves as D dims ?
Thank you for ur content.
superb
A+++ quality from other planets.
Thank you so much!
Great work!
Great video
Another question:
in 30:00 discussing how early attention layers tend to focus on local features and deeper ones on more global features of the input. I didn't understand the significance of the x-axis (sorted attention head). is this just a count of how many attention head there are in the respective block? Which suggests that in the large data regime, even early attention blocks with 14+ heads will also tend to observe the features globally? Is this correct?
And thank you in advance!
More Compute Is All You Need
any ViTs that are open source?
So for someone approaching this now, working on resource-constrained devices, both for training and inference, it makes more sense to just stick to CNNs?
Crazy how transformers are beating all these other classical architectures like CNNs, that have been used since ancient Greece times.
w
Jackson Scott Wilson Anna Jackson Anna