KernelFunctions.jl icon indicating copy to clipboard operation
KernelFunctions.jl copied to clipboard

`KernelSum` and `KernelProduct` with `Vector` of `Kernel` fails

Open theogf opened this issue 1 year ago • 5 comments

Right now these composites will not work if the container is not a Tuple. See

k = SqExponentialKernel()
kk = KernelSum([k, k])
kk(2, 3) # Errors

theogf avatar Mar 28 '23 16:03 theogf