mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-11 15:15:15 +02:00
Changed <> to != for Py3 compatibility
This commit is contained in:
parent
381d28e6c8
commit
6554c32d23
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ def ICM(input_dim, num_outputs, kernel, W_rank=1,W=None,kappa=None,name='ICM'):
|
|||
:param W_rank: number tuples of the corregionalization parameters 'W'
|
||||
:type W_rank: integer
|
||||
"""
|
||||
if kernel.input_dim <> input_dim:
|
||||
if kernel.input_dim != input_dim:
|
||||
kernel.input_dim = input_dim
|
||||
warnings.warn("kernel's input dimension overwritten to fit input_dim parameter.")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue