Replies: 1 comment
-
This was a stupid question ;) With the used distance metric in this case, which can be either 0 or 1, |
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
-
I was wondering why the categorical kernel in (https://github.com/pytorch/botorch/blob/main/botorch/models/kernels/categorical.py) is of the form
exp(-dist(x1, x2) / lengthscale)
instead ofexp(-dist(x1, x2)**2 / lengthscale)
, where the latter would correspond to an RBF kernel just with a different distance metric.Is there any specific (mathematical) reason for this?
Beta Was this translation helpful? Give feedback.
All reactions