Skip to content
View bugbyte42's full-sized avatar

Block or report bugbyte42

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. qmk_firmware qmk_firmware Public

    Forked from qmk/qmk_firmware

    Open-source keyboard firmware for Atmel AVR and Arm USB families

    C

  2. An example of Information Set Monte ... An example of Information Set Monte Carlo Tree Search from http://www.aifactory.co.uk/newsletter/2013_01_reduce_burden.htm
    1
    # This is a very simple Python 2.7 implementation of the Information Set Monte Carlo Tree Search algorithm.
    2
    # The function ISMCTS(rootstate, itermax, verbose = False) is towards the bottom of the code.
    3
    # It aims to have the clearest and simplest possible code, and for the sake of clarity, the code
    4
    # is orders of magnitude less efficient than it could be made, particularly by using a 
    5
    # state.GetRandomMove() or state.DoRandomRollout() function.