Compute the laplacian kernel between X and Y.
The laplacian kernel is defined as:
K(x, y) = exp(-gamma ||x-y||_1)
for each pair of rows x in X and y in Y. Read more in the User Guide.
Added in version 0.17.
A feature array.
An optional second feature array. If None
, uses Y=X
.
If None, defaults to 1.0 / n_features. Otherwise it should be strictly positive.
The kernel matrix.
Examples
>>> from sklearn.metrics.pairwise import laplacian_kernel >>> X = [[0, 0, 0], [1, 1, 1]] >>> Y = [[1, 0, 0], [1, 1, 0]] >>> laplacian_kernel(X, Y) array([[0.71, 0.51], [0.51, 0.71]])
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4