You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry if I've missed something obvious. Is there a way to supply a distance matrix to Stheno instead of a vector or array of points in Euclidean space?
The text was updated successfully, but these errors were encountered:
Hmmm no, I'm afraid not. It's worth noting that the points don't have to be in Euclidean space though. If you wanted to work with a pre-computed kernel matrix, I think I would just suggest implementing a new Kernel which contains the pre-computed kernel matrix, and then indexing into it via inputs. Something like
k =MyKernel(kernel_matrix)
f =GP(k)
x =1:10f(x)
and implementing KernelFunctions.kernelmatrix etc such that this works properly.
Sorry if I've missed something obvious. Is there a way to supply a distance matrix to Stheno instead of a vector or array of points in Euclidean space?
The text was updated successfully, but these errors were encountered: