Giter Club home page Giter Club logo

alphazero-pybind11's Introduction

AlphaZero Pybind11

This is a modified implementation of AlphaZero. It takes some inspiration from Learning From Scratch by Thinking Fast and Slow with Deep Learning and Tree Search and some of my own modifications for caching positions. The actual core loops of games and MCTS are implemented in C++ for performance and memory reasons. Python is used for the Neural Network and data packaging.

How to Install

Prereqs

This project has a few prereqs, but should be usable on Linux, Windows, or Mac.

  1. You need a C++ toolchain, ninja, and the meson build system. All of this information can be found in the meson installation guide. Just follow along for whichever platform you use.

  2. If using an nvidia gpu with cuda, you need the required video drivers. This is a complex topic that is system specific. Google it for your OS.

  3. You need a python3 setup. You can use the system built in python with pip or virtual environments. I am not really a fan of that. I would advise getting Anaconda.

Python Env Setup

If using conda, you can follow this to get all of the python libaries installed:

  1. Create and activate a new environment (on windows make sure to use the Anaconda prompt if not in path)

    conda create -n torch python=3.9
    conda activate torch
    
  2. Install pytorch as recomended for your system. Just select your OS, Conda, and the compute platform.

  3. Other package to install: conda install tqdm matplotlib

  4. Install aim, it is used for visualization of training. Sadly it is not yet supported by conda, so just: pip install aim. On Windows, this is problematic due to this issue. To make things still work, Windows, doesn't get any of the nice web logging. Maybe it is better to use WSL or dual boot linux.

Build the Project

Building the project is pretty simple once you have the dependencies.

  1. Setup the project with meson setup build --buildtype release. For M1 macs, you probably have to add --cross-file m1-cross-file.txt as well. This is due to python and its packages still generally being installed as x86_64.

  2. Build the C++ ninja -C build test. There will be warnings, but my minimal tests should pass. For Windows, you may need to build through the meson wrapper with meson compile -C build && meson test -C build

How to Use

Just Running Something

To start training a network, just run: python src/game_runner.py

To track the progress, you can launch aim with: aim up from the project directy (make sure the torch env is activated). Go the to Metrics tab and start adding metrics. Guide on metrics explorer.

Note: The first iteration will use a random player, and is likely to run much faster than following iterations. If following iterations are too slow, try lowering the number of games played by changing SELF_PLAY_BATCH_SIZE. You can also lower the tree search depth by changing nn_selfplay_mcts_depth.

After a couple of iterations have finished, you can end the program and have the networks directly compete in a tournament. For a faster tournament, run python src/monrad.py. For a full roundrobin, run python src/roundrobin.py

Important Files for Users

Everything is a bit of a mess and config could definitely use more cleanup, but here are the important files:

  • src/game_runner.py: Main python entrypoint for training. Lot of config options.
  • src/neural_net.py: The neural network implementations and config.
  • src/monrad.py: Runs a monrad tournament between networks put in data/bench. Is be much faster than roundrobin.
  • src/roundrobin.py: Runs a roundrobin tournament between networks put in data/bench. Can take a long time to run, but is very accurate.
  • src/play_agent.py: Lets the user play a network. Requires move selection customization (look at the commented out block).
  • src/play_analysis: Compares the network to itself with increasingly more MCTS searches. Can be useful for debugging and telling how good a network is.
  • src/game_state.h: This is the interface that must be implemented to add a new game.
  • src/*_gs.(h|cc): Implementations of various games.
  • src/py_wrapper.cc: The definition of the python api that gets exposed.
  • src/meson.build: The build definition that must be edited when adding a new game.

In general if you want to add something new, just start by coping from some other game and then editting. That will probably make life easier. Also, don't forget to rebuild before running the python app again.

alphazero-pybind11's People

Contributors

bhansconnect avatar

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.