REVIEW 3 major objections 5 minor 81 references
FADEx gives every original feature a single importance score per instance, explaining why a dimensionality-reduction method places each point where it does — using only the already-computed embedding, with no need to rerun the DR algorithm.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-01 07:33 UTC pith:7ZPOJTFP
load-bearing objection A genuinely useful DR explanation framework with a real scale-dependence problem in its core attribution score; worth reviewing carefully. the 3 major comments →
FADEx: Feature Attribution and Distortion-based Explanation of Dimensionality Reduction
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The central claim is that a single scalar per feature, φ_j = Σ_i (λ_i/λ_1)|v_{ij} x_j|, computed from the SVD of a locally estimated Jacobian, captures how much each original feature drives an instance's placement in a DR embedding. That Jacobian is fitted by Gaussian-weighted ridge least squares over each point's neighbors and their known embeddings, removing the need for out-of-sample mapping and making the method agnostic to the DR algorithm. The same operator's columns yield the Feature Influence Vectors and its largest singular value yields the SND distortion score — attribution, distortion, and directional analysis from one computation. Ablation tests argue the scores are load-bearing:
What carries the argument
Load-bearing is the estimated Jacobian Ĵ_M(x) — the local linear map of the DR transformation at each point — fitted with Gaussian-weighted ridge least squares (Eq. 11) over displacement pairs of neighbors, in the original and projected spaces. Its SVD, Ĵ = UΣV^T, splits the local map into projection directions v_i, singular-value scalings λ_i, and output directions u_i. The attribution φ_j = Σ_i (λ_i/λ_1)|v_{ij} x_j| reads feature j's importance off the right singular vectors, normalized by the dominant singular value and weighted by the raw feature value x_j; the operator's columns are the Feature Influence Vectors; and the spectral norm λ_1 is the SND distortion score. One operator carrie
Load-bearing premise
Equation (6) assumes a feature's importance scales with its raw value: the sensitivity terms v_{ij} are multiplied by x_j, so on features with different units or scales the attribution can be dominated by large-magnitude features even when the DR mapping barely uses them — a modeling choice the paper makes without testing.
What would settle it
Construct a dataset with two features of very different scales whose true DR mapping depends only on the small-scale feature, compute FADEx attributions, and check whether the large-scale feature still receives the higher score. Simpler: rerun FADEx after rescaling every feature to unit variance and see whether the per-instance ranking changes; if it does, Eq. (6)'s dependence on raw |x_j| is driving the result rather than the mapping's actual sensitivity.
If this is right
- FADEx explains any embedding produced by any DR method, including t-SNE and UMAP, which cannot map out-of-sample points; only the original data and its embedding are required.
- Each feature receives exactly one attribution per instance, avoiding the two-scores-per-feature ambiguity of dimension-wise surrogate models and the per-cluster scores of cluster-based Shapley methods.
- Ablating FADEx's top-ranked features degrades cluster structure in UMAP and t-SNE layouts far more than random ablation, and comparably to methods that use predefined clusters, indicating the scores mark features the embedding actually depends on.
- The SND distortion score — the local operator's largest singular value — correlates with an established distance-preservation ratio across datasets, giving a per-point expansion/shrinkage map at no extra computational cost.
- Per-instance explanations are about an order of magnitude faster and more memory-efficient than the compared methods on larger datasets, making the analysis practical at scale.
Where Pith is reading between the lines
- The attribution multiplies sensitivity by the raw feature value |x_j|, so on data with features on different scales the ranking may reflect feature magnitudes rather than the mapping's true sensitivity; rescaling features to a common scale before computing φ_j is a natural variant the paper neither tests nor discusses.
- The Dry Bean case study finds strong agreement in feature importance across t-SNE, UMAP, Isomap, and LLE (Spearman 0.65–0.84); if that agreement is general, FADEx scores on a fixed dataset could predict which features any DR method will rely on — a claim the paper leaves open.
- As the paper notes in its limitations, when local PCA does not reduce dimensionality without distorting neighborhood structure, the estimated Jacobian and everything derived from it inherit that error; the method's reliability is therefore conditioned on neighborhoods being locally reducible.
- The Feature Influence Vectors are, in effect, a per-feature displacement field; they could power an interactive perturb-and-see tool — or a test of attribution stability across random restarts of stochastic DR methods — neither of which the paper builds.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. FADEx is a local feature-attribution method for explaining dimensionality reduction (DR) mappings. It estimates the Jacobian of the DR map at each instance by a weighted ridge least-squares fit over high-dimensional neighbors and their embeddings, avoiding out-of-sample mappings. The estimated Jacobian is decomposed by SVD, and the attribution score for feature j is defined as φ_j = Σ_{i=1}^d (λ_i/λ_1)|v_{ij} x_j| (Eq. 6). The same Jacobian also yields feature influence vectors (columns of the Jacobian) and a distortion metric SND (spectral norm). The authors claim that this single per-feature score is model-agnostic, requires no OOS data, is computationally efficient, and reliably identifies features that drive instance placement in the embedding. Validation includes a synthetic ground-truth experiment, comparisons with LXDR, ClusterShapley, and Corbugy, an ablation study, distortion validation against δ=d/D, and three case studies on tabular and image data.
Significance. If the central attribution claim holds, FADEx would be a practically valuable contribution: it is model-agnostic, avoids the out-of-sample problem that limits several DR explanation methods, assigns a single attribution per feature, and integrates attribution with distortion and directional analysis in one framework. The paper also ships an open-source implementation, which aids reproducibility. However, the central formula in Eq. (6) is an ad-hoc modeling choice that couples feature importance to raw feature magnitude. The validation evidence does not yet separate sensitivity from magnitude, and the real-data case studies use features with very different scales (e.g., Breast Cancer). Since the abstract and conclusion claim 'robust and reliable explanations,' this scale dependence is a load-bearing issue. The paper notes in Sec. 6 that explanations degrade when local PCA is unreliable, but the sensitivity of attributions to the pipeline's hyperparameters (α, PCA threshold, k) is not quantified. Thus the contribution is promising but the central claim needs additional support or a reformulated attribution rule.
major comments (3)
- [§3.1, Eq. (6)] The attribution formula is not derived from the Taylor expansion; it is introduced by the unstated step 'we set h_j = x_j.' This makes the importance score scale linearly with the raw feature value. The natural local-sensitivity-based measure for a perturbation along feature j would involve the norm of the j-th column of the Jacobian (e.g., sqrt(Σ_i λ_i^2 v_ij^2)|h_j|), not the L1-style weighted sum with λ_i/λ_1 and an additional factor |x_j|. Under feature rescaling x_j → c x_j, φ_j changes by |c| even when the embedding (e.g., on standardized data) is unchanged. No invariance argument, axiomatic justification, or test with heterogeneous feature scales is provided. The synthetic validation in §4.1 uses features all drawn from [0,1] with identical shift sizes, so the confound is invisible. The ablation study in §4.3.1 is also confounded: ablating high-magnitude features removes high-vari
- [§4.1 / §3.3] The experimental validation does not isolate sensitivity from feature magnitude. In the synthetic experiment, all ground-truth-relevant features are shifted by the same amount and initialized on the same interval, so any scale-dependent heuristic trivially recovers the 'important' features. The Jacobian approximation quality study (§3.3) only measures directional agreement of displacement vectors, not whether the estimated Jacobian's singular vectors yield correct attribution rankings. The paper should include an experiment where the ground-truth important feature has a deliberately small raw magnitude (or where features are standardized after ground truth is defined), and show that Eq. (6) still recovers it. Without such a test, Figures 3 and 6 do not establish that FADEx 'correctly identifies' the driving features beyond the same-scale scenario.
- [§3.2 / §6] The FADEx pipeline introduces several free parameters — Gaussian kernel scale σ (set to median distance), ridge term α=0.1, constant-feature variance threshold 10^{-6}, local PCA explained-variance threshold 0.95, and neighborhood size k (default 'roughly 10% of the dataset'). The paper acknowledges in Sec. 6 that the method's reliability depends on the PCA step, but no sensitivity analysis of the final attributions with respect to these parameters is reported. The supplementary partially analyzes k, but α and the PCA threshold are fixed without discussion. Since these are part of the method, the 'robust' claim requires at least a stability analysis over these hyperparameters, especially for high-dimensional datasets where local PCA is always applied.
minor comments (5)
- [§3.1] The notation 'h = h_j = [0,...,0,h_j,0,...,0]' is confusing: h is used as both a vector and a scalar component. Write h = h_j e_j for clarity.
- [Fig. 2] The vertical red line in panel (A) is not described in the caption. Please state what it marks (the 'optimum' neighborhood size) and how it was chosen.
- [§4.3 / Table 3] The statement that FADEx is 'nearly one order of magnitude faster' than the other methods is not supported for Breast Cancer, where FADEx and Corbugy both report 0.02 s. Please qualify the claim or report full distributions.
- [Table 1] The 'Speed' entries 'Fast' and 'Faster' are vague; define them operationally (e.g., relative to Table 3) or remove the column.
- [§5.3] The image case study would benefit from specifying how VGG16 fine-tuning was performed (learning rate, epochs, which layers were updated) and whether the attribution maps were quantitatively evaluated or only qualitatively inspected.
Circularity Check
No significant circularity: FADEx's attribution is a stated definition validated on external ground truth, with no fitted parameter or self-citation doing load-bearing work.
full rationale
FADEx's derivation chain is self-contained rather than circular. The Jacobian is estimated by weighted ridge least squares (Eq. 11) from local displacements in the original and embedded spaces, and the approximation quality is checked in Sec. 3.3 by a hold-out protocol that predicts held-out neighbor displacements and measures cosine similarity; this is a genuine external prediction, not a refit of the target. The attribution score φ_j in Eq. 6 is introduced as an explicit definition ('we set h_j = x_j... From this scenario, we define the importance/attribution'), not as a quantity fitted to reproduce some predetermined explanation. Although the h_j = x_j choice is a scale-dependent heuristic that deserves scrutiny, it is a stated modeling choice rather than a circular reduction: the formula does not presuppose the validation outcomes. The synthetic validation in Sec. 4.1 uses independently constructed ground-truth features, and the ablation study in Sec. 4.3.1 and supplementary Sec. G compares FADEx against random ablation and other methods, providing an external behavioral check. The SND distortion metric is validated against the independent distance-ratio measure δ (Sec. 4.2). Self-citations in the paper (e.g., refs. [48], [50], [52], [73]) are contextual literature references and are not load-bearing for the method's derivation; no uniqueness theorem is imported from the authors' prior work, and no ansatz is smuggled in via citation. The main legitimate concerns—feature-scale sensitivity of Eq. 6 and the confound in the synthetic data—are correctness/robustness issues, not circularity.
Axiom & Free-Parameter Ledger
free parameters (5)
- neighborhood size k (n_neighbors) =
10% of dataset in most experiments
- ridge regularization α =
0.1 default
- local PCA explained-variance threshold =
0.95
- constant-feature variance threshold =
10^-6
- Gaussian kernel scale σ =
median of neighbor distances
axioms (5)
- domain assumption The DR mapping M is locally smooth enough for a first-order Taylor expansion to hold in a neighborhood of each point.
- domain assumption k-nearest neighbors in the original high-dimensional space form a local neighborhood suitable for fitting the Jacobian.
- domain assumption The weighted ridge least-squares solution yields an accurate estimate of the true Jacobian.
- ad hoc to paper Feature importance can be represented by φ_j = Σ_i (λ_i/λ_1)|v_ij x_j|.
- domain assumption Local PCA preserves the local structure relevant to the DR mapping when dimensionality exceeds 50.
read the original abstract
Dimensionality Reduction (DR) is a fundamental tool for high-dimensional data exploration, reducing the complexity of latent spaces of machine learning models, and assisting in the explanation of complex opaque models. However, non-linear DR techniques often function as opaque transformations themselves, making it challenging to understand how individual features influence instance positioning in the reduced space. This lack of transparency complicates the analysis and interpretation of structural patterns, hindering the ability to reason about the organization of high-dimensional data based on the projected layout. In order to address this challenge, dimensionality reduction explanation methods have shown promise in improving the understanding of the observed groups and cluster structures. Unfortunately, existing DR explanation approaches tend to suffer from limitations such as multiple attributions per feature and restricted applicability to specific dimensionality reduction methods, which hinder their use. In this work, we propose FADEx, a novel local per-instance feature attribution method that leverages local linear approximation via first-order Taylor expansion and Singular Value Decomposition to provide explanations. FADEx computes the local linear models via weighted least squares, eliminating the need for out-of-sample data mapping, making it agnostic to the DR method, while simultaneously providing local feature attributions and distortion analysis. Through qualitative and quantitative evaluations, comparisons with existing methods, and case studies, we demonstrate FADEx's effectiveness and versatility in providing explanations and analytical resources for analyzing the behavior of DR methods. The results indicate FADEx yields robust and reliable explanations, outperforming existing approaches in several aspects.
Figures
Reference graph
Works this paper leans on
-
[1]
Why Here and not There?
A. Artelt, A. Schulz, and B. Hammer. “Why Here and not There?”: Diverse contrasting explanations of dimensionality reduction. InProc. Int. Conf. Pattern Recognit. Appl. Methods, pp. 27–38, 2023. doi: 10. 5220/0011618300003411 1, 2
2023
- [2]
-
[3]
Y . Bian, C. North, E. Krokos, and S. Joseph. Semantic explanation of interactive dimensionality reduction. InIEEE Vis. Conf. (short paper), pp. 26–30, 2021. doi: 10.1109/VIS49827.2021.9623322 2
arXiv 2021
-
[4]
Bibal, V
A. Bibal, V . M. Vu, G. Nanfack, and B. Frénay. Explaining t-SNE em- beddings locally by adapting LIME. InEuro. Symp. on Art. Neur. Netw., Comp. Intell. and Mach. Learn., pp. 393–398, 2020. 1, 2
2020
-
[5]
Borg and P
I. Borg and P. J. Groenen.Modern multidimensional scaling: Theory and applications. Springer Science & Business Media, 2007. 2
2007
-
[6]
N. Burkart and M. F. Huber. A survey on the explainability of supervised machine learning.J. Artif. Int. Res., 70:245–317, 2021. doi: 10.1613/jair. 1.12228 2
doi:10.1613/jair 2021
-
[7]
D. Cashman, M. Keller, H. Jeon, B. C. Kwon, and Q. Wang. A critical analysis of the usage of dimensionality reduction in four domains.IEEE Trans. Vis. Comp. Graph., 2025. doi: 10.1109/TVCG.2025.3567989 1
arXiv 2025
-
[8]
M. Cavallo and c. Demiralp. Clustrophile 2: Guided visual clustering analysis.IEEE Trans. Vis. Comp. Graph., 25(1):267–276, 2019. doi: 10. 1109/TVCG.2018.2864477 1, 2
arXiv 2019
-
[9]
A. Chatzimparmpas, R. M. Martins, and A. Kerren. t-visne: Interactive assessment and interpretation of t-sne projections.IEEE Trans. Visu. Comp. Graph., 26(8):2696–2714, 2020. doi: 10.1109/TVCG.2020.2986996 2
arXiv 2020
-
[10]
A. Cho, H. Jeon, K. Choe, S. Park, and J. Seo. Toward More Explainable Nonlinear Dimensionality Reduction: A Feature-Driven Interaction Ap- proach .IEEE Trans. Vis. Comp.r Graph., 32(02):1835–1849, 2026. doi: 10.1109/TVCG.2025.3622114 2
arXiv 2026
-
[11]
D. B. Coimbra, R. M. Martins, T. T. Neves, A. C. Telea, and F. V . Paulovich. Explaining three-dimensional dimensionality reduction plots.Inf. Vis., 15(2):154–172, 2016. doi: 10.1177/1473871615600010 2
-
[12]
S. Corbugy, R. Marion, and B. Frénay. Gradient-based explanation for non-linear non-parametric dimensionality reduction.Data Mining and Knowl. Disc., 38(6):3690–3718, 2024. doi: 10.1007/s10618-024-01055-6 1, 2, 3, 6
-
[13]
J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei. ImageNet: A large-scale hierarchical image database. InIEEE CVPR, pp. 248–255,
-
[14]
A. F. Duque, S. Morin, G. Wolf, and K. Moon. Extendable and invertible manifold learning with geometry regularized autoencoders. InIEEE Int. Conf. on Big Data, pp. 5027–5036, 2020. doi: 10.1109/BigData50022. 2020.9378049 2
arXiv 2020
- [15]
-
[16]
M. Espadoto, G. Appleby, A. Suh, D. Cashman, M. Li, C. Scheidegger et al. UnProjection: Leveraging Inverse-Projections for Visual Analytics of High-Dimensional Data .IEEE Trans. Vis. Comp. Graph., 29(02):1559– 1572, 2023. doi: 10.1109/TVCG.2021.3125576 2
arXiv 2023
-
[17]
M. Espadoto, N. Hirata, A. Telea, C. Hurter, H. Purchase, J. Braz et al. Self-supervised dimensionality reduction with neural networks and pseudo- labeling. InVISAPP, p. 11, 2021. doi: 10.5220/0010184800270037 2
-
[18]
Espadoto, N
M. Espadoto, N. S. T. Hirata, and A. C. Telea. Deep learning multidimen- sional projections.Inf. Vis., 19(3):247–269, 2020. 2
2020
-
[19]
M. Espadoto, R. M. Martins, A. Kerren, N. S. T. Hirata, and A. C. Telea. Toward a quantitative survey of dimension reduction techniques.IEEE Trans. Vis. Comp. Graph., 27(3):2153–2173, 2021. doi: 10.1109/TVCG. 2019.2944182 1, 2
arXiv 2021
- [20]
-
[21]
T. Fujiwara, Y .-H. Kuo, A. Ynnerman, and K.-L. Ma. Feature learning for nonlinear dimensionality reduction toward maximal extraction of hidden patterns. InPacificVis, pp. 122–131, 2023. doi: 10.1109/PacificVis56936. 2023.00021 2
arXiv 2023
-
[22]
T. Fujiwara, O.-H. Kwon, and K.-L. Ma. Supporting analysis of dimen- sionality reduction results with contrastive learning.IEEE Trans. Vis. Comp. Graph., 26(1):45–55, 2020. doi: 10.1109/TVCG.2019.2934251 2
arXiv 2020
- [23]
-
[24]
A. Ghosh, M. Nashaat, J. Miller, and S. Quader. Visexpres: A visual interactive toolkit for user-driven evaluations of embeddings.IEEE Trans. Vis. Comp. Graph., 28(7):2791–2807, 2022. doi: 10.1109/TVCG.2020. 3039106 2
-
[26]
I. Hameed, S. Sharpe, D. Barcklow, J. Au-Yeung, S. Verma, J. Huang et al. Based-xai: Breaking ablation studies down for explainable artificial intelligence.arXiv preprint arXiv:2207.05566, 2022. 6
Pith/arXiv arXiv 2022
-
[27]
H. Han, R. Faust, B. F. Keith Norambuena, J. Lin, S. Li, and C. North. Explainable interactive projections of images.Mach. Vis. Appl., 34(6):100,
-
[29]
H. Jeon, H. Lee, Y .-H. Kuo, T. Yang, D. Archambault, S. Ko et al. Unveil- ing high-dimensional backstage: A survey for reliable visual analytics with dimensionality reduction. InConf. Human Factors Computing Systems, pp. 1–24, 2025. doi: 10.1145/3706598.3713551 1
arXiv 2025
-
[30]
W. Jia, M. Sun, J. Lian, and S. Hou. Feature dimensionality reduction: a review.Complex & Intelligent Systems, 8(3):2663–2693, 2022. doi: 10. 1007/s40747-021-00637-x 2
2022
-
[31]
D. Kalman. A singularly valuable decomposition: the svd of a matrix.The College Mathematics Journal, 27(1):2–23, 1996. doi: 10.1080/07468342. 1996.11973744 3
arXiv 1996
-
[32]
B. C. Kwon, H. Kim, E. Wall, J. Choo, H. Park, and A. Endert. Axisketcher: Interactive nonlinear axis mapping of visualizations through user drawings. IEEE Trans. Vis. Comp. Graph., 23(1):221–230, 2017. doi: 10.1109/ TVCG.2016.2598446 2
arXiv 2017
-
[33]
J. A. Lee and M. Verleysen. Nonlinear dimensionality reduction of data manifolds with essential loops.Neurocomputing, 67:29–53, 2005. doi: 10. 1016/j.neucom.2004.11.042 1
2005
-
[34]
Lespinats and M
S. Lespinats and M. Aupetit. Checkviz: Sanity check and topological clues for linear and non-linear mappings.Comp. Graph. Forum, 30(1):113–125,
-
[35]
J. Li and C.-q. Zhou. Incorporation of human knowledge into data embed- dings to improve pattern significance and interpretability.IEEE Trans. Vis. Comp. Graph., 29(1):723–733, 2023. doi: 10.1109/TVCG.2022.3209382 2
arXiv 2023
-
[36]
S. Liu, B. Wang, P.-T. Bremer, and V . Pascucci. Distortion-guided structure-driven interactive exploration of high-dimensional data.Comp. Graph. Forum, 33(3):101–110, 2014. doi: 10.1111/cgf.12366 2
-
[37]
S. M. Lundberg and S.-I. Lee. A unified approach to interpreting model predictions. InProc. Int. Conf. Neural Inf. Proc. Sys., pp. 4768–4777,
-
[38]
W. E. Marcílio-Jr and D. M. Eler. Explaining dimensionality reduction re- sults using shapley values.Expert Systems with Applications, 178:115020,
-
[39]
R. M. Martins, R. Minghim, A. C. Telea, et al. Explaining neighborhood preservation for multidimensional projections. InComput. Graph. Vis. Comput., pp. 7–14, 2015. doi: 10.2312/cgvc.20151234 2
-
[40]
McInnes, J
L. McInnes, J. Healy, N. Saul, and L. Großberger. Umap: Uniform mani- fold approximation and projection.J. Open Source Software, 3(29):861,
-
[41]
Cats and dogs dataset, 2017.https://www.microsoft.com/ en-us/download/details.aspx?id=54765
Microsoft. Cats and dogs dataset, 2017.https://www.microsoft.com/ en-us/download/details.aspx?id=54765. Accessed: 2025-03-03. 8
2017
-
[42]
D. Minh, H. X. Wang, Y . F. Li, and T. N. Nguyen. Explainable artifi- cial intelligence: a comprehensive review.Artificial Intelligence Review, 55(5):3503–3568, 2022. doi: 10.1007/s10462-021-10088-y 1, 2
-
[43]
Moharram and D
M. Moharram and D. Sundaram. Dimensionality reduction strategies for land use land cover classification based on airborne hyperspectral imagery: a survey.Env. Sci. Pollution Research, 30(3):5580–5602, 2023. doi: 10. 1007/s11356-022-24202-2 9
2023
-
[44]
Montambault, G
B. Montambault, G. Appleby, J. Rogers, C. D. Brumar, M. Li, and R. Chang. Dimbridge: Interactive explanation of visual patterns in dimen- sionality reductions with predicate logic.IEEE Trans. Vis. Comp. Graph.,
-
[45]
M. Moor, M. Horn, B. Rieck, and K. Borgwardt. Topological autoencoders. InProc. Int. Conf. Mach. Learn., vol. 119, pp. 7045–7054, 2020. 1, 2
2020
-
[46]
N. Mylonas, I. Mollas, N. Bassiliades, and G. Tsoumakas. Exploring local interpretability in dimensionality reduction: Analysis and use cases.Exp. Sys. Appl., 252:124074, 2024. doi: 10.1016/j.eswa.2024.124074 2
arXiv 2024
-
[47]
I. E. Nielsen, D. Dera, G. Rasool, R. P. Ramachandran, and N. C. Bouay- naya. Robust explainability: A tutorial on gradient-based attribution meth- ods for deep neural networks.IEEE Signal Proc. Magazine, 39(4):73–84,
-
[48]
L. G. Nonato and M. Aupetit. Multidimensional projection for visual analytics: Linking techniques with distortions, tasks, and layout enrich- ment.IEEE Trans. Vis. Comp. Graph., 25(8):2650–2673, 2019. doi: 10. 1109/TVCG.2018.2846735 1, 2
arXiv 2019
-
[49]
H. S. Obaid, S. A. Dheyab, and S. S. Sabry. The impact of data pre- processing techniques and dimensionality reduction on the accuracy of machine learning. InIEMECON, pp. 279–283, 2019. doi: 10.1109/ IEMECONX.2019.8877011 1
arXiv 2019
-
[50]
E. S. Ortigossa, T. Gonçalves, and L. G. Nonato. Explainable artificial intelligence (XAI)—from theory to methods and applications.IEEE Access, 12:80799–80846, 2024. doi: 10.1109/ACCESS.2024.3409843 1, 2
arXiv 2024
-
[51]
O. Ovcharenko, R. Sevastjanova, and V . Boeva. Feature clock: High- dimensional effects in two-dimensional plots. InIEEE Vis. Visual Analyt- ics, pp. 151–155. IEEE, Oct. 2024. doi: 10.1109/vis55277.2024.00038 1, 2, 3
arXiv 2024
-
[52]
L. Pagliosa, P. Pagliosa, and L. G. Nonato. Understanding attribute vari- ability in multidimensional projections. InConf. Graph. Patterns and Images - SIBGRAPI, pp. 297–304, 2016. doi: 10.1109/SIBGRAPI.2016. 048 2
-
[53]
P. E. Rauber, S. G. Fadel, A. X. Falcão, and A. C. Telea. Visualizing the hidden activity of artificial neural networks.IEEE Trans. Vis. Comp. Graph., 23(1):101–110, 2017. doi: 10.1109/TVCG.2016.2598838 1
arXiv 2017
-
[54]
P. Ray, S. S. Reddy, and T. Banerjee. Various dimension reduction tech- niques for high dimensional data analysis: a review.Art. Intell. Review, 54(5):3473–3515, 2021. doi: 10.1007/s10462-020-09928-0 1
-
[55]
M. T. Ribeiro, S. Singh, and C. Guestrin. Why should i trust you?: Explain- ing the predictions of any classifier. InACM SIGKDD, pp. 1135–1144,
-
[56]
P. J. Rousseeuw. Silhouettes: a graphical aid to the interpretation and validation of cluster analysis.J. Comp. Appl. Math., 20:53–65, 1987. doi: 10.1016/0377-0427(87)90125-7 7
-
[57]
S. T. Roweis and L. K. Saul. Nonlinear dimensionality reduction by locally linear embedding.Science, 290(5500):2323–2326, 2000. doi: 10. 1126/science.290.5500.2323 5
arXiv 2000
-
[58]
T. Sainburg, L. McInnes, and T. Q. Gentner. Parametric UMAP embed- dings for representation and semisupervised learning.Neural Computation, 33(11):2881–2907, 2021. doi: 10.1162/neco_a_01434 1, 2
-
[59]
Sakr and B
C. Sakr and B. Khailany. Espace: Dimensionality reduction of activations for model compression. In A. Globerson, L. Mackey, D. Belgrave, A. Fan, U. Paquet, J. Tomczak et al., eds.,Advances in Neural Inf. Proc. Sys., vol. 37, pp. 17489–17517. Curran Associates, Inc., 2024. doi: 10.52202/ 079017-0556 1
2024
-
[60]
Seifert, V
C. Seifert, V . Sabol, and W. Kienreich. Stress maps: Analysing local phenomena in dimensionality reduction based visualizations. InEuroVAST, pp. 1–6. Eurographics Association, 2010. 2
2010
-
[61]
J. Z. Self, M. Dowling, J. Wenskovitch, I. Crandell, M. Wang, L. House et al. Observation-level and parametric interaction for high-dimensional data analysis.ACM Trans. Inter. Intell. Sys., 8(2):1–36, 2018. doi: 10. 1145/3158230 2
2018
-
[62]
R. Silva, P. Rauber, R. Martins, R. Minghim, and A. Telea. Attribute-based visual explanation of multidimensional projections. InEuroVA, 2015. doi: 10.2312/eurova.20151100 2
-
[63]
K. Simonyan and A. Zisserman. Very deep convolutional networks for large-scale image recognition.Preprint arXiv:1409.1556, 2014. doi: 10. 48550/arXiv.1409.1556 8
- [64]
-
[65]
J. Stahnke, M. Dörk, B. Müller, and A. Thom. Probing projections: Interac- tion techniques for interpreting arrangements and errors of dimensionality reductions.IEEE Trans. Vis. Comp. Graph., 22(1):629–638, 2016. doi: 10 .1109/TVCG.2015.2467717 2
arXiv 2016
-
[66]
J. B. Tenenbaum, V . d. Silva, and J. C. Langford. A global geometric frame- work for nonlinear dimensionality reduction.Science, 290(5500):2319– 2323, 2000. doi: 10.1126/science.290.5500.2319 5
arXiv 2000
-
[67]
A. Thakkar, N. Kikani, and R. Geddam. Fusion of linear and non-linear dimensionality reduction techniques for feature reduction in lstm-based intrusion detection system.Appl. Soft Comp., 154:111378, 2024. doi: 10. 1016/j.asoc.2024.111378 1
arXiv 2024
-
[68]
J. Thijssen, Z. Tian, and A. Telea. Interactive tools for explaining multidi- mensional projections for high-dimensional tabular data.Comp. & Graph., 122:103987, 2024. doi: 10.1016/j.cag.2024.103987 2, 9
arXiv 2024
-
[69]
van der Maaten
L. van der Maaten. Learning a parametric embedding by preserving local structure. InInt. Conf. Art. Intell. Stat., vol. 5, pp. 384–391, 2009. 1, 2
2009
-
[70]
Van der Maaten and G
L. Van der Maaten and G. Hinton. Visualizing data using t-SNE.J. Mach. Learn. Res., 9(11), 2008. 1, 5
2008
-
[71]
J. Wang, S. Liu, and W. Zhang. Visual analytics for machine learning: A data perspective survey.IEEE Trans. Vis. Comp. Graph., 30(12):7637– 7656, 2024. doi: 10.1109/TVCG.2024.3357065 1
arXiv 2024
-
[72]
J. Xia, L. Huang, W. Lin, X. Zhao, J. Wu, Y . Chen et al. Interactive visual cluster analysis by contrastive dimensionality reduction.IEEE Trans. Vis. Comp. Graph., 29(1):734–744, 2023. doi: 10.1109/TVCG.2022.3209423 1
arXiv 2023
-
[73]
J. Yuan, G. Y .-Y . Chan, B. Barr, K. Overton, K. Rees, L. G. Nonato et al. Subplex: A visual analytics approach to understand local model explanations at the subpopulation level.IEEE Comp. Graph. and Appl., 42(6):24–36, 2022. doi: 10.1109/MCG.2022.3199727 1, 9
arXiv 2022
-
[74]
Z. Zang, S. Cheng, H. Xia, L. Li, Y . Sun, Y . Xu et al. Dmt-ev: an explainable deep network for dimension reduction.IEEE Trans. Vis. Comp. Graph., 30(3):1710–1727, 2024. doi: 10.1109/TVCG.2022.3223399 2
arXiv 2024
-
[75]
X. Zeng, H. Zhou, Z. Li, C. Zhang, J. Lin, J. Xia et al. ihelp: interactive hierarchical linear projections for interpreting non-linear projections.J. Vis., 26(3):631–648, Nov. 2022. doi: 10.1007/s12650-022-00900-4 2 11 Supplementary Material A FADEXALGORITHM Algorithm 1FADEx main pipeline (fitfunction) Input: X ∈R N×n (high-dimensional data),Y ∈R N×k (lo...
-
[2009]
doi: 10.1109/CVPR.2009.5206848 8
arXiv 2009
-
[2011]
doi: 10.1111/j.1467-8659.2010.01835.x 2, 5
arXiv 2010
-
[2016]
doi: 10.1145/2939672.2939778 2
-
[2018]
doi: 10.21105/joss.00861 5 10 To appear in IEEE Transactions on Visualization and Computer Graphics
-
[2021]
doi: 10.1016/j.eswa.2021.115020 1, 2, 3, 6
arXiv 2021
-
[2022]
doi: 10.1109/MSP.2022.3142719 2
arXiv 2022
-
[2023]
doi: 10.1007/s00138-023-01452-9 2
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.