We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cb4223 commit b65afbfCopy full SHA for b65afbf
sklearn/decomposition/kernel_pca.py
@@ -11,12 +11,12 @@
11
from ..utils.extmath import svd_flip
12
from ..utils.validation import check_is_fitted, check_array
13
from ..exceptions import NotFittedError
14
-from ..base import BaseEstimator, TransformerMixin, _UnstableOn32BitMixin
+from ..base import BaseEstimator, TransformerMixin
15
from ..preprocessing import KernelCenterer
16
from ..metrics.pairwise import pairwise_kernels
17
18
19
-class KernelPCA(BaseEstimator, TransformerMixin, _UnstableOn32BitMixin):
+class KernelPCA(BaseEstimator, TransformerMixin):
20
"""Kernel Principal component analysis (KPCA)
21
22
Non-linear dimensionality reduction through the use of kernels (see
0 commit comments