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 faf198d commit 47bbd11Copy full SHA for 47bbd11
test/test_pipeline/components/feature_preprocessing/test_kernel_pca.py
@@ -1,3 +1,4 @@
1
+import sys
2
import unittest
3
4
from sklearn.linear_model import RidgeClassifier
@@ -9,6 +10,7 @@
9
10
11
12
class KernelPCAComponentTest(PreprocessingTestCase):
13
+ @unittest.skipIf(sys.version_info < (3, 7), 'Random failures for Python < 3.7')
14
def test_default_configuration(self):
15
transformation, original = _test_preprocessing(KernelPCA,
16
dataset='digits',
0 commit comments