├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── data ├── README.md └── enwik8.gz ├── light_recurrent_unit_pytorch ├── __init__.py └── light_recurrent_unit.py ├── lru.png ├── pyproject.toml └── train.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/light-recurrent-unit-pytorch/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/light-recurrent-unit-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/light-recurrent-unit-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/light-recurrent-unit-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/light-recurrent-unit-pytorch/HEAD/data/README.md -------------------------------------------------------------------------------- /data/enwik8.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/light-recurrent-unit-pytorch/HEAD/data/enwik8.gz -------------------------------------------------------------------------------- /light_recurrent_unit_pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/light-recurrent-unit-pytorch/HEAD/light_recurrent_unit_pytorch/__init__.py -------------------------------------------------------------------------------- /light_recurrent_unit_pytorch/light_recurrent_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/light-recurrent-unit-pytorch/HEAD/light_recurrent_unit_pytorch/light_recurrent_unit.py -------------------------------------------------------------------------------- /lru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/light-recurrent-unit-pytorch/HEAD/lru.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/light-recurrent-unit-pytorch/HEAD/pyproject.toml -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidrains/light-recurrent-unit-pytorch/HEAD/train.py --------------------------------------------------------------------------------