integrated sparse GP regression and BGPLVM classes

This commit is contained in:
Nicolo Fusi 2013-01-30 15:51:36 +00:00
parent 079a20620a
commit 2493e2d336
3 changed files with 25 additions and 23 deletions

View file

@ -32,7 +32,7 @@ class rbf(kernpart):
def __init__(self,D,variance=1.,lengthscale=None,ARD=False):
self.D = D
self.ARD = ARD
if ARD == False:
if not ARD:
self.Nparam = 2
self.name = 'rbf'
if lengthscale is not None: