less than 1 minute read

知道了 Radial basis functionkernel function 之后,Radial basis function kernel 就好理解了:它是一个 kernel function,然后属于 radial basis function 大类。

Wikipedia: Radial basis function kernel: The RBF kernel on two samples x and x, represented as feature vectors in some input space, is defined as

K(x,x)=exp(xx22σ2)

xx2 may be recognized as the squared Euclidean distance between the two feature vectors. σ is a free parameter. An equivalent, but simpler, definition involves a parameter γ=12σ2:

K(x,x)=exp(γxx2)

Since the value of the RBF kernel decreases with distance and ranges between 0 (in the limit) and 1 (when x=x), it has a ready interpretation as a similarity measure.

Categories:

Updated:

Comments