GithubHelp home page GithubHelp logo

pekaalto / sc2aibot Goto Github PK

View Code? Open in Web Editor NEW
89.0 9.0 14.0 37 KB

Implementing reinforcement-learning algorithms for pysc2 -environment

Python 100.00%
pysc2 starcraft2 reinforcement-learning a2c tensorflow python ppo proximal-policy-optimization deepmind

sc2aibot's Introduction

  

  

Info

This project implements the FullyConv reinforcement learning agent for pysc2 as specified in https://deepmind.com/documents/110/sc2le.pdf.

It's possible to use

  • A2C, which is a synchronous version of A3C used in the deepmind paper
  • PPO (Proximal Policy Optimization)

Differences to the deepmind spec:

  • Use A2C or PPO instead of A3C
  • The non-spatial feature-vector is discarded here. (Probably because of this can't learn CollectMineralsAndGas)
  • There are some other minor simplifaction to the observation space
  • Use different hyper-parameters
  • For select rectangle we draw a rectangle of radius 5px around selected point (uncertain how deepmind does this)
  • Here we are not trying to learn any other function arguments except the spatial one
  • And maybe others that I don't know of

Results

Map Avg score A2C Avg score PPO Deepmind avg
MoveToBeacon 25 26 26
CollectMineralShards 91 100 103
DefeatZerglingsAndBanelings 48 ? 62
FindAndDefeatZerglings 42 45 45
DefeatRoaches 70-90 ? 100

Training graphs A2C:

Training graphs PPO:

  • Used the default parameters seen in the repo except:
    • DefeatRoaches, DefeatZerglinsAndBanelings entropy_weights 1e-4/1e-4, n_steps_per_batch 5
    • Number of envs 32 or 64
  • Deepmind scores from the FullyConv policy in the release paper are shown for comparison.
  • The model here wasn't able to learn CollectMineralsAndGas or BuildMarines

In DefeatRoaches and DefeatZerglingsAndBanelings the result is not stable. It took something like 5 runs the get the score for DefeatRoaches reported here. Also the scores for those are still considerably worse than Deepmind scores. Might be that at least hyperparameters here are off (and possibly other things).

Other environments seem more stable.

The training was done using one core of Tesla K80 -GPU per environment.

With PPO the scores were slightly better than A2C for tested environments. However, the training time was much longer with PPO than with A2C. Maybe some other PPO-parameters would give faster training time. With PPO the training seems more stable. The typical sigmoid shape in A2C-learning cureves doesn't appear.

Note:

The training is not deterministic and the training time might vary even if nothing is changed. For example, I tried to train MoveToBeacon 5 times with default parameters and 64 environments. Here are the episode numbers when agent achieved score of 27 first time

4674
3079
2355
1231
6358

How to run

python run_agent.py --map_name MoveToBeacon --model_name my_beacon_model --n_envs 32

This will save

  • tf summaries to _files/summaries/my_beacon_model/
  • model to _files/models/my_beacon_model

relative to the project path. By default using A2C. To run PPO specify --agent_mode ppo.

See run_agent.py for more arguments.

Requirements

  • Python 3 (will NOT work with python 2)
  • pysc2 (tested with v1.2)
  • Tensorflow (tested with 1.4.0)
  • Other standard python packages like numpy etc.

Code is tested with OS X and Linux. About Windows don't know. Let me know if there are issues.

References

I have borrowed some ideas from https://github.com/xhujoy/pysc2-agents (FullyConv-network etc.) and Open AI's baselines (A2C and PPO) but the implementation here is different from those. For parallel environments using the code from baselines adapted for sc2.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.