From 1bcdccf1d35d0c558d09c308fd036592cb116694 Mon Sep 17 00:00:00 2001 From: David Cortes Date: Tue, 28 Oct 2025 18:12:19 +0100 Subject: [PATCH] expand PCA sizes --- configs/common/pca.json | 2 +- configs/regular/pca.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configs/common/pca.json b/configs/common/pca.json index 32df40ac..3b62c01c 100644 --- a/configs/common/pca.json +++ b/configs/common/pca.json @@ -5,7 +5,7 @@ "algorithm": { "estimator": "PCA", "estimator_params": { - "n_components": 3, + "n_components": 20, "copy": true, "whiten": false, "svd_solver": "covariance_eigh", diff --git a/configs/regular/pca.json b/configs/regular/pca.json index 98c5c706..1e46a13e 100644 --- a/configs/regular/pca.json +++ b/configs/regular/pca.json @@ -6,10 +6,10 @@ "data": { "source": "make_blobs", "generation_kwargs": [ - { "n_samples": 40000000, "n_features": 5, "centers": 2 }, - { "n_samples": 10000000, "n_features": 20, "centers": 2 } + { "n_samples": 5000000, "n_features": 500, "centers": 2 }, + { "n_samples": 500000, "n_features": 2000, "centers": 2 } ], - "split_kwargs": { "ignore": true } + "split_kwargs": { "train_size": 0.1, "test_size": null } } }, {