├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── data ├── README.md └── enwik8.gz ├── deep_cross_attention ├── __init__.py ├── dca_gpt.py └── gpt.py ├── fig4.png ├── pyproject.toml └── train.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/deep-cross-attention/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/deep-cross-attention/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/deep-cross-attention/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/deep-cross-attention/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/deep-cross-attention/HEAD/data/README.md -------------------------------------------------------------------------------- /data/enwik8.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/deep-cross-attention/HEAD/data/enwik8.gz -------------------------------------------------------------------------------- /deep_cross_attention/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/deep-cross-attention/HEAD/deep_cross_attention/__init__.py -------------------------------------------------------------------------------- /deep_cross_attention/dca_gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/deep-cross-attention/HEAD/deep_cross_attention/dca_gpt.py -------------------------------------------------------------------------------- /deep_cross_attention/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/deep-cross-attention/HEAD/deep_cross_attention/gpt.py -------------------------------------------------------------------------------- /fig4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/deep-cross-attention/HEAD/fig4.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/deep-cross-attention/HEAD/pyproject.toml -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/deep-cross-attention/HEAD/train.py --------------------------------------------------------------------------------