├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── coordinate_descent_attention ├── __init__.py ├── autoregressive_wrapper.py └── coordinate_descent_attention.py ├── data ├── README.md └── enwik8.gz ├── setup.py └── train.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/coordinate-descent-attention/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/coordinate-descent-attention/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/coordinate-descent-attention/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/coordinate-descent-attention/HEAD/README.md -------------------------------------------------------------------------------- /coordinate_descent_attention/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/coordinate-descent-attention/HEAD/coordinate_descent_attention/__init__.py -------------------------------------------------------------------------------- /coordinate_descent_attention/autoregressive_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/coordinate-descent-attention/HEAD/coordinate_descent_attention/autoregressive_wrapper.py -------------------------------------------------------------------------------- /coordinate_descent_attention/coordinate_descent_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/coordinate-descent-attention/HEAD/coordinate_descent_attention/coordinate_descent_attention.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/coordinate-descent-attention/HEAD/data/README.md -------------------------------------------------------------------------------- /data/enwik8.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/coordinate-descent-attention/HEAD/data/enwik8.gz -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/coordinate-descent-attention/HEAD/setup.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/coordinate-descent-attention/HEAD/train.py --------------------------------------------------------------------------------