Skip to content

Instantly share code, notes, and snippets.

@tompaton
tompaton / trueskill.py
Created December 22, 2010 08:41
Version of true_skill() Python algorithm that handles draws.
#!/usr/bin/env python2.6
from __future__ import print_function
import sys
from scipy.stats.distributions import norm as scipy_norm
beta = 25/6
gamma = 25/300
epsilon = 0.08