mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-08 15:05:15 +02:00
fix xrange
This commit is contained in:
parent
994db9f536
commit
2176922861
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ class PSICOMP_GH(PSICOMP):
|
|||
dZ = np.zeros_like(Z)
|
||||
dmu = np.zeros_like(mu)
|
||||
dS = np.zeros_like(S)
|
||||
for i in xrange(self.degree):
|
||||
for i in range(self.degree):
|
||||
if self.cache_K:
|
||||
X = Xs[i]
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue