mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-18 13:55:14 +02:00
Various Py3 fixes
This commit is contained in:
parent
273beca272
commit
6d2393ae90
4 changed files with 14 additions and 14 deletions
|
|
@ -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):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue