KAIST IE801(Game theory and Multi-agent RL) 2019 Fall - Termproject
Objective: Achieving agent(s) that plays StarCraft2 microcontrol environment well as much as possible with any possible manners. except modifying followings:
- The design of state, observation function: The state and observation function will be determined by the
SMAC StarCraft2Env
. We will use the default state, observation function when we validate the project outcomes.
- We highly recommend that you explore
StarCraft2Env
prior to the paper presentation. While you preparing the presentations (or listening others' presentation), you can get some ideas about how to implmentat the idea for theStarCraft2Env
- About team buildings: You can build a one-person team even! Again, the number of teammate can be up to 3 ppl.
- Updates on term project due. The due of the proejct is December 28, 2019
Team building (November 20, 2019) - Mail to T.A. (Junyoungpark@kaist.ac.kr). Anyone cannot match the team also mail to T.A. We will match the team for you 😀
Due of the project (December 28, 2019)
Any modification will be welcomed except the design of state and observation function only if the modification is well reasoned and documented on your report
We will grade the project outcomes only based on the average winning rate. The average winning rate will be computed through another testing code. Therefore, every trained model should work properly without any modification of the test code except load_model
and test_model
.
We expected to get a short report
(<= 3pages) that is about
- the main algorithm that you used,
- details of tweaks that you used for improving or stabilizing the algorithm,
- test performance from the test suite
Also, you need to submit a saved version
of your model and corresponding code snippet to validate the outcome. You can find the detail from here.
SMAC is based on the full game of StarCraft II (versions >= 3.16.1). To install the game, follow the commands bellow.
Linux
Please use the Blizzard's repository to download the Linux version of StarCraft II. By default, the game is expected to be in ~/StarCraftII/
directory. This can be changed by setting the environment variable SC2PATH
.
Windows and Mac
Please install StarCraft II from Battle.net. The free Starter Edition also works. PySC2 will find the latest binary should you use the default install location. Otherwise, similar to the Linux version, you would need to set the SC2PATH environment variable with the correct location of the game.
$ pip install git+https://github.com/oxwhirl/smac.git
Alternatively, you can clone the SMAC repo and install smac
$ git clone https://github.com/oxwhirl/smac.git
$ pip install smac/
Download the SMAC Maps and extract them to your $SC2PATH/Maps
(in Windows, C:/Program Files (x86)/StarCraft II/Maps
by default.) directory. If you installed SMAC via git, simply copy the SMAC_Maps directory from smac/env/starcraft2/maps/ into $SC2PATH/Maps directory. Make sure to have following directory structure $SC2PATH/Maps/SMAC_Maps
Please raise an inssue on this repository if you encounter any problem.