mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-09 20:12:38 +02:00
bug fixed
ICM-RBF is used as default Kernel, but the user should be able to define a multiple output kernel outside and pass it to the model.
This commit is contained in:
parent
60645b8b03
commit
ca34f1a273
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ class SparseGPCoregionalizedRegression(SparseGP):
|
|||
if kernel is None:
|
||||
kernel = kern.RBF(X.shape[1]-1)
|
||||
|
||||
kernel = util.multioutput.ICM(input_dim=X.shape[1]-1, num_outputs=Ny, kernel=kernel, W_rank=1,name=kernel_name)
|
||||
kernel = util.multioutput.ICM(input_dim=X.shape[1]-1, num_outputs=Ny, kernel=kernel, W_rank=1,name=kernel_name)
|
||||
|
||||
#Likelihood
|
||||
likelihood = util.multioutput.build_likelihood(Y_list,self.output_index,likelihoods_list)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue