_Xmean is now Xoffset and _Xstd is now _Xscale

This commit is contained in:
Ricardo 2013-06-05 19:18:29 +01:00
parent 0a51407528
commit 8d8408dee0
3 changed files with 14 additions and 14 deletions

View file

@ -142,7 +142,7 @@ class GP(GPBase):
"""
# normalize X values
Xnew = (Xnew.copy() - self._Xmean) / self._Xstd
Xnew = (Xnew.copy() - self._Xoffset) / self._Xscale
mu, var = self._raw_predict(Xnew, full_cov=full_cov, which_parts=which_parts)
# now push through likelihood