├── .gitignore ├── A2C.py ├── LICENSE ├── README.md ├── base_train.py ├── config ├── breakout.json └── pong.json ├── envs ├── atari_wrappers.py ├── base_env.py ├── env_summary_logger.py ├── gym_env.py ├── monitor.py └── subproc_vec_env.py ├── figures ├── a3c_vs_a2c.png └── plot.png ├── layers.py ├── main.py ├── models ├── base_policy.py ├── cnn_policy.py └── model.py ├── train.py └── utils ├── lr_decay.py ├── utils.py └── variables_saver.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/.gitignore -------------------------------------------------------------------------------- /A2C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/A2C.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/README.md -------------------------------------------------------------------------------- /base_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/base_train.py -------------------------------------------------------------------------------- /config/breakout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/config/breakout.json -------------------------------------------------------------------------------- /config/pong.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/config/pong.json -------------------------------------------------------------------------------- /envs/atari_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/envs/atari_wrappers.py -------------------------------------------------------------------------------- /envs/base_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/envs/base_env.py -------------------------------------------------------------------------------- /envs/env_summary_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/envs/env_summary_logger.py -------------------------------------------------------------------------------- /envs/gym_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/envs/gym_env.py -------------------------------------------------------------------------------- /envs/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/envs/monitor.py -------------------------------------------------------------------------------- /envs/subproc_vec_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/envs/subproc_vec_env.py -------------------------------------------------------------------------------- /figures/a3c_vs_a2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/figures/a3c_vs_a2c.png -------------------------------------------------------------------------------- /figures/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/figures/plot.png -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/layers.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/main.py -------------------------------------------------------------------------------- /models/base_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/models/base_policy.py -------------------------------------------------------------------------------- /models/cnn_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/models/cnn_policy.py -------------------------------------------------------------------------------- /models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/models/model.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/train.py -------------------------------------------------------------------------------- /utils/lr_decay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/utils/lr_decay.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/variables_saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MG2033/A2C/HEAD/utils/variables_saver.py --------------------------------------------------------------------------------