Skip to content

Instantly share code, notes, and snippets.

@jackgoffinet
jackgoffinet / uct.py
Last active February 28, 2017 19:30
generic UCT implementation
"""
Generic UCT implementation
Actions are represented by integers in [0,<num_actions>).
An action sequence must terminate within <seq_length> actions.
"""
__author__ = "Jack Goffinet"
__date__ = "December 2016 - February 2017"