sklearn.metrics.pairwise.chi2_kernel

sklearn.metrics.pairwise.chi2_kernel(X, Y=None, gamma=1.0)

源码

计算指数卡方内核X和Y。

在X和Y中的每对行之间计算卡方核。X和Y必须为非负数。该内核通常应用于直方图。

卡方内核由下式给出:

k(x, y) = exp(-gamma Sum [(x - y)^2 / (x + y)])

可以解释为每个条目的加权差。

用户指南中阅读更多内容。

参数 说明
X array-like of shape (n_samples_X, n_features)
Y array of shape (n_samples_Y, n_features)
gamma float, default=1.
chi2内核的缩放参数。
返回值 说明
kernel_matrix array of shape (n_samples_X, n_samples_Y)

另见:

additive_chi2_kernel

此内核的附加版本

sklearn.kernel_approximation.AdditiveChi2Sampler

此内核的加法版本的傅立叶近似。

参考

Zhang, J. and Marszalek, M. and Lazebnik, S. and Schmid, C. Local features and kernels for classification of texture and object categories: A comprehensive study International Journal of Computer Vision 2007 https://research.microsoft.com/en-us/um/people/manik/projects/trade-off/papers/ZhangIJCV06.pdf