├── .gitignore ├── LICENSE ├── README.md ├── efficient_attention.py ├── illustration.png └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmsflash/efficient-attention/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmsflash/efficient-attention/HEAD/README.md -------------------------------------------------------------------------------- /efficient_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmsflash/efficient-attention/HEAD/efficient_attention.py -------------------------------------------------------------------------------- /illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmsflash/efficient-attention/HEAD/illustration.png -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmsflash/efficient-attention/HEAD/test.py --------------------------------------------------------------------------------