├── LICENSE ├── README.md ├── decoder.py ├── encoder.py ├── layer_normalization.ipynb ├── multi_head_attention.ipynb ├── positional_encoding.ipynb ├── self_attention.ipynb └── transformer.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atullchaurasia/transformers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atullchaurasia/transformers/HEAD/decoder.py -------------------------------------------------------------------------------- /encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atullchaurasia/transformers/HEAD/encoder.py -------------------------------------------------------------------------------- /layer_normalization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atullchaurasia/transformers/HEAD/layer_normalization.ipynb -------------------------------------------------------------------------------- /multi_head_attention.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atullchaurasia/transformers/HEAD/multi_head_attention.ipynb -------------------------------------------------------------------------------- /positional_encoding.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atullchaurasia/transformers/HEAD/positional_encoding.ipynb -------------------------------------------------------------------------------- /self_attention.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atullchaurasia/transformers/HEAD/self_attention.ipynb -------------------------------------------------------------------------------- /transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atullchaurasia/transformers/HEAD/transformer.py --------------------------------------------------------------------------------