Compute the sigmoid kernel between X and Y.
K(X, Y) = tanh(gamma <X, Y> + coef0)
Read more in the User Guide.
A feature array.
An optional second feature array. If None
, uses Y=X
.
Coefficient of the vector inner product. If None, defaults to 1.0 / n_features.
Constant offset added to scaled inner product.
Sigmoid kernel between two arrays.
Examples
>>> from sklearn.metrics.pairwise import sigmoid_kernel >>> X = [[0, 0, 0], [1, 1, 1]] >>> Y = [[1, 0, 0], [1, 1, 0]] >>> sigmoid_kernel(X, Y) array([[0.76, 0.76], [0.87, 0.93]])
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