mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-11 04:52:37 +02:00
_Xmean is now Xoffset and _Xstd is now _Xscale
This commit is contained in:
parent
0a51407528
commit
8d8408dee0
3 changed files with 14 additions and 14 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue