REVIEW 1 major objections 5 minor 69 references
Generalizable Spectral Embedding with an Application to UMAP
T0 review · 1 major / 5 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read The paper claims that diagonalizing a minibatch-averaged projected Laplacian recovers the rotation that separates a SpectralNet-trained eigenspace into the true graph-Laplacian eigenvectors, yielding the first spectral-embedding…
desk verdict A practical post-processing fix for SpectralNet's rotation ambiguity, with strong empirical support; the theory is thinner than the paper lets on. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the minibatch-averaged projected Laplacian Φ̃ = (1/T) Σ_i Y_i^T L_i Y_i, a small (k+1)×(k+1) matrix. If the trained network output satisfies Y = VQ, then each projected Laplacian equals Q^T Λ Q, so by uniqueness of eigendecomposition the eigenvectors of Φ̃ are the columns of Q^T and its eigenvalues are those of the Laplacian. The supporting identity is Lemma 1, which proves that every minimizer of the Rayleigh quotient under orthogonality is of the form VQ, so the recovered Q fully undoes the network's rotation. This diagonalization post-processing is what turns SpectralNet's eigenspace approximation into a true spectral embedding, and it is also what makes NUMAP's residual-connected UMAP network possible: only separated eigenvectors give a meaningful first-ell-dimensional spectral coordinate for the residual connection to preserve.
What would settle it
On a dataset with known ground-truth eigenvectors (for example, a two-moons or two-spheres set), compute the minibatch-averaged projected Laplacian Φ̃ for T = 1, 4, 16, and 64, then compare the recovered eigenvectors to the exact eigenvectors of the full Laplacian. If the $sin^{2}$ Grassmann distance between the recovered and true eigenvectors does not decrease toward zero as T grows, the claim that this average recovers the rotation Q is refuted.
Extended reading notes
Core claim
The paper's central claim is that the rotation-and-reflection ambiguity inherent in Rayleigh-quotient minimization—any minimizer of Tr(A^T L A) under orthogonality has the form V Q, where V is the true eigenvector matrix of the Laplacian L—can be resolved in a one-shot post-processing step. For a learned map F_θ whose output lies in the span of the first k+1 eigenfunctions, the unknown rotation Q is encoded in the projected Laplacian Φ = (VQ)^T L (VQ) = Q^T Λ Q; because Q^T is the eigenvector matrix of this small matrix, diagonalizing an estimate of it yields both the Laplacian eigenvalues and the inverse rotation needed to recover the individual eigenvectors from the network output. The paper argues that the estimate can be formed by averaging over a few random minibatches, making the separation step nearly free and preserving SpectralNet's approximately linear scaling. The result is presented as the first spectral-embedding implementation that is simultaneously generalizable, scalable, and eigenvector-separated, and as the basis for NUMAP, a generalizable UMAP that keeps the spectral initialization responsible for UMAP's global-structure preservation.
Load-bearing premise
The method assumes that averaging a small number of random minibatches approximates the full projected Laplacian well enough to recover the true rotation and eigenvectors, and the paper gives no formal guarantee for how many minibatches are needed.
Editorial extensions
If this is right
- Sep-SpectralNet can approximate the Fiedler vector and Fiedler value for out-of-sample points in near-linear time, making algebraic connectivity analysis scalable and generalizable.
- Diffusion Maps become generalizable: since Sep-SpectralNet approximates both the Laplacian eigenvectors and eigenvalues, the diffusion coordinates (1-λ_i)^t v_i can be computed for new points by a single feed-forward pass.
- NUMAP, a spectral-initialized parametric UMAP, preserves global structure better than Parametric UMAP while maintaining comparable local-structure quality and enabling fast inference; the paper's ablation shows that removing eigenvector separation makes this global preservation inconsistent.
- The separation step adds negligible overhead, so the method scales to datasets that are too large for full eigendecomposition while producing test-set embeddings by one forward pass.
- The proposed Grassmann Score, comparing the leading Laplacian eigenspaces of the input and embedding graphs, distinguishes global-structure-preserving embeddings that kNN and Silhouette scores cannot tell apart.
Reading between the lines
- The same diagonalization trick could be applied to any neural network that minimizes a Rayleigh-quotient loss under an orthogonality constraint, not only SpectralNet; the paper does not explore this generalization.
- Because the minibatch average is a stochastic estimator of Q^T Λ Q, increasing the number of minibatches T or using importance-sampled batches should improve eigenvector accuracy; the paper does not quantify this trade-off.
- Grassmann Score could plausibly be used as a training objective or early-stopping criterion for generalizable embedding methods, though the paper presents it only as an evaluation metric.
- If a theoretical convergence bound for the minibatch average is established, this post-processing approach could replace full eigendecomposition in non-neural spectral settings as well, whenever scalability is the bottleneck.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Sep-SpectralNet, an extension of SpectralNet that adds a post-processing step intended to recover the individual eigenvectors of a graph Laplacian from the rotation-ambiguous output of SpectralNet. The step diagonalizes a minibatch-averaged projected Laplacian, and the authors claim this yields both the eigenvalues and the rotation needed to separate eigenvectors while preserving SpectralNet's scalability and out-of-sample generalization. The paper also introduces NUMAP, a generalizable UMAP variant that uses the separated spectral embedding as an initialization for a second network trained with the UMAP loss, and proposes the Grassmann Score (GS) as a global-structure evaluation metric. Experiments on four real-world datasets report substantially lower sin^2 eigenvector errors for Sep-SpectralNet than for SpectralNet, and NUMAP is reported to improve GS over Parametric UMAP while retaining comparable kNN accuracy.
Significance. If the central claim holds, Sep-SpectralNet would be the first spectral embedding implementation to combine scalability, out-of-sample generalization, and eigenvector separation, and NUMAP would address a known limitation of Parametric UMAP by restoring the spectral initialization that is critical for global structure preservation. The empirical design has real strengths: ground-truth eigenvectors are computed externally on combined train+test graphs, comparisons are run over multiple seeds and datasets, and the improvements in eigenvector separation are large and consistent. The code is publicly available, which supports reproducibility. However, two load-bearing theoretical points need work before the claims can be accepted as stated: the minibatch-averaging step in Algorithm 2 lacks a consistency or bias analysis, and the proof of Lemma 1 in Appendix A is invalid as written. The empirical evidence is suggestive but does not by itself substitute for the missing justification of the core separation step.
major comments (1)
- [Sec. 1 and Sec. 4.1] The paper states that SpectralNet 'cannot directly be adapted for SE' and attributes this to the rotation and reflection ambiguity of the Rayleigh quotient, supported by Lemma 1. Given that the proof of Lemma 1 is invalid as written and that the practical separation step rests on the unverified minibatch-averaging approximation, the theoretical claim is currently stronger than what the manuscript establishes. Please align the wording of these claims with the actual level of theoretical support, or supply the missing arguments.
minor comments (5)
- [Table 8] The KMNIST v2 entry reads '0.0.044'; this should be '0.044'.
- [App. C.2] The text says the graph construction is 'similar to the one used by Gomez et al. in UMAP', but the cited reference is McInnes et al. (2018); please correct the attribution or add the intended citation.
- [Algorithm 2 and Sec. 4.2] Algorithm 2 computes random-walk Laplacians, while Lemma 1 and the separation derivation are stated for the unnormalized Laplacian; please state explicitly which Laplacian variant the analysis covers, since the eigenvectors differ across variants.
- [Sec. 4.2] The sentence 'The eigenvectors matrix of tilde-Lambda is the inverse of the orthogonal matrix Q' would be clearer as 'the transpose', since diagonalizing tilde-Lambda returns Q^T rather than Q^{-1} in the usual convention.
- [Sec. 5.1] Eigenvalue approximation results are reported only for Parkinsons Telemonitoring and Appliances Energy Prediction; please report the eigenvalue correlations for CIFAR10 and KMNIST as well, or explain why they are omitted.
Circularity Check
No significant circularity: the proposed rotation-recovery step is an exact linear-algebra identity given the eigenspace approximation, and all benchmark comparisons use external ground-truth SVD embeddings.
full rationale
The paper's central derivation (Sec. 4.2, Algorithm 2) rests on the identity (VQ)^T L (VQ) = Q^T Λ Q. Given Lemma 1 — any minimizer of the Rayleigh quotient under orthogonality has the form VQ — diagonalizing the projected Laplacian indeed recovers Q and Λ. This is a mathematical identity, not a fitted parameter renamed as a prediction. Algorithm 2 estimates Λ-tilde from random minibatches; while the paper provides no concentration or bias bound for this estimate, an unproven approximation is a soundness/correctness risk, not circularity, because the target quantity (the eigendecomposition of the full Laplacian) is defined independently of the minibatch estimate. The evaluation in Sec. 5.1 compares against ground-truth eigenvectors computed by SVD/LOBPCG on the train-plus-test affinity matrix, which is an external benchmark. The Grassmann Score is an evaluation metric, and NUMAP is trained with the UMAP loss rather than to minimize GS, so its use in evaluation is not definitionally forced. Lemma 1 is proved in App. A using standard interlacing/eigendecomposition facts and does not invoke a uniqueness theorem imported from the authors' prior work. The only author-overlap citation is SpectralNet (Shaham et al. 2018), used as a building block for the eigenspace approximation; that method is code-reproduced, externally validated, and also empirically re-verified in the present paper's Fig. 2a, so the citation constitutes independent support rather than a circular chain.
Assumptions & free parameters
free parameters (4)
- Graph construction n_neighbors =
5-20 (per dataset)
- NUMAP SE dimension k =
varies: Cifar10=10, Appliances=5, Wine=10, Banknote=3, MNIST=10, FashionMNIST=10
- GS hyperparameter t =
2
- Batch size m =
512 or 2048
assumptions (5)
- domain assumption SpectralNet converges to the eigenspace of the Laplace-Beltrami operator of the underlying manifold
- ad hoc to paper The minibatch-averaged matrix (1/T) \sum_i Y_i^T L_i Y_i approximates Q^T \Lambda Q
- standard math Uniqueness of eigendecomposition used in Lemma 1's proof (i.e., eigenvalues are distinct)
- domain assumption UMAP-style graph construction captures the local manifold topology
- domain assumption SE initialization is crucial for UMAP's global structure preservation
Cite this review
Pith. "Pith review of Generalizable Spectral Embedding with an Application to UMAP." pith.science (2026). https://pith.science/paper/Q4LZMAGP
@misc{pith2026250111305,
author = {Pith},
title = {Pith review of: Generalizable Spectral Embedding with an Application to UMAP},
year = {2026},
howpublished = {\url{https://pith.science/paper/Q4LZMAGP}},
note = {Machine review of arXiv:2501.11305}
}
read the original abstract
Spectral Embedding (SE) is a popular method for dimensionality reduction, applicable across diverse domains. Nevertheless, its current implementations face three prominent drawbacks which curtail its broader applicability: generalizability (i.e., out-of-sample extension), scalability, and eigenvectors separation. Existing SE implementations often address two of these drawbacks; however, they fall short in addressing the remaining one. In this paper, we introduce Sep-SpectralNet (eigenvector-separated SpectralNet), a SE implementation designed to address all three limitations. Sep-SpectralNet extends SpectralNet with an efficient post-processing step to achieve eigenvectors separation, while ensuring both generalizability and scalability. This method expands the applicability of SE to a wider range of tasks and can enhance its performance in existing applications. We empirically demonstrate Sep-SpectralNet's ability to consistently approximate and generalize SE, while maintaining SpectralNet's scalability. Additionally, we show how Sep-SpectralNet can be leveraged to enable generalizable UMAP visualization. Our codes are publicly available.
Figures
Figures from the paper (8 more)
Reference graph
Works this paper leans on
-
[1]
Stefan Aeberhard and M. Forina. Wine . UCI Machine Learning Repository, 1992. DOI : https://doi.org/10.24432/C5PC7J
doi:10.24432/c5pc7j 1992
-
[2]
Local graph partitioning using pagerank vectors
Reid Andersen, Fan Chung, and Kevin Lang. Local graph partitioning using pagerank vectors. In 2006 47th Annual IEEE Symposium on Foundations of Computer Science (FOCS'06), pp.\ 475--486. IEEE, 2006. doi:10.1109/FOCS.2006.44
-
[3]
A spectral algorithm for envelope reduction of sparse matrices
Stephen T Barnard, Alex Pothen, and Horst D Simon. A spectral algorithm for envelope reduction of sparse matrices. In Proceedings of the 1993 ACM/IEEE Conference on Supercomputing, pp.\ 493--502, 1993. doi:10.1145/169627.169790
-
[4]
Dominique Beaini, Saro Passaro, Vincent L \'e tourneau, Will Hamilton, Gabriele Corso, and Pietro Li \`o . Directional graph networks. In International Conference on Machine Learning, pp.\ 748--758. PMLR, 2021. doi:https://doi.org/10.48550/arXiv.2010.02863
-
[5]
Laplacian eigenmaps for dimensionality reduction and data representation
Mikhail Belkin and Partha Niyogi. Laplacian eigenmaps for dimensionality reduction and data representation. Neural computation, 15 0 (6): 0 1373--1396, 2003. doi:10.1162/089976603321780317
-
[6]
Convergence of laplacian eigenmaps
Mikhail Belkin and Partha Niyogi. Convergence of laplacian eigenmaps. Advances in neural information processing systems, 19, 2006. doi:https://doi.org/10.7551/mitpress/7503.003.0021
-
[7]
Locally optimal block preconditioned conjugate gradient method for hierarchical matrices
Peter Benner and Thomas Mach. Locally optimal block preconditioned conjugate gradient method for hierarchical matrices. PAMM, 11 0 (1): 0 741--742, 2011. doi:https://doi.org/10.1002/pamm.201110360
-
[8]
Algebraic multigrid (amg) for sparse matrix equations
Achi Brandt, Steve McCormick, and John Ruge. Algebraic multigrid (amg) for sparse matrix equations. Sparsity and its Applications, 257, 1984
work page 1984
Show all 69 references
-
[9]
Dynamic graph theoretical analysis of functional connectivity in parkinson's disease: The importance of fiedler value
Jiayue Cai, Aiping Liu, Taomian Mi, Saurabh Garg, Wade Trappe, Martin J McKeown, and Z Jane Wang. Dynamic graph theoretical analysis of functional connectivity in parkinson's disease: The importance of fiedler value. IEEE journal of biomedical and health informatics, 23 0 (4):...
2018
-
[10]
Laplacian eigenmaps and principal curves for high resolution pseudotemporal ordering of single-cell rna-seq profiles
Kieran Campbell, Chris P Ponting, and Caleb Webber. Laplacian eigenmaps and principal curves for high resolution pseudotemporal ordering of single-cell rna-seq profiles. bioRxiv, pp.\ 027219, 2015. doi:https://doi.org/10.1101/027219
2015 doi
-
[11]
Appliances Energy Prediction
Luis Candanedo. Appliances Energy Prediction . UCI Machine Learning Repository, 2017. DOI : https://doi.org/10.24432/C5VC8G
2017 doi
- [12]
-
[13]
Intrinsic map dynamics exploration for uncharted effective free-energy landscapes
Eliodoro Chiavazzo, Roberto Covino, Ronald R Coifman, C William Gear, Anastasia S Georgiou, Gerhard Hummer, and Ioannis G Kevrekidis. Intrinsic map dynamics exploration for uncharted effective free-energy landscapes. Proceedings of the National Academy of Sciences, 114 0 (28):...
2017 doi
-
[14]
Deep learning for classical japanese literature, 2018
Tarin Clanuwat, Mikel Bober-Irizar, Asanobu Kitamoto, Alex Lamb, Kazuaki Yamamoto, and David Ha. Deep learning for classical japanese literature, 2018
2018
-
[15]
Geometric harmonics: a novel tool for multiscale out-of-sample extension of empirical functions
Ronald R Coifman and St \'e phane Lafon. Geometric harmonics: a novel tool for multiscale out-of-sample extension of empirical functions. Applied and Computational Harmonic Analysis, 21 0 (1): 0 31--52, 2006 a . doi:https://doi.org/10.1016/j.acha.2005.07.005
2006 doi
-
[16]
Diffusion maps
Ronald R Coifman and St \'e phane Lafon. Diffusion maps. Applied and computational harmonic analysis, 21 0 (1): 0 5--30, 2006 b . doi:https://doi.org/10.1016/j.acha.2006.04.006
2006 doi
- [17]
-
[18]
Convolutional neural networks on graphs with fast localized spectral filtering
Micha \"e l Defferrard, Xavier Bresson, and Pierre Vandergheynst. Convolutional neural networks on graphs with fast localized spectral filtering. Advances in neural information processing systems, 29, 2016. doi:https://doi.org/10.48550/arXiv.1606.09375
-
[19]
The mnist database of handwritten digit images for machine learning research [best of the web]
Li Deng. The mnist database of handwritten digit images for machine learning research [best of the web]. IEEE Signal Processing Magazine, 29 0 (6): 0 141--142, 2012. doi:10.1109/MSP.2012.2211477
2012
- [20]
-
[21]
Compression of cerebellar functional gradients in schizophrenia
Debo Dong, Cheng Luo, Xavier Guell, Yulin Wang, Hui He, Mingjun Duan, Simon B Eickhoff, and Dezhong Yao. Compression of cerebellar functional gradients in schizophrenia. Schizophrenia bulletin, 46 0 (5): 0 1282--1295, 2020. doi:10.1093/schbul/sbaa016
2020 doi
-
[22]
Visual exploration of relationships and structure in low-dimensional embeddings
Klaus Eckelt, Andreas Hinterreiter, Patrick Adelberger, Conny Walchshofer, Vaishali Dhanoa, Christina Humer, Moritz Heckmann, Christian Steinparz, and Marc Streit. Visual exploration of relationships and structure in low-dimensional embeddings. IEEE Transactions on Visualizati...
2023
-
[23]
Algebraic connectivity of graphs
Miroslav Fiedler. Algebraic connectivity of graphs. Czechoslovak mathematical journal, 23 0 (2): 0 298--305, 1973. doi:10.21136/CMJ.1973.101168
1973
-
[24]
A property of eigenvectors of nonnegative symmetric matrices and its application to graph theory
Miroslav Fiedler. A property of eigenvectors of nonnegative symmetric matrices and its application to graph theory. Czechoslovak mathematical journal, 25 0 (4): 0 619--633, 1975. doi:10.21136/CMJ.1975.101357
1975
- [25]
-
[26]
Sampling a rare protein transition using quantum annealing
Danial Ghamari, Roberto Covino, and Pietro Faccioli. Sampling a rare protein transition using quantum annealing. Journal of Chemical Theory and Computation, 20 0 (8): 0 3322--3334, 2024. doi:https://doi.org/10.1021/acs.jctc.3c01174
2024 doi
-
[27]
Similarity search in high dimensions via hashing
Aristides Gionis, Piotr Indyk, Rajeev Motwani, et al. Similarity search in high dimensions via hashing. In Vldb, volume 99, pp.\ 518--529, 1999
1999
-
[28]
Unsupervised learning methods for molecular simulation data
Aldo Glielmo, Brooke E Husic, Alex Rodriguez, Cecilia Clementi, Frank No \'e , and Alessandro Laio. Unsupervised learning methods for molecular simulation data. Chemical Reviews, 121 0 (16): 0 9722--9758, 2021. doi:https://doi.org/10.1021/acs.chemrev.0c01195
2021 doi
-
[29]
Revealing the hidden structure of disordered materials by parameterizing their local structural manifold
Thomas J Hardin, Michael Chandross, Rahul Meena, Spencer Fajardo, Dimitris Giovanis, Ioannis Kevrekidis, Michael L Falk, and Michael D Shields. Revealing the hidden structure of disordered materials by parameterizing their local structural manifold. Nature communications, 15 0...
2024 doi
-
[30]
Alternating diffusion maps for multimodal data fusion
Ori Katz, Ronen Talmon, Yu-Lun Lo, and Hau-Tieng Wu. Alternating diffusion maps for multimodal data fusion. Information Fusion, 45: 0 346--360, 2019. doi:https://doi.org/10.1016/j.inffus.2018.01.007
2019 doi
-
[31]
Parametric t-stochastic neighbor embedding with quantum neural network
Yoshiaki Kawase, Kosuke Mitarai, and Keisuke Fujii. Parametric t-stochastic neighbor embedding with quantum neural network. Physical Review Research, 4 0 (4): 0 043199, 2022. doi:https://doi.org/10.48550/arXiv.2202.04238
-
[32]
A survey of machine learning techniques applied to self-organizing cellular networks
Paulo Valente Klaine, Muhammad Ali Imran, Oluwakayode Onireti, and Richard Demo Souza. A survey of machine learning techniques applied to self-organizing cellular networks. IEEE Communications Surveys & Tutorials, 19 0 (4): 0 2392--2431, 2017. doi:10.1109/COMST.2017.2727878
2017
-
[33]
Initialization is critical for preserving global data structure in both t-sne and umap
Dmitry Kobak and George C Linderman. Initialization is critical for preserving global data structure in both t-sne and umap. Nature biotechnology, 39 0 (2): 0 156--157, 2021. doi:https://doi.org/10.1038/nbt.4314
2021 doi
-
[34]
Automatic domain decomposition of proteins by a gaussian network model
Sibsankar Kundu, Dan C Sorensen, and George N Phillips Jr. Automatic domain decomposition of proteins by a gaussian network model. Proteins: Structure, Function, and Bioinformatics, 57 0 (4): 0 725--733, 2004
2004
-
[35]
Data fusion and multicue data matching by diffusion maps
Stephane Lafon, Yosi Keller, and Ronald R Coifman. Data fusion and multicue data matching by diffusion maps. IEEE Transactions on pattern analysis and machine intelligence, 28 0 (11): 0 1784--1797, 2006. doi:10.1109/TPAMI.2006.223
2006 doi
-
[36]
Learning the geometry of common latent variables using alternating-diffusion
Roy R Lederman and Ronen Talmon. Learning the geometry of common latent variables using alternating-diffusion. Applied and Computational Harmonic Analysis, 44 0 (3): 0 509--536, 2018. doi:https://doi.org/10.1016/j.acha.2015.09.002
2018 doi
-
[37]
ARPACK users' guide: solution of large-scale eigenvalue problems with implicitly restarted Arnoldi methods
Richard B Lehoucq, Danny C Sorensen, and Chao Yang. ARPACK users' guide: solution of large-scale eigenvalue problems with implicitly restarted Arnoldi methods. SIAM, 1998
1998
-
[38]
Data classification methodology for electronic noses using uniform manifold approximation and projection and extreme learning machine
Jersson X Leon-Medina, N \'u ria Par \'e s, Maribel Anaya, Diego A Tibaduiza, and Francesc Pozo. Data classification methodology for electronic noses using uniform manifold approximation and projection and extreme learning machine. Mathematics, 10 0 (1): 0 29, 2021. doi:https:...
2021 doi
-
[39]
Rayleigh quotient based optimization methods for eigenvalue problems
Ren-Cang Li. Rayleigh quotient based optimization methods for eigenvalue problems. In Matrix Functions and Matrix Equations, pp.\ 76--108. World Scientific, 2015. doi:https://doi.org/10.1142/9789814675772_0004
2015 doi
-
[40]
Sign and basis invariant networks for spectral graph representation learning
Derek Lim, Joshua Robinson, Lingxiao Zhao, Tess Smidt, Suvrit Sra, Haggai Maron, and Stefanie Jegelka. Sign and basis invariant networks for spectral graph representation learning. arXiv preprint arXiv:2202.13013, 2022. doi:https://doi.org/10.48550/arXiv.2202.13013
-
[41]
Umap-pytorch: Umap (uniform manifold approximation and projection) in pytorch, 2024
Leland Zhang Liu. Umap-pytorch: Umap (uniform manifold approximation and projection) in pytorch, 2024. URL https://github.com/elyxlz/umap_pytorch
2024
-
[42]
Banknote Authentication
Volker Lohweg. Banknote Authentication . UCI Machine Learning Repository, 2012. DOI : https://doi.org/10.24432/C55P57
2012 doi
-
[43]
Laplacian canonization: A minimalist approach to sign and basis invariant spectral embedding
George Ma, Yifei Wang, and Yisen Wang. Laplacian canonization: A minimalist approach to sign and basis invariant spectral embedding. Advances in Neural Information Processing Systems, 36, 2024. doi:https://doi.org/10.48550/arXiv.2310.18716
-
[44]
Umap: Uniform manifold approximation and projection for dimension reduction
Leland McInnes, John Healy, and James Melville. Umap: Uniform manifold approximation and projection for dimension reduction. arXiv preprint arXiv:1802.03426, 2018. doi:https://doi.org/10.48550/arXiv.1802.03426
- [45]
-
[46]
o m. \"U ber die praktische aufl \
Evert J Nystr \"o m. \"U ber die praktische aufl \"o sung von integralgleichungen mit anwendungen auf randwertaufgaben. 1930. doi:https://doi.org/10.1007/BF02547521
1930 doi
-
[47]
Graph signal processing: Overview, challenges, and applications
Antonio Ortega, Pascal Frossard, Jelena Kova c evi \'c , Jos \'e MF Moura, and Pierre Vandergheynst. Graph signal processing: Overview, challenges, and applications. Proceedings of the IEEE, 106 0 (5): 0 808--828, 2018. doi:10.1109/JPROC.2018.2820126
2018
-
[48]
Differences in subcortico-cortical interactions identified from connectome and microcircuit models in autism
Bo-yong Park, Seok-Jun Hong, Sofie L Valk, Casey Paquola, Oualid Benkarim, Richard AI Bethlehem, Adriana Di Martino, Michael P Milham, Alessandro Gozzi, BT Thomas Yeo, et al. Differences in subcortico-cortical interactions identified from connectome and microcircuit models in ...
2021 doi
-
[49]
Multiscale neural gradients reflect transdiagnostic effects of major psychiatric conditions on cortical morphology
Bo-yong Park, Valeria Kebets, Sara Larivi \`e re, Meike D Hettwer, Casey Paquola, Daan van Rooij, Jan Buitelaar, Barbara Franke, Martine Hoogman, Lianne Schmaal, et al. Multiscale neural gradients reflect transdiagnostic effects of major psychiatric conditions on cortical morp...
2022 doi
-
[50]
Spectral inference networks: Unifying deep and spectral learning
David Pfau, Stig Petersen, Ashish Agarwal, David GT Barrett, and Kimberly L Stachenfeld. Spectral inference networks: Unifying deep and spectral learning. arXiv preprint arXiv:1806.02215, 2018. doi:https://doi.org/10.48550/arXiv.1806.02215
-
[51]
Parametric umap embeddings for representation and semisupervised learning
Tim Sainburg, Leland McInnes, and Timothy Q Gentner. Parametric umap embeddings for representation and semisupervised learning. Neural Computation, 33 0 (11): 0 2881--2907, 2021. doi:https://doi.org/10.48550/arXiv.2009.12981
-
[52]
Using genetic programming to find functional mappings for umap embeddings
Finn Schofield and Andrew Lensen. Using genetic programming to find functional mappings for umap embeddings. In 2021 IEEE Congress on Evolutionary Computation (CEC), pp.\ 704--711. IEEE, 2021. doi:10.1109/CEC45853.2021.9504848
2021
- [53]
-
[54]
Amino acid partitioning using a fiedler vector model
SJ Shepherd, CB Beggs, and Sue Jones. Amino acid partitioning using a fiedler vector model. European Biophysics Journal, 37: 0 105--109, 2007. doi:https://doi.org/10.1007/s00249-007-0182-y
2007 doi
- [55]
-
[56]
Basis: batch aligned spectral embedding space
Or Streicher, Ido Cohen, and Guy Gilboa. Basis: batch aligned spectral embedding space. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 10396--10405, 2023. doi:https://doi.org/10.48550/arXiv.2211.16960
-
[57]
Fiedler regularization: Learning neural networks with graph sparsity
Edric Tam and David Dunson. Fiedler regularization: Learning neural networks with graph sparsity. In International Conference on Machine Learning, pp.\ 9346--9355. PMLR, 2020. doi:https://doi.org/10.48550/arXiv.2003.00992
-
[58]
Parkinsons Telemonitoring
Athanasios Tsanas and Max Little. Parkinsons Telemonitoring . UCI Machine Learning Repository, 2009. DOI : https://doi.org/10.24432/C5ZS3N
2009 doi
-
[59]
Learning a parametric embedding by preserving local structure
Laurens Van Der Maaten. Learning a parametric embedding by preserving local structure. In Artificial intelligence and statistics, pp.\ 384--391. PMLR, 2009
2009
- [60]
- [61]
-
[62]
Integrative multiscale biochemical mapping of the brain via deep-learning-enhanced high-throughput mass spectrometry
Yuxuan Richard Xie, Daniel C Castro, Stanislav S Rubakhin, Timothy J Trinklein, Jonathan V Sweedler, and Fan Lam. Integrative multiscale biochemical mapping of the brain via deep-learning-enhanced high-throughput mass spectrometry. Nature Methods, 21: 0 521--530, 2024. doi:htt...
2024 doi
-
[63]
Robust parametric umap for the analysis of single-cell data
Bingxian Xu and Guangzheng Zhang. Robust parametric umap for the analysis of single-cell data. bioRxiv, pp.\ 2023--11, 2023. doi:https://doi.org/10.1101/2023.11.14.567092
2023 doi
-
[64]
Online learning of open-set speaker identification by active user-registration
Eunkyung Yoo, Hyeonseop Song, Taehyeong Kim, and Chul Lee. Online learning of open-set speaker identification by active user-registration. In INTERSPEECH, pp.\ 5065--5069, 2022
2022
-
[65]
Eigen-gnn: A graph structure preserving plug-in for gnns
Ziwei Zhang, Peng Cui, Jian Pei, Xin Wang, and Wenwu Zhu. Eigen-gnn: A graph structure preserving plug-in for gnns. IEEE Transactions on Knowledge and Data Engineering, 35 0 (3): 0 2544--2555, 2021. doi:https://doi.org/10.48550/arXiv.2006.04330
-
[66]
Delineation of folding pathways of a -sheet miniprotein
Wenwei Zheng, Bo Qi, Mary A Rohrdanz, Amedeo Caflisch, Aaron R Dinner, and Cecilia Clementi. Delineation of folding pathways of a -sheet miniprotein. The Journal of Physical Chemistry B, 115 0 (44): 0 13065--13074, 2011. doi:https://doi.org/10.1021/jp2076935
2011 doi
-
[67]
Rapid exploration of configuration space with diffusion-map-directed molecular dynamics
Wenwei Zheng, Mary A Rohrdanz, and Cecilia Clementi. Rapid exploration of configuration space with diffusion-map-directed molecular dynamics. The journal of physical chemistry B, 117 0 (42): 0 12769--12776, 2013. doi:https://doi.org/10.1021/jp401911h
2013 doi
-
[68]
A fiedler vector scoring approach for novel rna motif selection
Qiyao Zhu and Tamar Schlick. A fiedler vector scoring approach for novel rna motif selection. The Journal of Physical Chemistry B, 125 0 (4): 0 1144--1155, 2021. doi:https://doi.org/10.1021/acs.jpcb.0c10685
2021 doi
-
[69]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.