Python library for experimenting with the game of cribbage.
There is a C function which can score a cribbage hand 100 times faster than doing it in pure Python.
To compile the Cython extension:
python setup.py build_ext --inplace
Then:
from cribbage import _cribbage_score _cribbage_score.score_hand(hand, draw)
In the base directory of the project, do:
py.test
- Mnih, Volodymyr, et al. Human-level control through deep reinforcement learning. Nature 518, no. 7540 (2015): 529-533.
- van Hasselt, Hado. Double Q-learning. Poster at Advances in Neural Information Processing Systems 23 (NIPS 2010), Vancouver, British Columbia, Canada.