mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-07 11:02:38 +02:00
Fixing GP_EP
This commit is contained in:
parent
d286ffe633
commit
b6ffb57263
8 changed files with 638 additions and 5 deletions
|
|
@ -32,7 +32,7 @@ class likelihood:
|
|||
"""
|
||||
assert X_new.shape[1] == 1, 'Number of dimensions must be 1'
|
||||
gpplot(X_new,Mean_new,Var_new)
|
||||
pb.errorbar(X_u,Mean_u,2*np.sqrt(Var_u),fmt='r+')
|
||||
pb.errorbar(X_u.flatten(),Mean_u.flatten(),2*np.sqrt(Var_u.flatten()),fmt='r+')
|
||||
pb.plot(X_u,Mean_u,'ro')
|
||||
|
||||
def plot2D(self,X,X_new,F_new,U=None):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue