Various Py3 fixes

This commit is contained in:
Mike Croucher 2015-03-04 03:22:44 +00:00
parent 273beca272
commit 6d2393ae90
4 changed files with 14 additions and 14 deletions

View file

@ -30,7 +30,7 @@ class SparseGPMissing(StochasticStorage):
Thus, we can just make sure the loop goes over self.d every
time.
"""
self.d = xrange(model.Y_normalized.shape[1])
self.d = range(model.Y_normalized.shape[1])
class SparseGPStochastics(StochasticStorage):
"""