mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-24 14:15:14 +02:00
fixed product kernel copy error
This commit is contained in:
parent
1c9151a7d0
commit
0d52430ffb
1 changed files with 4 additions and 2 deletions
|
|
@ -180,8 +180,10 @@ class kern(Parameterized):
|
||||||
:type tensor: bool
|
:type tensor: bool
|
||||||
|
|
||||||
"""
|
"""
|
||||||
K1 = self.copy()
|
K1 = self
|
||||||
K2 = other.copy()
|
K2 = other
|
||||||
|
#K1 = self.copy()
|
||||||
|
#K2 = other.copy()
|
||||||
|
|
||||||
slices = []
|
slices = []
|
||||||
for sl1, sl2 in itertools.product(K1.input_slices, K2.input_slices):
|
for sl1, sl2 in itertools.product(K1.input_slices, K2.input_slices):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue