Pith. sign in

REVIEW 4 major objections 6 minor 45 references

Metrics for Inter-Dataset Similarity with Example Applications in Synthetic Data and Feature Selection Evaluation -- Extended Version

T0 review · 4 major / 6 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read Two PCA-based metrics, the difference in explained variance and the angle between first principal components, are claimed to give deterministic, model-independent measurements of inter-dataset similarity.

desk verdict Useful PCA-based heuristic for dataset similarity, but Eq. (4.7) needs an explicit normalization precondition and the noise-invariance proof is only expectation-level. read the letter →

arxiv 2501.09591 v1 pith:K6GIFYU4 submitted 2025-01-16 cs.LG

classification cs.LG MSC 62H25
keywords inter-datasetsimilarityprincipalcomponentanalysisexplainedvariancedifferenceanglesyntheticdataevaluationfeatureselectionmodel-agnosticmetrictabular
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper sets out to measure how similar two numerical tabular datasets are by comparing their principal component structure instead of training any model. It proposes two metrics: the difference in explained variance ($\Delta\lambda$), a sum of absolute differences between eigenvalue spectra with a data-dimension-dependent normalization, and the angle difference ($\Delta\theta$) between the first principal components of the two datasets. Both metrics are deterministic for a given sample and need no labels, kernels, pretrained embeddings, or downstream tasks, which the paper argues distinguishes them from common similarity measures. The paper then argues that these metrics work in two practical roles: tracking and scoring synthetic-data quality during training, and, through an averaged angle difference called AAD, selecting the feature-selection result that best preserves the dataset's structure without running a classifier. A sympathetic reader would care because cheap, model-free dataset similarity would make synthetic-data auditing and feature-selection comparison more reproducible and less dependent on arbitrary modeling choices.

What carries the argument

The carrying object is the eigenvalue decomposition of the sample covariance matrix, specifically the ordered eigenvalue spectrum $\lambda_1 \ge \cdots \ge \lambda_p$ and the first eigenvector $a_1$. The eigenvalues encode how much variance each principal direction explains, so $\Delta\lambda$ measures differences in how variance is distributed, while $a_1$ encodes the dominant direction of variation, so $\Delta\theta$ measures whether the two populations vary along different axes. The normalization in $\Delta\lambda$ is derived from a bound comparing a fully concentrated spectrum with a noise-like uniform spectrum, while the factor $2/\pi$ in $\Delta\theta$ maps the minimum angle between the two first principal components onto the unit interval. AAD assembles these angle differences into a feature-selection criterion by setting each unselected feature to zero and averaging the resulting angle cost over all unselected features.

What would settle it

Run the paper's synthetic-data benchmark twice on the same generated datasets, once with mean-subtracted data and once with data standardized by standard deviation; if the rankings or values of $\Delta\lambda$ and $\Delta\theta$ change, the metric's output depends on preprocessing choice, and the claimed normalization to $[0,1]$ is not intrinsic to the data.

Watch

Extended reading notes

Core claim

The central discovery is that inter-dataset similarity for numerical tabular data can be read off the PCA decomposition of the two datasets: if two datasets share the same underlying statistics, their empirical covariance matrices and therefore their eigenvalue sequences and leading eigenvectors should agree, and any divergence is quantified by the two proposed metrics. The eigenvalue-based metric is $\Delta\lambda = \frac{d}{d+p-2}\sum_i |\lambda_i - \lambda_i'|$, where $d$ is the number of variables and $p$ the number of components considered, and it captures how the total variance is distributed across principal directions. The angle metric is $\Delta\theta = \frac{2}{\pi}\min[\arccos(a_1 \cdot a_1'), \arccos(a_1 \cdot (-a_1'))]$, with the minimum taken because principal components are only defined up to sign, and it captures whether the dominant axes of variation point in the same directions. The paper further claims that averaging the angle differences contributed by zeroing out each unselected feature gives AAD, a model-agnostic score whose minimum across feature-selection methods agrees with the best classifier-based or clustering-based result in most of the benchmark datasets examined.

Load-bearing premise

The unit-interval guarantee for $\Delta\lambda$ holds only when the eigenvalue spectra of both datasets are normalized to sum to one, and the paper never states this precondition in the metric definition; without a fixed standardization convention, the same pair of datasets yields different similarity values.

Editorial extensions

If this is right

  • Synthetic-data quality can be monitored during training: the proposed metrics fall as a generative model improves and plateau when quality converges, offering a possible early-stopping signal.
  • Because the metrics are deterministic and independent of downstream tasks, evaluations using them avoid the variability introduced by classifier training, kernel choice, or embedding models.
  • Under standardization, the metrics are invariant to translation and scaling, and orthogonal rotations change only $\Delta\theta$ by the rotation angle, so they can sanity-check whether a supposedly synthetic dataset is merely an altered copy of real data.
  • AAD provides a model-agnostic way to rank feature-selection results: picking the result with the minimum AAD agrees with the best classifier-based or clustering-based result on most of the datasets tested.
  • AAD decreases as more features are selected, reflecting the marginal contribution of each feature to the dataset's principal structure.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • A natural extension the authors gesture at but do not develop is to use AAD as a stopping rule in forward feature selection, since the reported downward trend suggests a plateau once redundant features are added.
  • Because $\Delta\theta$ only reads the first principal component, two datasets with identical first eigenvectors but different later components could be rated very similar; a version averaging angles over several components would be a direct stress test of the method.
  • The preprocessing sensitivity noted in Section 7 implies that reproducible use of these metrics requires publishing a fixed standardization convention, since switching between mean-subtracted and standardized data changes the measured values.
  • If a consistent preprocessing convention is fixed, the same machinery applies beyond tabular data to any numerical representation, including images or text embeddings.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 6 minor

Summary. The paper proposes two PCA-based metrics for inter-dataset similarity: Δλ, the normalized difference between eigenvalue spectra, and Δθ, the angle between first principal components. After reviewing PCA background, the authors analyze the metrics' normalization and invariance, then apply them to two tasks: evaluating synthetic data utility and evaluating feature selection results via the derived Average Angle Difference (AAD). The empirical sections report experiments on synthetic data from several generators (using SynthEval) and on 20 UCI datasets with four feature selection methods. The central claims are that the metrics are deterministic, model-agnostic, and capture holistic dataset structure, and that AAD can select the best feature selection result without a downstream model.

Significance. If the technical issues are resolved, the paper offers a simple, deterministic, and computationally light complement to model-dependent inter-dataset similarity measures. The authors provide an implementation on GitHub and evaluate on a substantial number of benchmark datasets, and the correlation analysis in Section 5.1 is a useful way to position the new metrics against existing utilities and privacy metrics. The proposed metrics have no fitted parameters (beyond the choice of p for Δλ), which is a genuine practical advantage. However, the paper's primary quantitative claims currently depend on unstated preprocessing and normalization choices, and the feature-selection application needs a sharper statement of what AAD actually measures.

major comments (4)
  1. [Section 4.1, Eqs. (4.7) and (4.8)] The normalization of Δλ is not well-defined as stated. The derivation of the bound in Eq. (4.8) assumes that each eigenvalue spectrum sums to 1, with the 'pure noise' spectrum given by λ'_i = 1/d. But Section 3 defines PCA on the sample covariance matrix S = (1/(n−1)) X̃ᵀX̃, whose eigenvalues sum to the total variance; for mean-centered data this sum is an arbitrary scale-dependent quantity, and for z-score standardized data the correlation-matrix eigenvalues sum to d. Without an explicit convention (e.g., standardizing and dividing all eigenvalues by d), the claimed unit-interval range is not guaranteed: for standardized data with p = d, the worst-case spectra λ = (d,0,…,0) and λ' = (1,…,1) give Δλ = d, not a value in [0,1]. Section 7 concedes that switching between mean-subtracted and standard-deviation-normalized data changes the results. The definition in Eq. (4.7) must specify the preprocessing and the normalization of the λ_i, and the numerical values in Table 2 and the figures must be recomputed under that convention.
  2. [Appendix, Eqs. (.2) and (.3)] The proof that additive noise does not change the covariance matrix is only valid in expectation, not for finite samples. In Eq. (.2), the sample mean of the noise terms is claimed to be zero, but for a finite sample Σ_i δx_i is not exactly zero; similarly, the cross terms Σ_i x_i δy_i, Σ_i y_i δx_i, and the term η Σ_i δx_i δy_i in Eq. (.3) do not vanish exactly. The statement 'it has been shown that random noise does not change the elements of the covariance matrix' is therefore too strong. The privacy sanity-check claims in Section 5.3 rely on this result, so the appendix should either state the result as an expectation/probabilistic statement or provide a finite-sample bound.
  3. [Section 6.2 and 6.3, Eq. (6.10)] The AAD criterion in Eq. (6.10) is partly mechanical: as more features are selected, the complement set F^C shrinks and fewer features are set to zero, so the average angle difference tends to decrease regardless of feature quality. Figure 6 confirms a clear downward trend as the number of selected features increases. Consequently, the claim that 'the minimum AAD value can successfully capture the best feature selection result' is not supported unless all compared feature selection outputs have the same cardinality, or unless the metric is adjusted for cardinality. The experimental section should state the selected-feature counts for each method, compare methods at equal cardinality, or otherwise demonstrate that AAD is not simply favoring larger feature subsets.
  4. [Abstract and Section 4.2] The paper positions the metrics as providing a 'holistic perspective on the entire dataset', but Δθ in Eq. (4.9) uses only the first principal component of each dataset. While Δλ summarizes the full spectrum when p is chosen large enough, Δθ discards all principal components beyond the first, and in near-degenerate spectra the first eigenvector is not even uniquely defined. If the holistic claim is to be retained, the paper should either generalize Δθ to multiple principal components or explicitly qualify that Δθ measures only the dominant direction of variation.
minor comments (6)
  1. [Section 5.3] The text refers to 'Proofs and further details are supplied in Appendix 7', but the appendix has no numbered sections; the reference should simply say 'Appendix'.
  2. [Section 4.1] The definition of Δλ never states how the number of components p is chosen, even though both the sum and the normalization factor in Eq. (4.7) depend on p. The paper should discuss the choice of p and the sensitivity of results to it.
  3. [Appendix, Eq. (.9)] The notation in the rotation invariance proof is inconsistent with Section 3: the projection is written as Z = XA = YQQᵀB = YB, but earlier Eq. (3.6) defines Z = X̃A. Clarify whether the data are centered and whether X in the appendix is already centered.
  4. [Table 2] The 'noisy (10%)' row reports Δλ = 0.00 and Δθ = 0.00 exactly, which conflicts with the finite-sample noise invariance caveat raised in the appendix unless the values are rounded to two significant figures; this should be clarified.
  5. [Figure 4] The labels 'pca_eigval' and 'pca_eigvec' are used without defining which proposed metric each corresponds to; the caption should state that these are Δλ and Δθ.
  6. [References] Reference [40] is a non-archival blog post; for a peer-reviewed venue it should be replaced by a citable source on PCA applications.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the PCA-based metrics are defined directly from the inputs; the validation experiments use external benchmarks, and the flagged preprocessing ambiguity is a correctness issue rather than a circular reduction.

full rationale

The paper's metric definitions are self-contained functions of PCA outputs: Δλ (Eq. 4.7) is a normalized L1 distance between eigenvalue spectra, Δθ (Eq. 4.9) is the angle between first principal components, and AAD (Eq. 6.10) is the average of Δθ over the unselected features. No parameter is fitted to a target, no downstream model is used in the definitions, and no conclusion is obtained by renaming a fitted input. The self-citations in the paper ([19] SynthEval, [30] FSDEM, and the PCA-related background [10], [17], [31]) are used as benchmarking infrastructure or related work, not as load-bearing derivational premises; in particular, no uniqueness theorem or prior construction is imported to force the metric choices. The feature-selection evaluation is genuinely empirical: the minimum-AAD selection is compared against F1-score and clustering accuracy on 20 datasets, rather than being declared correct by definition. The downward trend in Fig. 6 is partly a consequence of averaging over a shrinking set of unselected features, but it is not a formal identity (the average can increase if the newly included feature has a below-average zeroing angle), so it does not constitute a circular prediction. The paper's own Section 7 limitation statement—that switching between mean-subtracted and standardized data changes results—is a serious correctness gap: Eq. (4.8) derives the normalization factor under spectra that sum to 1, whereas Section 3's covariance eigenvalues sum to total variance (or d after standardization), so the claimed unit-interval range of Δλ is not guaranteed as stated. This undermines the quantitative claims, but it is a flaw in the definition's normalization, not a circular derivation, and therefore does not raise the circularity score.

Assumptions & free parameters 1 free parameters · 4 assumptions · 0 invented entities

The metrics rest on PCA, so the main axioms are domain assumptions about PCA statistics sufficiency and standardization of data. The appendix adds an assumption about noise terms vanishing per sample, which is false for finite samples.

free parameters (1)
  • p (number of principal components used in Δλ) = not specified in the paper
    The metric Δλ sums over p components; the choice of p changes the metric's range and meaning, and the paper does not provide a selection rule.
assumptions (4)
  • domain assumption Two datasets that share the same fundamental statistics will have similar PCA representations (Section 4, opening paragraph).
    This is the core premise that makes Δλ and Δθ meaningful; it is plausible but not proven, and the converse (similarity in these statistics implies similarity of datasets) is used in the applications.
  • domain assumption The first principal component is sufficient for angle comparison, as 'the remaining are orthogonal' (Section 4.2).
    Orthogonality of PCs within each dataset does not imply alignment of the remaining PCs across datasets, so discarding them is a strong assumption.
  • ad hoc to paper Eigenvalue spectra are normalized to sum to 1 in the derivation of the normalization bound (Section 4.1, Eq. 4.8).
    The bound assumes λ1≈1, λ2≈0 etc. and λ'i≈1/d, which presumes spectra sum to unity; this requires standardized data and eigenvalue normalization, which the metric definition omits.
  • ad hoc to paper Noise cross-terms such as Σ_i x_i δy_i vanish for finite samples (Appendix, Eq. .3).
    The proof asserts these terms 'disappear' because the noise is centered at zero; this holds only in expectation over the noise distribution, not for a particular finite sample.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Metrics for Inter-Dataset Similarity with Example Applications in Synthetic Data and Feature Selection Evaluation -- Extended Version." pith.science (2026). https://pith.science/paper/K6GIFYU4

@misc{pith2026250109591,
  author       = {Pith},
  title        = {Pith review of: Metrics for Inter-Dataset Similarity with Example Applications in Synthetic Data and Feature Selection Evaluation -- Extended Version},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/K6GIFYU4}},
  note         = {Machine review of arXiv:2501.09591}
}
read the original abstract

Measuring inter-dataset similarity is an important task in machine learning and data mining with various use cases and applications. Existing methods for measuring inter-dataset similarity are computationally expensive, limited, or sensitive to different entities and non-trivial choices for parameters. They also lack a holistic perspective on the entire dataset. In this paper, we propose two novel metrics for measuring inter-dataset similarity. We discuss the mathematical foundation and the theoretical basis of our proposed metrics. We demonstrate the effectiveness of the proposed metrics by investigating two applications in the evaluation of synthetic data and in the evaluation of feature selection methods. The theoretical and empirical studies conducted in this paper illustrate the effectiveness of the proposed metrics.

Figures

Figures reproduced from arXiv: 2501.09591 by the authors.

Figure 1
Figure 1. Samples from Increasingly Similar Populations. The figure shows a source distribution (in blue) and a query distribution (in red). From left to right, the query distribution is moved closer to the source distribution, changing the values of the proposed metrics ∆λ and ∆θ. corr pMSE ks_test pca_ pca_ # atts = 5 0.0 0.2 0.4 0.6 0.8 1.0 normalised metric result # samp. 10 1 10 2 10 3 10 4 corr pMSE ks_test pca_ pca_ # … view at source ↗
Figure 2
Figure 2. Metric Variation with Varying Sample Size and Number of Attributes. The proposed metrics and other state-of-the-art metrics (correlation matrix difference, propensity mean squared error, and the Kolmogorov-Smirnov test) do not conform to the optimum value, due to noise for fewer samples and sparsity from additional dimensions even when the compared samples stem from the same multivariate distribution. the empirical … view at source ↗
Figure 3
Figure 3. TVAE Training Loss Alongside the Proposed Metrics. After an initial period (the model learns characteristics of the data), the metrics drop, indicating a new alignment of the real and synthetic data. Afterwards the metrics steadily improve, aligned with the decreased loss. This demonstrates that the metrics are meaningful for measuring synthetic data quality. Confidence interval is 95%, based on 10 independent runs.… view at source ↗
Figures from the paper (5 more)
Figure 4
Figure 4. Figure 4: Correlation Hierarchy of Metrics. The heat-map is produced by taking the correlations of results of the metrics on 64 synthetic datasets made using different generative models. Closely associated metrics have little value in the same benchmarks since they describe the …
Figure 5
Figure 5. Figure 5: Experimental Results for Feature selection. The experimental results on 20 different datasets, 4 different feature selection methods and compared to two different model-dependent metric. effectiveness of AAD as a model-agnostic metric for evaluation of feature selectio…
Figure 6
Figure 6. Figure 6: In this figure, we show the change in AAD in [PITH_FULL_IMAGE:figures/full_fig_p008_6.png]
Figure 6
Figure 6. Figure 6: Downwards Trend of Angle Difference Results on 20 different datasets show that AAD decreases as more features are selected. Scale of AAD is adjusted to each dataset. selected for the experiments (note that the scale is adjusted for each dataset). We start with selectin…
Figure 7
Figure 7. Figure 7: Extended Experimental Results For Feature Selection Results of experiments on 20 different datasets and for the proposed metrics, F1-score, and clustering accuracy. Color scale is reversed for the first two heat-maps as lower values are desired for those and higher val…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

45 extracted references · 36 canonical work pages

  1. [1]

    DECAF: Generating Fair Synthetic Data Using Causally-Aware Generative Networks

    Boris van Breugel, Trent Kyono, Jeroen Berrevoets, and Mihaela van der Schaar. “DECAF: Generating Fair Synthetic Data Using Causally-Aware Generative Networks”. In: Ad- vances in Neural Information Processing Systems 34: Annual Conference on Neural Information Processing Systems 2021, NeurIPS 2021, De- cember 6-14, 2021, virtual . Ed. by Marc’Aurelio Ranz...

  2. [2]

    Campos and J

    D. Campos and J. Bernardes. Cardiotocography. UCI Machine Learning Repository. 2010. doi: 10. 24432/C51S4N

  3. [3]

    A Multi-Dimensional Evaluation of Syn- thetic Data Generators

    Fida K. Dankar, Mahmoud K. Ibrahim, and Leila Ismail. “A Multi-Dimensional Evaluation of Syn- thetic Data Generators”. In: IEEE Access 10 (2022), pp. 11147–11158. doi: 10.1109/ACCESS. 2022.3144765

  4. [4]

    A Uni- versal Metric of Dataset Similarity for Cross- silo Federated Learning

    Ahmed Elhussein and Gamze Gursoy. “A Uni- versal Metric of Dataset Similarity for Cross- silo Federated Learning”. In: arXiv preprint arXiv:2404.18773 (2024)

  5. [5]

    On Choosing and Bounding Probability Metrics

    Alison L. Gibbs and Francis Edward Su. “On Choosing and Bounding Probability Metrics”. In: International Statistical Review 70 (3 Dec. 2002), pp. 419–435. issn: 0306-7734. doi: 10.1111/j. 1751-5823.2002.tb00178.x

  6. [6]

    A kernel two-sample test

    Arthur Gretton, Karsten M Borgwardt, Malte J Rasch, Bernhard Sch¨ olkopf, and Alexander Smola. “A kernel two-sample test”. In: The Journal of Machine Learning Research 13.1 (2012), pp. 723– 773

  7. [7]

    Synthetic data generation for tabular health records: A sys- tematic review

    Mikel Hernandez, Gorka Epelde, Ane Alberdi, Rodrigo Cilla, and Debbie Rankin. “Synthetic data generation for tabular health records: A sys- tematic review”. In: Neurocomputing 493 (2022), pp. 28–45. doi: 10 . 1016 / J . NEUCOM . 2022 . 04 . 053

  8. [8]

    Gans trained by a two time-scale update rule converge to a local nash equilibrium

    Martin Heusel, Hubert Ramsauer, Thomas Un- terthiner, Bernhard Nessler, and Sepp Hochreiter. “Gans trained by a two time-scale update rule converge to a local nash equilibrium”. In: Ad- vances in neural information processing systems 30 (2017)

Show all 45 references
  1. [9]

    Information retrieval by semantic similarity

    Angelos Hliaoutakis, Giannis Varelas, Epimeni- dis Voutsakis, Euripides GM Petrakis, and Evan- gelos Milios. “Information retrieval by semantic similarity”. In: International journal on seman- tic Web and information systems (IJSWIS) 2.3 (2006), pp. 55–73

  2. [10]

    Clustering High-Dimensional Data

    Michael E. Houle, Marie Kiermeier, and Arthur Zimek. “Clustering High-Dimensional Data”. In: Machine Learning for Data Science Handbook . Ed. by L. Rokach, O. Maimon, and E. Shmueli. Springer, 2023. doi: https://doi.org/10.1007/ 978-3-031-24628-9_11

  3. [11]

    Simex: Express prediction of inter-dataset similarity by a fleet of autoencoders

    Inseok Hwang, Jinho Lee, Frank Liu, and Minsik Cho. “Simex: Express prediction of inter-dataset similarity by a fleet of autoencoders”. In: arXiv preprint arXiv:2001.04893 (2020)

  4. [12]

    Mathematical and Statistical Properties of Sample Principal Components

    Ian T. Jolliffe. “Mathematical and Statistical Properties of Sample Principal Components”. In: Principal Component Analysis . New York, NY: Springer New York, 2002, pp. 29–61. isbn: 978- 0-387-22440-4. doi: 10.1007/0-387-22440-8_3

  5. [13]

    On the Mitchell similarity measure and its application to pattern recognition

    Peterson Julian, Kuo-Chen Hung, and Shu-Jen Lin. “On the Mitchell similarity measure and its application to pattern recognition”. In: Pattern Recognition Letters 33.9 (2012), pp. 1219–1223

  6. [14]

    On normal- ization and algorithm selection for unsupervised outlier detection

    Sevvandi Kandanaarachchi, Mario A. Mu˜ noz, Rob J. Hyndman, and Kate Smith-Miles. “On normal- ization and algorithm selection for unsupervised outlier detection”. In: Data Min. Knowl. Discov. 34.2 (2020), pp. 309–354

  7. [15]

    The UCI Machine Learning Repository

    Markelle Kelly, Rachel Longjohn, and Kolby Not- tingham. The UCI Machine Learning Repository . https://archive.ics.uci.edu. 2024

  8. [16]

    Wrappers for Feature Subset Selection

    Ron Kohavi and George H John. “Wrappers for Feature Subset Selection”. In: Artificial Intelli- gence 97.1-2 (1997), pp. 273–324

  9. [17]

    Outlier Detection in Arbitrarily Oriented Subspaces

    H.-P. Kriegel, P. Kr¨ oger, E. Schubert, and A. Zimek. “Outlier Detection in Arbitrarily Oriented Subspaces”. In: 2012, pp. 379–388

  10. [18]

    Multidimensional Scaling by Opti- mizing Goodness of Fit to a Nonmetric Hypothe- sis

    J. B. Kruskal. “Multidimensional Scaling by Opti- mizing Goodness of Fit to a Nonmetric Hypothe- sis”. In: Psychometrika 29.1 (1964), pp. 1–27. doi: 10.1007/BF02289565

  11. [19]

    Lautrup, Tobias Hyrup, Arthur Zimek, and Peter Schneider-Kamp

    Anton D. Lautrup, Tobias Hyrup, Arthur Zimek, and Peter Schneider-Kamp. SynthEval: A Frame- work for Detailed Utility and Privacy Evaluation of Tabular Synthetic Data . arXiv, preprint. Code available on GitHub v1.4.1. 2024. doi: 10.48550/ arXiv.2404.15821

  12. [20]

    Chi2: Feature Se- lection and Discretization of Numeric Attributes

    Huan Liu and Rudy Setiono. “Chi2: Feature Se- lection and Discretization of Numeric Attributes”. In: Proceedings of the Seventh IEEE International Conference on Tools with Artificial Intelligence . IEEE. 1995, pp. 388–391

  13. [21]

    The Dataset-Similarity-Based Approach to Se- lect Datasets for Evaluation in Similarity Re- trieval

    Matheus A. L. Matiazzo, Vitor de Castro-Silva, Rafael S. Oyamada, and Daniel S. Kaster. “The Dataset-Similarity-Based Approach to Se- lect Datasets for Evaluation in Similarity Re- trieval”. In: Similarity Search and Applications . Ed. by Oscar Pedreira and Vladimir Estivill- ...

  14. [22]

    Unsupervised feature selection using feature sim- ilarity

    Pabitra Mitra, CA Murthy, and Sankar K. Pal. “Unsupervised feature selection using feature sim- ilarity”. In: IEEE transactions on pattern analy- sis and machine intelligence 24.3 (2002), pp. 301– 312

  15. [23]

    A Feature Selection Algo- rithm Performance Metric for Comparative Anal- ysis

    Werner Mostert, Katherine M. Malan, and An- dries P. Engelbrecht. “A Feature Selection Algo- rithm Performance Metric for Comparative Anal- ysis”. In: Algorithms 14.3 (2021), p. 100

  16. [24]

    synthpop: Bespoke Creation of Synthetic Data in R

    Beata Nowok, Gillian M. Raab, and Chris Dibben. “synthpop: Bespoke Creation of Synthetic Data in R”. In: Journal of Statistical Software 74.11 (2016), pp. 1–26. doi: 10.18637/jss.v074.i11

  17. [25]

    Statistical aspects of Wasserstein distances

    Victor M Panaretos and Yoav Zemel. “Statistical aspects of Wasserstein distances”. In: Annual re- view of statistics and its application 6.1 (2019), pp. 405–431

  18. [26]

    LIII. On lines and planes of closest fit to systems of points in space

    Karl Pearson. “LIII. On lines and planes of closest fit to systems of points in space”. In: The Lon- don, Edinburgh, and Dublin philosophical maga- zine and journal of science 2.11 (1901), pp. 559– 572

  19. [27]

    Feature Selection Based on Mutual Information: Criteria of Max-Dependency, Max-Relevance, and Min-Redundancy

    Hanchuan Peng, Fuhui Long, and Chris Ding. “Feature Selection Based on Mutual Information: Criteria of Max-Dependency, Max-Relevance, and Min-Redundancy”. In: IEEE Transactions on Pattern Analysis and Machine Intelligence . Vol. 27. 8. IEEE. 2005, pp. 1226–1238

  20. [28]

    DataSynthesizer: Privacy-Preserving Synthetic Datasets

    Haoyue Ping, Julia Stoyanovich, and Bill Howe. “DataSynthesizer: Privacy-Preserving Synthetic Datasets”. In: Proceedings of the 29th Interna- tional Conference on Scientific and Statistical Database Management, Chicago, IL, USA, June 27-29, 2017 . ACM, 2017, 42:1–42:5. doi: 10...

  21. [29]

    Synthcity: a benchmark framework for diverse use cases of tabular synthetic data

    Zhaozhi Qian, Robert Davis, and Mihaela van der Schaar. “Synthcity: a benchmark framework for diverse use cases of tabular synthetic data”. In: Advances in Neural Information Processing Systems 36: Annual Conference on Neural Infor- mation Processing Systems 2023, NeurIPS 2023...

  22. [30]

    A Dynamic Eval- uation Metric for Feature Selection

    Muhammad Rajabinasab, Anton D. Lautrup, To- bias Hyrup, and Arthur Zimek. “A Dynamic Eval- uation Metric for Feature Selection”. In: Similar- ity Search and Applications. Ed. by Edgar Ch´ avez, Benjamin Kimia, Jakub Lokoˇ c, Marco Patella, and Jan Sedmidubsky. Cham: Springer N...

  23. [31]

    Random- ized PCA forest for approximate k-nearest neigh- bor search

    Muhammad Rajabinasab, Farhad Pakdaman, Arthur Zimek, and Moncef Gabbouj. “Random- ized PCA forest for approximate k-nearest neigh- bor search”. In: Expert Systems with Applications (2024), p. 126254. issn: 0957-4174. doi: https : //doi.org/10.1016/j.eswa.2024.126254

  24. [32]

    Reliability of Supervised Machine Learn- ing Using Synthetic Data in Health Care: Model to Preserve Privacy for Data Sharing

    Debbie Rankin, Michaela Black, Raymond Bond, Jonathan Wallace, Maurice Mulvenna, and Gorka Epelde. “Reliability of Supervised Machine Learn- ing Using Synthetic Data in Health Care: Model to Preserve Privacy for Data Sharing”. In: JMIR Medical Informatics 8 (7 July 2020), e189...

  25. [33]

    A Nonlinear Mapping for Data Structure Analysis

    J. W. Sammon. “A Nonlinear Mapping for Data Structure Analysis”. In: IEEE Transactions on Computers C-18.5 (1969), pp. 401–409. doi: 10. 1109/T-C.1969.222678

  26. [34]

    Instance space analysis for algorithm testing: Methodology and software tools

    Kate Smith-Miles and Mario Andr´ es Mu˜ noz. “Instance space analysis for algorithm testing: Methodology and software tools”. In: ACM Com- puting Surveys 55.12 (2023), pp. 1–31

  27. [35]

    Gen- eral and specific utility measures for synthetic data

    Joshua Snoke, Gillian M. Raab, Beata Nowok, Chris Dibben, and Aleksandra Slavkovic. “Gen- eral and specific utility measures for synthetic data”. In: Journal of the Royal Statistical Soci- ety: Series A (Statistics in Society) 181.3 (2018), pp. 663–688

  28. [36]

    Similarity measures for recommender systems: a comparative study

    Mr Sridhar Dilip Sondur, Mr Amit P Chigadani, and Shantharam Nayak. “Similarity measures for recommender systems: a comparative study”. In: Journal for Research 2.3 (2016)

  29. [37]

    A Review and Taxonomy of Meth- ods for Quantifying Dataset Similarity

    Marieke Stolte, Andrea Bommert, and J¨ org Rah- nenf¨ uhrer. “A Review and Taxonomy of Meth- ods for Quantifying Dataset Similarity”. In: arXiv preprint arXiv:2312.04078 (2023)

  30. [38]

    Regression Shrinkage and Se- lection via the Lasso

    Robert Tibshirani. “Regression Shrinkage and Se- lection via the Lasso”. In: Journal of the Royal Statistical Society: Series B (Methodological) 58.1 (1996), pp. 267–288

  31. [39]

    Probabilistic Principal Component Analysis

    Michael E. Tipping and Christopher M. Bishop. “Probabilistic Principal Component Analysis”. In: Journal of the Royal Statistical Society Se- ries B: Statistical Methodology 61.3 (Sept. 1999), pp. 611–622. issn: 1467-9868. doi: 10 . 1111 / 1467-9868.00196

  32. [40]

    PCA in Real-World Applications: Examples and Use Cases

    AI Upbeat. “PCA in Real-World Applications: Examples and Use Cases”. In: AI Upbeat (2023). url: https : / / aiupbeat . com / pca - in - real - world - applications - examples - and - use - cases/

  33. [41]

    The art of data augmentation

    David A Van Dyk and Xiao-Li Meng. “The art of data augmentation”. In: Journal of Computa- tional and Graphical Statistics 10.1 (2001), pp. 1– 50

  34. [42]

    Lecture Notes on Princi- pal Component Analysis

    Laurenz Wiskott. “Lecture Notes on Princi- pal Component Analysis”. In: Stanford Uni- versity (2013). url: https : / / graphics . stanford . edu / courses / cs233 - 20 - spring / ReferencedPapers/LectureNotes-PCA.pdf

  35. [43]

    Modeling Tabular data using Conditional GAN

    Lei Xu, Maria Skoularidou, Alfredo Cuesta- Infante, and Kalyan Veeramachaneni. “Modeling Tabular data using Conditional GAN”. In: Ad- vances in Neural Information Processing Systems 32: Annual Conference on Neural Information Processing Systems 2019, NeurIPS 2019, Decem- ber 8...

  36. [44]

    Anonymization Through Data Synthesis Using Generative Adversarial Networks (ADS-GAN)

    Jinsung Yoon, Lydia N. Drumright, and Mihaela van der Schaar. “Anonymization Through Data Synthesis Using Generative Adversarial Networks (ADS-GAN)”. In: IEEE J. Biomed. Health Infor- matics 24.8 (2020), pp. 2378–2388. doi: 10.1109/ JBHI.2020.2980262

  37. [45]

    There and back again: Outlier detection between statisti- cal reasoning and data mining algorithms

    Arthur Zimek and Peter Filzmoser. “There and back again: Outlier detection between statisti- cal reasoning and data mining algorithms”. In: WIREs Data Mining Knowl. Discov. 8.6 (2018). Appendices In the appendix, we outline the mathematical results alluded to in the subsection...

Pith tools

Reviewed August 10, 2026 · model on record in the stance chip above.