├── .gitignore ├── LICENSE ├── README.md ├── arguments.py ├── demo.py ├── figures ├── academy_3_vs_1_with_keeper.gif ├── academy_counterattack_easy.gif ├── academy_empty_goal_close.gif └── academy_run_to_score.gif ├── models.py ├── ppo_agent.py ├── train_example.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianhongDai/google-football-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianhongDai/google-football-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianhongDai/google-football-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianhongDai/google-football-pytorch/HEAD/arguments.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianhongDai/google-football-pytorch/HEAD/demo.py -------------------------------------------------------------------------------- /figures/academy_3_vs_1_with_keeper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianhongDai/google-football-pytorch/HEAD/figures/academy_3_vs_1_with_keeper.gif -------------------------------------------------------------------------------- /figures/academy_counterattack_easy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianhongDai/google-football-pytorch/HEAD/figures/academy_counterattack_easy.gif -------------------------------------------------------------------------------- /figures/academy_empty_goal_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianhongDai/google-football-pytorch/HEAD/figures/academy_empty_goal_close.gif -------------------------------------------------------------------------------- /figures/academy_run_to_score.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianhongDai/google-football-pytorch/HEAD/figures/academy_run_to_score.gif -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianhongDai/google-football-pytorch/HEAD/models.py -------------------------------------------------------------------------------- /ppo_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianhongDai/google-football-pytorch/HEAD/ppo_agent.py -------------------------------------------------------------------------------- /train_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianhongDai/google-football-pytorch/HEAD/train_example.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianhongDai/google-football-pytorch/HEAD/utils.py --------------------------------------------------------------------------------