Build a Transformer Encoder
Implement your own transformer in Pytorch.
We'll cover the following...
It’s finally time to apply all we have learned about Transformers. The best way to do it is to build a Transformer Encoder from scratch. We will start by developing all the subcomponents and in the end, we will combine them to form the encoder. Let’s start with something simple.
Disclaimer: Pytorch has its own built-in ...