sklearn.metrics.pairwise
.sigmoid_kernel¶
-
sklearn.metrics.pairwise.
sigmoid_kernel
(X, Y=None, gamma=None, coef0=1)[source]¶ Compute the sigmoid kernel between X and Y:
K(X, Y) = tanh(gamma <X, Y> + coef0)
Read more in the User Guide.
- Parameters
- Xndarray of shape (n_samples_1, n_features)
- Yndarray of shape (n_samples_2, n_features)
- gammafloat, default None
If None, defaults to 1.0 / n_features
- coef0float, default 1
- Returns
- Gram matrixarray of shape (n_samples_1, n_samples_2)