From 4765a857ba177973f98e51bf94fd3e62d9c6b75c Mon Sep 17 00:00:00 2001 From: Homer Strong Date: Sun, 19 Jul 2015 14:31:19 -0700 Subject: [PATCH] remove docstring for missing tensor param from add/prod relevant to #162 --- GPy/kern/_src/kern.py | 2 -- GPy/kern/_src/prod.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/GPy/kern/_src/kern.py b/GPy/kern/_src/kern.py index 57b2bff5..87623429 100644 --- a/GPy/kern/_src/kern.py +++ b/GPy/kern/_src/kern.py @@ -205,8 +205,6 @@ class Kern(Parameterized): :param other: the other kernel to be added :type other: GPy.kern - :param tensor: whether or not to use the tensor space (default is false). - :type tensor: bool """ assert isinstance(other, Kern), "only kernels can be multiplied to kernels..." diff --git a/GPy/kern/_src/prod.py b/GPy/kern/_src/prod.py index a3b49973..b66efd00 100644 --- a/GPy/kern/_src/prod.py +++ b/GPy/kern/_src/prod.py @@ -26,8 +26,6 @@ class Prod(CombinationKernel): :param k1, k2: the kernels to multiply :type k1, k2: Kern - :param tensor: The kernels are either multiply as functions defined on the same input space (default) or on the product of the input spaces - :type tensor: Boolean :rtype: kernel object """