remove docstring for missing tensor param from add/prod

relevant to #162
This commit is contained in:
Homer Strong 2015-07-19 14:31:19 -07:00
parent 1d7712ecc8
commit 4765a857ba
2 changed files with 0 additions and 4 deletions

View file

@ -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..."

View file

@ -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
"""