Replies: 1 comment
-
Kernels must be symmetric and positive definite. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
First : what I would like to
I would like to create the following kernel : like k(flip(x),y).
For example, FlipRBF([1,2],[3,4])=RBF([2,1],[3,4]).
(This kernel may not be symmetry (k(flip(x),y)≠ k(flip(y),x)).However, Flip-RBF satisfy kernel function requirement.)
And Flip-kernel is the same when the dimension of input is 1 because flip(x)=x.
Second : what I do
I create this Gaussian Regression Sample :
Reference : https://github.com/makinzm/UNDONE_local/blob/main/08_oputuna/gp-03.ipynb
However, the result is different even though the dimension is 1 :
I would appreciate it if you could tell me what the problem is.
Beta Was this translation helpful? Give feedback.
All reactions