├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── environment.yml ├── figures └── acer.png ├── main.py ├── memory.py ├── model.py ├── optim.py ├── test.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/ACER/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/ACER/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/ACER/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/ACER/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/ACER/HEAD/environment.yml -------------------------------------------------------------------------------- /figures/acer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/ACER/HEAD/figures/acer.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/ACER/HEAD/main.py -------------------------------------------------------------------------------- /memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/ACER/HEAD/memory.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/ACER/HEAD/model.py -------------------------------------------------------------------------------- /optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/ACER/HEAD/optim.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/ACER/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/ACER/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/ACER/HEAD/utils.py --------------------------------------------------------------------------------