REVIEW 4 major objections 4 minor 48 references
Unreduced Persistence Diagrams for Topological Machine Learning
T0 review · 4 major / 4 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read Unreduced persistence diagrams can replace fully reduced ones in machine learning pipelines without hurting task performance.
desk verdict Useful new summaries and a clean stability theorem, but the empirical case for substituting unreduced for fully reduced diagrams is overstated and needs a corrected regression evaluation. 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 load-bearing object is the unreduced boundary matrix $M$ of a filtered complex, along with two quantities read from its columns without any column reduction: $\operatorname{low}(M_j)$, the largest row index containing a 1 in column $j$, and $\beta(M_j)$, the largest row index $z$ such that the entry $M_{z,j}=1$ and every earlier column has a 0 in row $z$. A column whose $\operatorname{low}$ equals its $\beta$ is an apparent pair and is guaranteed to survive reduction; the more permissive quasi-apparent constructions use $\beta(M_j)$ or $\operatorname{low}(M_j)$ whenever $\beta(M_j)\neq -1$, while the low-ones diagram simply records every column's $\operatorname{low}$. These quantities let persistence pairs be harvested in one pass, and for upper quasi-apparent diagrams that pass becomes a parallelizable search over the columns of the filtration coboundary matrix.
What would settle it
An end-to-end benchmark on the same three tasks that times diagram computation plus vectorization, and that tunes vectorization hyperparameters on a true holdout set for the brain-artery regression, would settle the claim: if fully reduced diagrams match or beat low-ones diagrams on the Fashion-MNIST and brain-artery tasks once vectorization time is included, the paper's central claim fails.
Extended reading notes
Core claim
The central claim is that for supervised learning purposes, an unreduced persistence diagram can substitute for a fully reduced one. The paper defines four unreduced constructions—the apparent-pair diagram (AP), the lower and upper quasi-apparent diagrams (qAP↓ and qAP↑), and the low-ones diagram (L1)—and reports that in all three experimental settings at least one of them performed as well as or better than the fully reduced diagram on the chosen metric. In the L1 construction, the pair associated to a column is just its lowest nonzero row and the column itself; because every nonzero column contributes a point, L1 diagrams are larger but appear to carry information that full reduction throws away. The paper also reports that an implementation of the qAP↑ diagram for Vietoris–Rips filtrations is parallelizable and required about one thirteenth of the memory of full reduction on the data sets tested, at roughly a twentieth of the wall time when run with 63 threads.
Load-bearing premise
The central claim rests on the assumptions that the three benchmark tasks are fair, representative comparisons and that diagram computation dominates the pipeline: the brain-artery regression tuned vectorization hyperparameters on the same folds used for evaluation, and the reported memory and time savings cover diagram computation only, not the longer vectorization of the much larger low-ones diagrams.
Editorial extensions
If this is right
- Topology-featured ML pipelines can be run on cheap unreduced summaries: on every task tested, at least one unreduced diagram type matched or beat the fully reduced diagram, so full reduction appears unnecessary for task performance in these settings.
- The low-ones diagram is the safest substitute: it matched or beat fully reduced diagrams in every experiment, including a more than 10-percentage-point gain over FR on Fashion-MNIST with both tested vectorizations.
- Computing upper quasi-apparent diagrams for Vietoris–Rips filtrations is parallelizable and memory-light: with 63 threads it used on average about 1/20 the wall time and 1/13 the memory of full reduction on non-thresholded examples, and it completed one data set that the reference reduced implementation could not finish.
- Stability is theory-limited but not practice-limited: only L1 diagrams are globally stable under the bottleneck distance, yet in perturbation experiments the unstable AP and qAP diagrams produced very large bottleneck/Hausdorff ratios only rarely.
- The computational win is not yet end-to-end: low-ones diagrams vectorize more slowly than smaller diagrams, so careful implementation is needed before the savings are realized in a full pipeline.
Reading between the lines
- We infer that low-ones diagrams may perform well precisely because they do not discard low-persistence pairs: on Fashion-MNIST the most useful L1 principal component concentrated on H0 features, suggesting the extra points act as a denser, more informative persistence image rather than noise.
- We infer that the memory savings can be made to survive the full pipeline only if vectorization is streamed straight from the unreduced diagram construction, aggregating each pair's contribution to the vector and discarding the pair—the paper identifies this as a future direction.
- We infer that the theoretical instability of AP and qAP diagrams may be an acceptable risk in practice, since instability events in the paper's perturbation experiments were rare; a cheap 'fragility check' that detects whether nearby perturbations change the number of diagram points could screen data sets before deployment.
- We infer that if unreduced and fully reduced diagrams encode different signal, an ensemble trained on the concatenation of both may outperform either alone; the paper explicitly leaves this question open.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces several "unreduced" persistence diagrams—AP, qAP down-arrow, qAP up-arrow, and L1—defined directly from unreduced boundary matrices, and studies their stability, computational cost, and usefulness in supervised ML pipelines. The main theoretical results are Proposition 3.1 (global bottleneck stability of L1), Example 3.2 (instability of AP/qAP constructions), and Proposition 3.3 (local stability of AP/qAP under small filtration perturbations). The computational section benchmarks a modified Ripser implementation for qAP up-arrow diagrams of Vietoris-Rips filtrations, reporting large wall-time and memory savings in several examples. The ML experiments compare FR diagrams against unreduced diagrams on synthetic shape classification, Fashion-MNIST image classification, and brain artery tree regression, with the conclusion that unreduced diagrams can serve as effective substitutes for fully reduced diagrams in PH-ML pipelines.
Significance. If the central claim is established, the paper would make a practically useful contribution: it would show that expensive persistence diagram reduction can be avoided in at least some PH-ML pipelines, with an accompanying open-source implementation and reproducible experiments. The theoretical distinction between global stability of L1 and only local/generic stability of AP/qAP is also a useful clarification, and the explicit instability example is a valuable counterpoint to the usual global stability narrative. The paper ships code, describes its computational experiments in detail, and is transparent about several limitations, which strengthens the presentation. However, the empirical substitution claim is currently supported by only one regression task, and that task has a protocol flaw that can re-rank the reported results; the stated all-cases conclusion is also internally contradicted by one of the paper's own tables. These issues are load-bearing because the ML evidence is what converts the paper from a theoretical/computational exploration into a claimed practical substitute for reduced diagrams.
major comments (4)
- [Section 5.1.4 and Table 4] The brain-artery regression is the only regression task and is therefore the main evidence that the substitution claim extends beyond classification, but its evaluation protocol is not sound for that purpose. Section 5.1.4 states that hyperparameter tuning for this task was done with 5-fold cross-validation on the same folds later used for final performance assessment, because there were too few data entries for a holdout set. This selection-on-evaluation-folds protocol biases the Table 4 R^2 values upward and can re-rank diagram types. Moreover, the headline favorable comparison, L1/PI 0.3541 versus FR/PI 0.3445, is smaller than the reported fold standard deviations (0.19 and 0.12, respectively). Nested cross-validation, a fixed hyperparameter choice, or a separate tuning holdout is required before Table 4 can support the on-par/outperform claim for regression.
- [Section 6 and Table 4] The concluding sentence states that "L1 diagrams performed as well or better than FR diagrams in all cases." This is contradicted by Table 4: in the Adcock-Carlsson row, L1 achieves R^2 = 0.1844 while FR achieves R^2 = 0.3042. The valid weaker statement in Section 5.2.1 is that in every experiment at least one unreduced diagram type performed as well or better than FR. The all-cases L1 claim should be withdrawn or explicitly restricted to the persistence-image vectorization within the brain-artery experiment, where the difference is not statistically stable anyway.
- [Sections 4 and 6] The computational half of the central claim is not yet established at the full-pipeline level. Table 2 reports memory ratios that vary widely with thresholding: the thresholded examples have ratios of roughly 1.28 to 2.63, while the non-thresholded examples average about 13. Section 6 concedes that L1 diagrams take "significantly longer times to vectorize" because they contain many more persistence pairs. Since L1 is the unreduced type that performs best in the ML experiments, the advertised savings must be measured end-to-end, including vectorization time and memory, rather than only the qAP up-arrow diagram computation for VR complexes.
- [Section 4, second zero-AP paragraph; Table 3] The qAP up-arrow object used in the Rips shape-classification experiments is not identical to qAP up-arrow(M) in Definition 2.1: the implementation skips columns identified as zero-AP columns of a second type, which the paper says loses some information, and Table 3 labels this a "slightly modified qAP up-arrow construction." This is disclosed, but it means the ML results for qAP up-arrow should be described as applying to a variant rather than to the defined unreduced persistence diagram, and the theoretical containment/stability statements in Section 2 do not directly transfer to that variant.
minor comments (4)
- [Table 2] In the final row, "cylco" is a typo for "cyclo-;" also, the table would be easier to read if the average quantities were unambiguously identified as averages over the 63 thread-count trials.
- [Section 3.2] The text refers to "Theorem 3.2" when discussing the instability construction, but the construction is Example 3.2, not a theorem.
- [Figure 3] The stability experiment reports only H0 for the AP, qAP down-arrow, and L1 diagrams; since Section 2 notes that other unreduced diagrams for VR complexes have only ephemeral pairs in higher homology degrees, the practical relevance of the empirical stability results for higher-dimensional homology is not demonstrated.
- [Section 5.2.2] There is a duplicated word in "useful useful for classification;" this should be corrected.
Circularity Check
One evaluation step is partly circular: brain-artery regression hyperparameters are selected on the same folds later reported as test performance, so Table 4 can re-rank PD types by construction; the theoretical derivations and the classification experiments remain independent.
-
fitted input called prediction
[Section 5.1.4 (Hyperparameter tuning), Table 4, Section 5.2.1, Section 6 (Conclusion)]
"Hyperparameter tuning was conducted using 5-fold cross validation with hyperopt. Only vectorization hyperparameters were tuned while random forest hyperparameters were not. Final performance assessment also used 5-fold cross validation with the best identified hyperparameters for every experiment. A hyperparameter tuning holdout set was used for the shape and Fashion-MNIST tasks, but this was not done for the brain artery regression as there were too few data entries available."
For the brain-artery regression, the vectorization hyperparameters were selected by optimizing 5-fold cross-validation performance on the same folds that are subsequently labeled 'testing performance' in Table 4. The reported R^2 values are therefore selection-optimized in-sample scores rather than independent out-of-sample predictions, and differences between PD types in that table can be created or re-ranked by the tuning procedure itself. This matters because Section 5.2.1 and the Conclusion use this regression task as part of the load-bearing evidence that unreduced PDs 'can serve as effective substitutes' for FR diagrams; the abstract's headline claim that unreduced-diagram models 'can perform on par and even outperform' fully reduced ones partly rests on this contaminated comparison.
full rationale
The theoretical portions of the paper are self-contained and are not circular: Definition 2.1 defines FR, AP, qAP-down, qAP-up, and L1 diagrams directly from the boundary matrix and the beta function; Proposition 2.2, Proposition 3.1, Example 3.2, Proposition 3.3, and Proposition 4.1 are proven from these definitions with stated assumptions that do not include the ML-performance conclusions. The computational benchmarks use external point-cloud datasets and compare against the existing Ripser implementation, with code released publicly, and the memory and wall-time claims are stated as benchmark results rather than derived from the conclusions. The only self-citations, [27] and [37], appear in the introductory list of TDA application areas and are not load-bearing. The one genuinely circular element is the brain-artery regression evaluation: Section 5.1.4 states that no hyperparameter-tuning holdout was used for that task, so the same 5-fold cross-validation folds were used both to choose vectorization hyperparameters and to produce the final R^2 values in Table 4; this biases and can re-rank the reported comparisons. That limitation is explicitly acknowledged by the authors, but it still means the regression-based substitution evidence is partly forced by the evaluation protocol rather than by an independent prediction. Section 6 also concedes that L1 diagrams take 'significantly longer times to vectorize,' so the end-to-end computational advantage is not yet established; this is a scope caveat, not a circularity. Finally, the Conclusion's statement that 'L1 diagrams performed as well or better than FR diagrams in all cases' is contradicted by Table 4's Adcock-Carlsson row, where L1 (0.1844) is below FR (0.3042); this is an overstatement or internal inconsistency, not a circular step. Overall, the central theoretical derivation and the shape and Fashion-MNIST comparisons, which did use holdout tuning, are independent, so the paper is not substantially circular; the regression-based comparison should be treated as partly circular until corrected with nested cross-validation.
Assumptions & free parameters
free parameters (4)
- Persistence image hyperparameters (resolution, bandwidth, weight exponent) =
varied per task, selected by hyperopt 5-fold CV
- Adcock-Carlsson coordinate powers =
selected by hyperopt
- Number of principal components (13) =
13
- Stability experiment noise levels =
1e-6, 1e-5, 1e-4, 1e-3, 1e-2, 0.1, plus torus geometry
assumptions (5)
- standard math Standard boundary matrix reduction facts: low(M_j) only decreases under column additions; beta(M_j)=z implies the reduced column R_j is negative; low(R_j) lies in [beta(M_j), low(M_j)] (Mendoza-Smith [34, Thm. 5]).
- standard math Stability of fully reduced PDs under the bottleneck distance with Lipschitz constant 1, and d_GH <= d_H for geometric complexes.
- domain assumption The three ML tasks (shape classification, Fashion-MNIST, brain artery regression) are representative of PH-ML pipelines, and random forests on vectorized diagrams are a representative downstream model.
- domain assumption For VR complexes, f(sigma) = max filtration value of the 1-dimensional faces, so non-H0 unreduced diagrams contain only ephemeral pairs.
- domain assumption The modified qAP-up arrow construction that skips certain zero-AP columns still yields a useful diagram.
invented entities (4)
-
Apparent pair PD (AP)
independent evidence
-
Lower quasi-apparent PD (qAP down arrow)
independent evidence
-
Upper quasi-apparent PD (qAP up arrow)
independent evidence
-
Low-ones PD (L1)
independent evidence
Cite this review
Pith. "Pith review of Unreduced Persistence Diagrams for Topological Machine Learning." pith.science (2026). https://pith.science/paper/PP4LTTZ7
@misc{pith2026250707156,
author = {Pith},
title = {Pith review of: Unreduced Persistence Diagrams for Topological Machine Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/PP4LTTZ7}},
note = {Machine review of arXiv:2507.07156}
}
read the original abstract
Supervised machine learning pipelines trained on features derived from persistent homology have been experimentally observed to ignore much of the information contained in a persistence diagram. Computing persistence diagrams is often the most computationally demanding step in such a pipeline, however. To explore this dynamic, we introduce several methods to generate topological feature vectors from unreduced boundary matrices and investigate their theoretical and computational properties. We compared the performance of pipelines trained on vectorizations of unreduced PDs to vectorizations of fully-reduced PDs across several data and task types. Our results indicate that models trained on PDs built from unreduced diagrams can perform on par and even outperform those trained on fully-reduced diagrams on some tasks. We also benchmarked the computational performance of an algorithm for computing unreduced diagrams, which was implemented as a heavily modified version of Ripser. These computations are parallelizable and required an order of magnitude less memory on average compared to computing full persistence diagrams. Our results suggest that machine learning pipelines which incorporate topology-based features may benefit in terms of computational cost and performance by utilizing information contained in unreduced boundary matrices.
Reference graph
Works this paper leans on
-
[1]
H. Abdallah, A. Regalski, M. B. Kang, M. Berishaj, N. Nnadi, A. Chowdury, V. A. Diwadkar, and A. Salch. Statistical inference for persistent homology applied to simulated fmri time series data.Foundations of Data Science, 5(1):1–25, Mar 2023
work page 2023
- [2]
- [3]
-
[4]
D. Ali, A. Asaad, M.-J. Jimenez, V. Nanda, E. Paluzo-Hidalgo, and M. Soriano-Trigueros. A survey of vectorization methods in topological data analysis.IEEE Transactions on Pattern Analysis and Machine Intelligence, 2023
work page 2023
-
[5]
E. J. Am´ ezquita, M. Y. Quigley, T. Ophelders, J. B. Landis, D. Koenig, E. Munch, and D. H. Chitwood. Measuring hidden phenotype: quantifying the shape of barley seeds using the Euler characteristic transform.in silico Plants, 4(1):diab033, 12 2021
work page 2021
-
[6]
E. Baitinger and S. Flegel. The better turbulence index? forecasting adverse financial markets regimes with persistent homology.Financial Markets and Portfolio Management, 35(3):277– 308, 2021
work page 2021
- [7]
-
[8]
U. Bauer. Ripser: efficient computation of Vietoris-Rips persistence barcodes.J. Appl. Com- put. Topol., 5(3):391–423, 2021
work page 2021
Show all 48 references
-
[9]
Bauer, T
U. Bauer, T. Bin Masood, B. Giunti, G. Houry, M. Kerber, and A. Rathod. Keeping it sparse: Computing persistent homology revisited.Computing in Geometry and Topology, 3(1):6:1–6:26, Aug. 2024
2024
-
[10]
Bauer, M
U. Bauer, M. Kerber, J. Reininghaus, and H. Wagner. Phat – persistent homology algorithms toolbox.Journal of Symbolic Computation, 78:76–90, 2017. Algorithms and Software for Computational Topology
2017
-
[11]
Bauer and M
U. Bauer and M. Lesnick. Induced matchings and the algebraic stability of persistence bar- codes.J. Comput. Geom., 6(2):162–191, 2015
2015
-
[12]
Bendich, J
P. Bendich, J. S. Marron, E. Miller, A. Pieloch, and S. Skwerer. Persistent homology analysis of brain artery trees.Ann Appl Stat, 10(1):198–218, Mar. 2016
2016
-
[13]
Benjamin, A
K. Benjamin, A. Bhandari, J. D. Kepple, R. Qi, Z. Shang, Y. Xing, Y. An, N. Zhang, Y. Hou, T. L. Crockford, O. McCallion, F. Issa, J. Hester, U. Tillmann, H. A. Harrington, and K. R. Bull. Multiscale topology classifies cells in subcellular spatial transcriptomics.Nature, 630(...
2024
-
[14]
Bergstra, D
J. Bergstra, D. Yamins, and D. Cox. Making a science of model search: Hyperparameter opti- mization in hundreds of dimensions for vision architectures. In S. Dasgupta and D. McAllester, editors,Proceedings of the 30th International Conference on Machine Learning, volume 28 of ...
-
[15]
L. Breiman. Random forests.Machine Learning, 45(1):5–32, Oct 2001
2001
-
[16]
Bubenik and J
P. Bubenik and J. A. Scott. Categorification of persistent homology.Discrete Comput. Geom., 51(3):600–627, 2014
2014
-
[17]
Buchet, Y
M. Buchet, Y. Hiraoka, and I. Obayashi.Persistent Homology and Materials Informatics, pages 75–95. Springer Singapore, Singapore, 2018
2018
-
[18]
Bullitt, D
E. Bullitt, D. Zeng, G. Gerig, S. Aylward, S. Joshi, J. K. Smith, W. Lin, and M. G. Ewend. Vessel tortuosity and brain tumor malignancy: a blinded study.Acad Radiol, 12(10):1232– 1240, Oct. 2005
2005
-
[19]
Chazal, V
F. Chazal, V. de Silva, M. Glisse, and S. Oudot.The structure and stability of persistence modules. SpringerBriefs in Mathematics. Springer, [Cham], 2016
2016
-
[20]
Chazal, V
F. Chazal, V. de Silva, and S. Oudot. Persistence stability for geometric complexes, 2013
2013
-
[21]
Chuli´ an, B
S. Chuli´ an, B. J. Stolz, ´A. Mart ´ ınez-Rubio, C. Bl´ azquez Go˜ ni, J. F. Rodr ´ ıguez Guti´ errez, T. Caballero Vel´ azquez,´A. Molinos Quintana, M. Ram ´ ırez Orellana, A. Castillo Robleda, J. L. Fuster Soler, et al. The shape of cancer relapse: Topological data analysis...
2023
-
[22]
Cohen-Steiner, H
D. Cohen-Steiner, H. Edelsbrunner, and J. Harer. Stability of persistence diagrams.Discrete Comput. Geom., 37(1):103–120, 2007. 21
2007
-
[23]
de Silva, D
V. de Silva, D. Morozov, and M. Vejdemo-Johansson. Dualities in persistent (co)homology. Inverse Problems, 27(12):124003, 17, 2011
2011
-
[24]
P. Dlotko. Cubical complex. InGUDHI User and Reference Manual. GUDHI Editorial Board, 3.10.1 edition, 2024
2024
-
[25]
Edelsbrunner and J
H. Edelsbrunner and J. L. Harer.Computational Topology - an Introduction.American Math- ematical Society, 2010
2010
-
[26]
Edelsbrunner, D
H. Edelsbrunner, D. Letscher, and A. Zomorodian. Topological persistence and simplification. InProceedings of the 41st Annual Symposium on Foundations of Computer Science, FOCS ’00, page 454, USA, 2000. IEEE Computer Society
2000
-
[27]
Edwards, K
P. Edwards, K. Skruber, N. Mili´ cevi´ c, J. B. Heidings, T.-A. Read, P. Bubenik, and E. A. Vitriol. TDAExplore: Quantitative analysis of fluorescence microscopy images through topology-based machine learning.Patterns, 2(11), Nov 2021
2021
-
[28]
Gidea and Y
M. Gidea and Y. Katz. Topological data analysis of financial time series: Landscapes of crashes.Physica A: Statistical Mechanics and its Applications, 491:820–834, 2018
2018
-
[29]
Giunti, J
B. Giunti, J. Lazovskis, and B. Rieck. Donut: Creation, development, and opportunities of a database.Notices of the American Mathematical Society, 70(10):1640–1644, 2023
2023
-
[30]
Giusti, E
C. Giusti, E. Pastalkova, C. Curto, and V. Itskov. Clique topology reveals intrinsic geo- metric structure in neural correlations.Proceedings of the National Academy of Sciences, 112(44):13455–13460, 2015
2015
-
[31]
Henselman and R
G. Henselman and R. Ghrist. Matroid Filtrations and Computational Persistent Homology. ArXiv e-prints, June 2016
2016
-
[32]
Persistent homology in cosmic shear: Constraining parameters with topological data analysis.A&A, 648:A74, 2021
Heydenreich, Sven, Br¨ uck, Benjamin, and Harnois-D´ eraps, Joachim. Persistent homology in cosmic shear: Constraining parameters with topological data analysis.A&A, 648:A74, 2021
2021
-
[33]
Martin, A
S. Martin, A. Thompson, E. A. Coutsias, and J.-P. Watson. Topology of cyclo-octane energy landscape.The journal of chemical physics, 132(23), 2010
2010
-
[34]
Mendoza-Smith.Numerical algorithms for the mathematics of information
R. Mendoza-Smith.Numerical algorithms for the mathematics of information. PhD thesis, University of Oxford, 2017
2017
-
[35]
Mendoza-Smith and J
R. Mendoza-Smith and J. Tanner. Parallel multi-scale reduction of persistent homology filtra- tions.arXiv preprint arXiv:1708.04710, 2017
2017 arXiv
-
[36]
Mischaikow and V
K. Mischaikow and V. Nanda. Morse theory for filtrations and efficient computation of per- sistent homology.Discrete Comput. Geom., 50(2):330–353, 2013
2013
-
[37]
F. C. Motta, R. Neville, P. D. Shipman, D. A. Pearson, and R. M. Bradley. Measures of order for nearly hexagonal lattices.Physica D: Nonlinear Phenomena, 380-381:17–30, 2018
2018
-
[38]
D. D. Nguyen, Z. Cang, K. Wu, M. Wang, Y. Cao, and G.-W. Wei. Mathematical deep learning for pose and binding affinity prediction and ranking in d3r grand challenges.Journal of Computer-Aided Molecular Design, 33(1):71–82, Jan 2019
2019
-
[39]
Otter, M
N. Otter, M. A. Porter, U. Tillmann, P. Grindrod, and H. A. Harrington. A roadmap for the computation of persistent homology.EPJ Data Science, 6(1):17, 2017. 22
2017
-
[40]
Papamarkou, T
T. Papamarkou, T. Birdal, M. M. Bronstein, G. E. Carlsson, J. Curry, Y. Gao, M. Hajij, R. Kwitt, P. Lio, P. Di Lorenzo, V. Maroulas, N. Miolane, F. Nasrin, K. Natesan Ramamurthy, B. Rieck, S. Scardapane, M. T. Schaub, P. Veliˇ ckovi´ c, B. Wang, Y. Wang, G. Wei, and G. Zamzmi....
2024
-
[41]
Pedregosa, G
F. Pedregosa, G. Varoquaux, A. Gramfort, V. Michel, B. Thirion, O. Grisel, M. Blondel, P. Prettenhofer, R. Weiss, V. Dubourg, J. Vanderplas, A. Passos, D. Cournapeau, M. Brucher, M. Perrot, and E. Duchesnay. Scikit-learn: Machine learning in Python.Journal of Machine Learning ...
2011
-
[42]
T. G. Project.GUDHI User and Reference Manual. GUDHI Editorial Board, 3.10.1 edition, 2024
2024
-
[43]
Saul and C
N. Saul and C. Tralie. Scikit-tda: Topological data analysis for python, 2019
2019
-
[44]
B. J. Stolz, J. Tanner, H. A. Harrington, and V. Nanda. Geometric anomaly detection in data. Proceedings of the National Academy of Sciences, 117(33):19664–19669, 2020
2020
-
[45]
Thomas, K
A. Thomas, K. Bates, A. Elchesen, I. Hartsock, H. Lu, and P. Bubenik. Topological data analysis of c. elegans locomotion and behavior.Frontiers in Artificial Intelligence, 4:668395, 2021
2021
-
[46]
H. Xiao, K. Rasul, and R. Vollgraf. Fashion-mnist: a novel image dataset for benchmarking machine learning algorithms.arXiv preprint arXiv:1708.07747, 2017
2017 arXiv
-
[47]
J. H. Yip, M. Biagetti, A. Cole, K. Viswanathan, and G. Shiu. Cosmology with persistent homology: a fisher forecast.Journal of Cosmology and Astroparticle Physics, 2024(09):034, Sept. 2024
2024
-
[48]
Zhang, M
S. Zhang, M. Xiao, and H. Wang. GPU-Accelerated Computation of Vietoris-Rips Persistence Barcodes. In S. Cabello and D. Z. Chen, editors,36th International Symposium on Computa- tional Geometry (SoCG 2020), volume 164 ofLeibniz International Proceedings in Informatics (LIPIcs)...
2020
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.