├── README.md ├── README_zh.md ├── a3c.py ├── actor.py ├── envs.py ├── img ├── A3C-Architecture.png ├── a3c-pong.gif └── code-architecture.png ├── main.py ├── monitor.py └── tutorial.ipynb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/a3c/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/a3c/HEAD/README_zh.md -------------------------------------------------------------------------------- /a3c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/a3c/HEAD/a3c.py -------------------------------------------------------------------------------- /actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/a3c/HEAD/actor.py -------------------------------------------------------------------------------- /envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/a3c/HEAD/envs.py -------------------------------------------------------------------------------- /img/A3C-Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/a3c/HEAD/img/A3C-Architecture.png -------------------------------------------------------------------------------- /img/a3c-pong.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/a3c/HEAD/img/a3c-pong.gif -------------------------------------------------------------------------------- /img/code-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/a3c/HEAD/img/code-architecture.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/a3c/HEAD/main.py -------------------------------------------------------------------------------- /monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/a3c/HEAD/monitor.py -------------------------------------------------------------------------------- /tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/a3c/HEAD/tutorial.ipynb --------------------------------------------------------------------------------