multipers 2.4.0b1__cp312-cp312-macosx_11_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (184) hide show
  1. multipers/.dylibs/libboost_timer.dylib +0 -0
  2. multipers/.dylibs/libc++.1.0.dylib +0 -0
  3. multipers/.dylibs/libtbb.12.17.dylib +0 -0
  4. multipers/__init__.py +33 -0
  5. multipers/_signed_measure_meta.py +426 -0
  6. multipers/_slicer_meta.py +231 -0
  7. multipers/array_api/__init__.py +62 -0
  8. multipers/array_api/numpy.py +124 -0
  9. multipers/array_api/torch.py +133 -0
  10. multipers/data/MOL2.py +458 -0
  11. multipers/data/UCR.py +18 -0
  12. multipers/data/__init__.py +1 -0
  13. multipers/data/graphs.py +466 -0
  14. multipers/data/immuno_regions.py +27 -0
  15. multipers/data/minimal_presentation_to_st_bf.py +0 -0
  16. multipers/data/pytorch2simplextree.py +91 -0
  17. multipers/data/shape3d.py +101 -0
  18. multipers/data/synthetic.py +113 -0
  19. multipers/distances.py +202 -0
  20. multipers/filtration_conversions.pxd +736 -0
  21. multipers/filtration_conversions.pxd.tp +226 -0
  22. multipers/filtrations/__init__.py +21 -0
  23. multipers/filtrations/density.py +529 -0
  24. multipers/filtrations/filtrations.py +480 -0
  25. multipers/filtrations.pxd +534 -0
  26. multipers/filtrations.pxd.tp +332 -0
  27. multipers/function_rips.cpython-312-darwin.so +0 -0
  28. multipers/function_rips.pyx +104 -0
  29. multipers/grids.cpython-312-darwin.so +0 -0
  30. multipers/grids.pyx +538 -0
  31. multipers/gudhi/Persistence_slices_interface.h +213 -0
  32. multipers/gudhi/Simplex_tree_interface.h +274 -0
  33. multipers/gudhi/Simplex_tree_multi_interface.h +648 -0
  34. multipers/gudhi/gudhi/Bitmap_cubical_complex.h +450 -0
  35. multipers/gudhi/gudhi/Bitmap_cubical_complex_base.h +1070 -0
  36. multipers/gudhi/gudhi/Bitmap_cubical_complex_periodic_boundary_conditions_base.h +579 -0
  37. multipers/gudhi/gudhi/Debug_utils.h +52 -0
  38. multipers/gudhi/gudhi/Degree_rips_bifiltration.h +2307 -0
  39. multipers/gudhi/gudhi/Dynamic_multi_parameter_filtration.h +2524 -0
  40. multipers/gudhi/gudhi/Fields/Multi_field.h +453 -0
  41. multipers/gudhi/gudhi/Fields/Multi_field_operators.h +460 -0
  42. multipers/gudhi/gudhi/Fields/Multi_field_shared.h +444 -0
  43. multipers/gudhi/gudhi/Fields/Multi_field_small.h +584 -0
  44. multipers/gudhi/gudhi/Fields/Multi_field_small_operators.h +490 -0
  45. multipers/gudhi/gudhi/Fields/Multi_field_small_shared.h +580 -0
  46. multipers/gudhi/gudhi/Fields/Z2_field.h +391 -0
  47. multipers/gudhi/gudhi/Fields/Z2_field_operators.h +389 -0
  48. multipers/gudhi/gudhi/Fields/Zp_field.h +493 -0
  49. multipers/gudhi/gudhi/Fields/Zp_field_operators.h +384 -0
  50. multipers/gudhi/gudhi/Fields/Zp_field_shared.h +492 -0
  51. multipers/gudhi/gudhi/Flag_complex_edge_collapser.h +337 -0
  52. multipers/gudhi/gudhi/Matrix.h +2200 -0
  53. multipers/gudhi/gudhi/Multi_filtration/Multi_parameter_generator.h +1712 -0
  54. multipers/gudhi/gudhi/Multi_filtration/multi_filtration_conversions.h +237 -0
  55. multipers/gudhi/gudhi/Multi_filtration/multi_filtration_utils.h +225 -0
  56. multipers/gudhi/gudhi/Multi_parameter_filtered_complex.h +485 -0
  57. multipers/gudhi/gudhi/Multi_parameter_filtration.h +2643 -0
  58. multipers/gudhi/gudhi/Multi_persistence/Box.h +233 -0
  59. multipers/gudhi/gudhi/Multi_persistence/Line.h +309 -0
  60. multipers/gudhi/gudhi/Multi_persistence/Multi_parameter_filtered_complex_pcoh_interface.h +268 -0
  61. multipers/gudhi/gudhi/Multi_persistence/Persistence_interface_cohomology.h +159 -0
  62. multipers/gudhi/gudhi/Multi_persistence/Persistence_interface_matrix.h +463 -0
  63. multipers/gudhi/gudhi/Multi_persistence/Point.h +853 -0
  64. multipers/gudhi/gudhi/Off_reader.h +173 -0
  65. multipers/gudhi/gudhi/Persistence_matrix/Base_matrix.h +834 -0
  66. multipers/gudhi/gudhi/Persistence_matrix/Base_matrix_with_column_compression.h +838 -0
  67. multipers/gudhi/gudhi/Persistence_matrix/Boundary_matrix.h +833 -0
  68. multipers/gudhi/gudhi/Persistence_matrix/Chain_matrix.h +1367 -0
  69. multipers/gudhi/gudhi/Persistence_matrix/Id_to_index_overlay.h +1157 -0
  70. multipers/gudhi/gudhi/Persistence_matrix/Position_to_index_overlay.h +869 -0
  71. multipers/gudhi/gudhi/Persistence_matrix/RU_matrix.h +905 -0
  72. multipers/gudhi/gudhi/Persistence_matrix/allocators/entry_constructors.h +122 -0
  73. multipers/gudhi/gudhi/Persistence_matrix/base_pairing.h +260 -0
  74. multipers/gudhi/gudhi/Persistence_matrix/base_swap.h +288 -0
  75. multipers/gudhi/gudhi/Persistence_matrix/chain_pairing.h +170 -0
  76. multipers/gudhi/gudhi/Persistence_matrix/chain_rep_cycles.h +247 -0
  77. multipers/gudhi/gudhi/Persistence_matrix/chain_vine_swap.h +571 -0
  78. multipers/gudhi/gudhi/Persistence_matrix/columns/chain_column_extra_properties.h +182 -0
  79. multipers/gudhi/gudhi/Persistence_matrix/columns/column_dimension_holder.h +130 -0
  80. multipers/gudhi/gudhi/Persistence_matrix/columns/column_utilities.h +235 -0
  81. multipers/gudhi/gudhi/Persistence_matrix/columns/entry_types.h +312 -0
  82. multipers/gudhi/gudhi/Persistence_matrix/columns/heap_column.h +1092 -0
  83. multipers/gudhi/gudhi/Persistence_matrix/columns/intrusive_list_column.h +923 -0
  84. multipers/gudhi/gudhi/Persistence_matrix/columns/intrusive_set_column.h +914 -0
  85. multipers/gudhi/gudhi/Persistence_matrix/columns/list_column.h +930 -0
  86. multipers/gudhi/gudhi/Persistence_matrix/columns/naive_vector_column.h +1071 -0
  87. multipers/gudhi/gudhi/Persistence_matrix/columns/row_access.h +203 -0
  88. multipers/gudhi/gudhi/Persistence_matrix/columns/set_column.h +886 -0
  89. multipers/gudhi/gudhi/Persistence_matrix/columns/unordered_set_column.h +984 -0
  90. multipers/gudhi/gudhi/Persistence_matrix/columns/vector_column.h +1213 -0
  91. multipers/gudhi/gudhi/Persistence_matrix/index_mapper.h +58 -0
  92. multipers/gudhi/gudhi/Persistence_matrix/matrix_dimension_holders.h +227 -0
  93. multipers/gudhi/gudhi/Persistence_matrix/matrix_row_access.h +200 -0
  94. multipers/gudhi/gudhi/Persistence_matrix/ru_pairing.h +166 -0
  95. multipers/gudhi/gudhi/Persistence_matrix/ru_rep_cycles.h +319 -0
  96. multipers/gudhi/gudhi/Persistence_matrix/ru_vine_swap.h +562 -0
  97. multipers/gudhi/gudhi/Persistence_on_a_line.h +152 -0
  98. multipers/gudhi/gudhi/Persistence_on_rectangle.h +617 -0
  99. multipers/gudhi/gudhi/Persistent_cohomology/Field_Zp.h +118 -0
  100. multipers/gudhi/gudhi/Persistent_cohomology/Multi_field.h +173 -0
  101. multipers/gudhi/gudhi/Persistent_cohomology/Persistent_cohomology_column.h +128 -0
  102. multipers/gudhi/gudhi/Persistent_cohomology.h +769 -0
  103. multipers/gudhi/gudhi/Points_off_io.h +171 -0
  104. multipers/gudhi/gudhi/Projective_cover_kernel.h +379 -0
  105. multipers/gudhi/gudhi/Simple_object_pool.h +69 -0
  106. multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_iterators.h +559 -0
  107. multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_node_explicit_storage.h +83 -0
  108. multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_siblings.h +121 -0
  109. multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_star_simplex_iterators.h +277 -0
  110. multipers/gudhi/gudhi/Simplex_tree/filtration_value_utils.h +155 -0
  111. multipers/gudhi/gudhi/Simplex_tree/hooks_simplex_base.h +62 -0
  112. multipers/gudhi/gudhi/Simplex_tree/indexing_tag.h +27 -0
  113. multipers/gudhi/gudhi/Simplex_tree/serialization_utils.h +60 -0
  114. multipers/gudhi/gudhi/Simplex_tree/simplex_tree_options.h +105 -0
  115. multipers/gudhi/gudhi/Simplex_tree.h +3170 -0
  116. multipers/gudhi/gudhi/Slicer.h +848 -0
  117. multipers/gudhi/gudhi/Thread_safe_slicer.h +393 -0
  118. multipers/gudhi/gudhi/distance_functions.h +62 -0
  119. multipers/gudhi/gudhi/graph_simplicial_complex.h +104 -0
  120. multipers/gudhi/gudhi/multi_simplex_tree_helpers.h +147 -0
  121. multipers/gudhi/gudhi/persistence_interval.h +263 -0
  122. multipers/gudhi/gudhi/persistence_matrix_options.h +188 -0
  123. multipers/gudhi/gudhi/reader_utils.h +367 -0
  124. multipers/gudhi/gudhi/simple_mdspan.h +484 -0
  125. multipers/gudhi/gudhi/slicer_helpers.h +779 -0
  126. multipers/gudhi/tmp_h0_pers/mma_interface_h0.h +223 -0
  127. multipers/gudhi/tmp_h0_pers/naive_merge_tree.h +536 -0
  128. multipers/io.cpython-312-darwin.so +0 -0
  129. multipers/io.pyx +472 -0
  130. multipers/ml/__init__.py +0 -0
  131. multipers/ml/accuracies.py +90 -0
  132. multipers/ml/invariants_with_persistable.py +79 -0
  133. multipers/ml/kernels.py +176 -0
  134. multipers/ml/mma.py +713 -0
  135. multipers/ml/one.py +472 -0
  136. multipers/ml/point_clouds.py +352 -0
  137. multipers/ml/signed_measures.py +1667 -0
  138. multipers/ml/sliced_wasserstein.py +461 -0
  139. multipers/ml/tools.py +113 -0
  140. multipers/mma_structures.cpython-312-darwin.so +0 -0
  141. multipers/mma_structures.pxd +134 -0
  142. multipers/mma_structures.pyx +1483 -0
  143. multipers/mma_structures.pyx.tp +1126 -0
  144. multipers/multi_parameter_rank_invariant/diff_helpers.h +85 -0
  145. multipers/multi_parameter_rank_invariant/euler_characteristic.h +95 -0
  146. multipers/multi_parameter_rank_invariant/function_rips.h +317 -0
  147. multipers/multi_parameter_rank_invariant/hilbert_function.h +761 -0
  148. multipers/multi_parameter_rank_invariant/persistence_slices.h +149 -0
  149. multipers/multi_parameter_rank_invariant/rank_invariant.h +350 -0
  150. multipers/multiparameter_edge_collapse.py +41 -0
  151. multipers/multiparameter_module_approximation/approximation.h +2541 -0
  152. multipers/multiparameter_module_approximation/debug.h +107 -0
  153. multipers/multiparameter_module_approximation/format_python-cpp.h +292 -0
  154. multipers/multiparameter_module_approximation/utilities.h +428 -0
  155. multipers/multiparameter_module_approximation.cpython-312-darwin.so +0 -0
  156. multipers/multiparameter_module_approximation.pyx +286 -0
  157. multipers/ops.cpython-312-darwin.so +0 -0
  158. multipers/ops.pyx +231 -0
  159. multipers/pickle.py +89 -0
  160. multipers/plots.py +550 -0
  161. multipers/point_measure.cpython-312-darwin.so +0 -0
  162. multipers/point_measure.pyx +409 -0
  163. multipers/simplex_tree_multi.cpython-312-darwin.so +0 -0
  164. multipers/simplex_tree_multi.pxd +136 -0
  165. multipers/simplex_tree_multi.pyx +11719 -0
  166. multipers/simplex_tree_multi.pyx.tp +2102 -0
  167. multipers/slicer.cpython-312-darwin.so +0 -0
  168. multipers/slicer.pxd +2097 -0
  169. multipers/slicer.pxd.tp +263 -0
  170. multipers/slicer.pyx +13042 -0
  171. multipers/slicer.pyx.tp +1259 -0
  172. multipers/tensor/tensor.h +672 -0
  173. multipers/tensor.pxd +13 -0
  174. multipers/test.pyx +44 -0
  175. multipers/tests/__init__.py +70 -0
  176. multipers/torch/__init__.py +1 -0
  177. multipers/torch/diff_grids.py +240 -0
  178. multipers/torch/rips_density.py +310 -0
  179. multipers/vector_interface.pxd +46 -0
  180. multipers-2.4.0b1.dist-info/METADATA +131 -0
  181. multipers-2.4.0b1.dist-info/RECORD +184 -0
  182. multipers-2.4.0b1.dist-info/WHEEL +6 -0
  183. multipers-2.4.0b1.dist-info/licenses/LICENSE +21 -0
  184. multipers-2.4.0b1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,46 @@
1
+
2
+ from libcpp.utility cimport pair
3
+ from libc.stdint cimport intptr_t, uint16_t, uint32_t, int32_t, int64_t
4
+ from libcpp.vector cimport vector
5
+ from libcpp cimport bool, float
6
+
7
+ cdef extern from "config.hpp":
8
+ cdef cppclass aida_config "aida::AIDA_config":
9
+ bool sort
10
+ bool exhaustive
11
+ bool brute_force
12
+ bool sort_output
13
+ bool compare_both
14
+ bool exhaustive_test
15
+ bool progress
16
+ bool save_base_change
17
+ bool turn_off_hom_optimisation
18
+ bool show_info
19
+ bool compare_hom
20
+ bool supress_col_sweep
21
+ bool alpha_hom
22
+
23
+
24
+ cdef extern from "aida_interface.hpp":
25
+
26
+ cdef cppclass multipers_interface_input "aida::multipers_interface_input<int>":
27
+ multipers_interface_input(const vector[pair[double,double]]&, const vector[pair[double,double]]&, const vector[vector[int]]&) except + nogil
28
+ multipers_interface_input() except + nogil
29
+ vector[pair[double,double]] col_degrees
30
+ vector[pair[double,double]] row_degrees
31
+ vector[vector[int]] matrix
32
+
33
+ cdef cppclass multipers_interface_output "aida::multipers_interface_output<int>":
34
+ multipers_interface_output() except + nogil
35
+ vector[multipers_interface_input] summands
36
+ # vector[pair[double,double]] col_degrees
37
+ # vector[pair[double,double]] row_degrees
38
+ # vector[vector[int]] matrix
39
+
40
+ cdef cppclass AIDA_functor "aida::AIDA_functor":
41
+ AIDA_functor() except + nogil
42
+ multipers_interface_output multipers_interface(multipers_interface_input&) except + nogil
43
+ aida_config config
44
+
45
+
46
+
@@ -0,0 +1,131 @@
1
+ Metadata-Version: 2.4
2
+ Name: multipers
3
+ Version: 2.4.0b1
4
+ Summary: Multiparameter Topological Persistence for Machine Learning
5
+ Author-email: David Loiseaux <david.lapous@proton.me>, Hannah Schreiber <hannah.schreiber@inria.fr>
6
+ Maintainer-email: David Loiseaux <david.lapous@proton.me>
7
+ License-Expression: MIT
8
+ Project-URL: source, https://github.com/DavidLapous/multipers
9
+ Project-URL: download, https://pypi.org/project/multipers/#files
10
+ Project-URL: tracker, https://github.com/DavidLapous/multipers/issues
11
+ Project-URL: release notes, https://github.com/DavidLapous/multipers/releases
12
+ Keywords: TDA,Persistence,Multiparameter,sklearn,autodiff
13
+ Classifier: Development Status :: 5 - Production/Stable
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.14
19
+ Classifier: Programming Language :: Python :: Implementation :: CPython
20
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
22
+ Classifier: Topic :: Scientific/Engineering :: Visualization
23
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
+ Requires-Python: >=3.10
25
+ Description-Content-Type: text/markdown
26
+ License-File: LICENSE
27
+ Requires-Dist: numpy
28
+ Requires-Dist: gudhi>=3.8
29
+ Requires-Dist: tqdm
30
+ Requires-Dist: scipy
31
+ Requires-Dist: joblib
32
+ Requires-Dist: matplotlib
33
+ Requires-Dist: scikit-learn
34
+ Requires-Dist: filtration-domination
35
+ Requires-Dist: pykeops
36
+ Requires-Dist: pot
37
+ Dynamic: license-file
38
+
39
+ # multipers : Multiparameter Persistence for Machine Learning
40
+ [![DOI](https://joss.theoj.org/papers/10.21105/joss.06773/status.svg)](https://doi.org/10.21105/joss.06773) [![Documentation](https://img.shields.io/badge/Documentation-website-blue)](https://davidlapous.github.io/multipers) [![Build, test](https://github.com/DavidLapous/multipers/actions/workflows/python_PR.yml/badge.svg)](https://github.com/DavidLapous/multipers/actions/workflows/python_PR.yml)
41
+ <br>
42
+ Scikit-style PyTorch-autodiff multiparameter persistent homology python library.
43
+ This library aims to provide easy to use and performant strategies for applied multiparameter topology.
44
+ <br> Meant to be integrated in the [Gudhi](https://gudhi.inria.fr/) library.
45
+
46
+ ## Compiled packages
47
+ | Source | Version | Downloads | Platforms |
48
+ | --- | --- | --- | --- |
49
+ | [![Conda Recipe](https://img.shields.io/badge/conda-recipe-green.svg)](https://github.com/conda-forge/multipers-feedstock)| [![Conda Version](https://img.shields.io/conda/vn/conda-forge/multipers.svg)](https://anaconda.org/conda-forge/multipers) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/multipers.svg)](https://anaconda.org/conda-forge/multipers) |[![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/multipers.svg)](https://anaconda.org/conda-forge/multipers) |
50
+ | [![pip Recipe](https://img.shields.io/badge/pip-package-green.svg)](https:///pypi.org/project/multipers) | [![PyPI](https://img.shields.io/pypi/v/multipers?color=green)](https://pypi.org/project/multipers) | [![ pip downloads](https://static.pepy.tech/badge/multipers)](https://pepy.tech/project/multipers) | |
51
+
52
+
53
+
54
+ ## Quick start
55
+ This library allows computing several representations from "geometrical datasets", e.g., point clouds, images, graphs, that have multiple scales.
56
+ We provide some *nice* pictures in the [documentation](https://davidlapous.github.io/multipers/index.html).
57
+ A non-exhaustive list of features can be found in the **Features** section.
58
+
59
+ This library is available on pip and conda-forge for (reasonably up to date) Linux, macOS and Windows, via
60
+ ```sh
61
+ pip install multipers
62
+ ```
63
+ or
64
+ ```sh
65
+ conda install multipers -c conda-forge
66
+ ```
67
+ Pre-releases are available via
68
+ ```sh
69
+ pip install --pre multipers
70
+ ```
71
+ These release usually contain small bugfixes or unstable new features.
72
+
73
+ Windows support is experimental, and some core dependencies are not available on Windows.
74
+ We hence recommend Windows user to use [WSL](https://learn.microsoft.com/en-us/windows/wsl/).
75
+ <br>
76
+ A documentation and building instructions are available
77
+ [here](https://davidlapous.github.io/multipers/compilation.html).
78
+
79
+
80
+ ## Features, and linked projects
81
+ This library features a bunch of different functions and helpers. See below for a non-exhaustive list.
82
+ <br>Filled box refers to implemented or interfaced code.
83
+ - [x] [[Multiparameter Module Approximation, JACT]](https://doi.org/10.1007/s41468-025-00222-y) provides the multiparameter simplicial structure, as well as technics for approximating modules, via interval-decomposable modules. It is also very useful for visualization.
84
+ - [x] [[Stable Vectorization of Multiparameter Persistent Homology using Signed Barcodes as Measures, NeurIPS2023]](https://proceedings.neurips.cc/paper_files/paper/2023/hash/d75c474bc01735929a1fab5d0de3b189-Abstract-Conference.html) provides fast representations of multiparameter persistence modules, by using their signed barcodes decompositions encoded into signed measures. Implemented decompositions : Euler surfaces, Hilbert function, rank invariant (i.e. rectangles). It also provides representation technics for Machine Learning, i.e., Sliced Wasserstein kernels, and Vectorizations.
85
+ - [x] [[A Framework for Fast and Stable Representations of Multiparameter Persistent Homology Decompositions, NeurIPS2023]](https://proceedings.neurips.cc/paper_files/paper/2023/hash/702b67152ec4435795f681865b67999c-Abstract-Conference.html) Provides a vectorization framework for interval decomposable modules, for Machine Learning. Currently implemented as an extension of MMA.
86
+ - [x] [[Differentiability and Optimization of Multiparameter Persistent Homology, ICML2024]](https://proceedings.mlr.press/v235/scoccola24a.html) An approach to compute a (clarke) gradient for any reasonable multiparameter persistent invariant. Currently, any `multipers` computation is auto-differentiable using this strategy, provided that the input are pytorch gradient capable tensor.
87
+ - [x] [[Multiparameter Persistence Landscapes, JMLR]](https://jmlr.org/papers/v21/19-054.html) A vectorization technic for multiparameter persistence modules.
88
+ - [x] [[Filtration-Domination in Bifiltered Graphs, ALENEX2023]](https://doi.org/10.1137/1.9781611977561.ch3) Allows for 2-parameter edge collapses for 1-critical clique complexes. Very useful to speed up, e.g., Rips-Codensity bifiltrations.
89
+ - [x] [[Chunk Reduction for Multi-Parameter Persistent Homology, SoCG2019]](https://doi.org/10.4230/LIPIcs.SoCG.2019.37) Multi-filtration preprocessing algorithm for homology computations.
90
+ - [x] [[Computing Minimal Presentations and Bigraded Betti Numbers of 2-Parameter Persistent Homology, JAAG]](https://doi.org/10.1137/20M1388425) Minimal presentation of multiparameter persistence modules, using [mpfree](https://bitbucket.org/mkerber/mpfree/src/master/). Hilbert, Rank Decomposition Signed Measures, and MMA decompositions can be computed using the mpfree backend.
91
+ - [ ] [WIP] [[Decomposing Multiparameter Persistence Modules, SoCG2025]](https://doi.org/10.4230/LIPIcs.SoCG.2025.41) Using the [AIDA](https://github.com/JanJend/AIDA) and [Persistence-Algebra](https://github.com/JanJend/Persistence-Algebra/) libraries.
92
+ - [x] [[Delaunay Bifiltrations of Functions on Point Clouds, SODA2024]](https://epubs.siam.org/doi/10.1137/1.9781611977912.173) Provides an alternative to function rips bifiltrations, using Delaunay complexes. Very good alternative to Rips-Density like bifiltrations.
93
+ - [x] [[Delaunay Core Bifiltration]](https://arxiv.org/abs/2405.01214) Bifiltration for point clouds, taking into account the density. Similar to Rips-Density.
94
+ - [x] [[Rivet]](https://github.com/rivetTDA/rivet) Interactive two parameter persistence
95
+ - [x] [[Kernel Operations on the GPU, with Autodiff, without Memory Overflows, JMLR]](http://jmlr.org/papers/v22/20-275.html) Although not linked, at first glance, to persistence in any way, this library allows computing blazingly fast signed measures convolutions (and more!) with custom kernels.
96
+ - [ ] [Backend only] [[Projected distances for multi-parameter persistence modules]](https://arxiv.org/abs/2206.08818) Provides a strategy to estimate the convolution distance between multiparameter persistence module using projected barcodes. Implementation is a WIP.
97
+ - [ ] [Partial, and experimental] [[Efficient Two-Parameter Persistence Computation via Cohomology, SoCG2023]](https://doi.org/10.4230/LIPIcs.SoCG.2023.15) Minimal presentations for 2-parameter persistence algorithm.
98
+
99
+ If I missed something, or you want to add something, feel free to open an issue.
100
+
101
+ ## Authors
102
+ [David Loiseaux](https://davidlapous.github.io/),<br>
103
+ [Hannah Schreiber](https://github.com/hschreiber) (Persistence backend code),<br>
104
+ [Luis Scoccola](https://luisscoccola.com/)
105
+ (Möbius inversion in python, degree-rips using [persistable](https://github.com/LuisScoccola/persistable) and [RIVET](https://github.com/rivetTDA/rivet/)),<br>
106
+ [Mathieu Carrière](https://www-sop.inria.fr/members/Mathieu.Carriere/) (Sliced Wasserstein),<br>
107
+ [Odin Hoff Gardå](https://odinhg.github.io/) (Delaunay Core bifiltration).<br>
108
+ Jan Jendrysiak (Module Decomposition).<br>
109
+
110
+ ## Citation
111
+ Please cite this library when using it in scientific publications;
112
+ you can use the following journal bibtex entry
113
+ ```bib
114
+ @article{multipers,
115
+ title = {Multipers: {{Multiparameter Persistence}} for {{Machine Learning}}},
116
+ shorttitle = {Multipers},
117
+ author = {Loiseaux, David and Schreiber, Hannah},
118
+ year = {2024},
119
+ month = nov,
120
+ journal = {Journal of Open Source Software},
121
+ volume = {9},
122
+ number = {103},
123
+ pages = {6773},
124
+ issn = {2475-9066},
125
+ doi = {10.21105/joss.06773},
126
+ langid = {english},
127
+ }
128
+ ```
129
+ ## Contributions
130
+ Feel free to contribute, report a bug on a pipeline, or ask for documentation by opening an issue.<br>
131
+ In particular, if you have a nice example or application that is not taken care in the documentation (see the `./docs/notebooks/` folder), please contact me to add it there.
@@ -0,0 +1,184 @@
1
+ multipers-2.4.0b1.dist-info/RECORD,,
2
+ multipers-2.4.0b1.dist-info/WHEEL,sha256=V1loQ6TpxABu1APUg0MoTRBOzSKT5xVc3skizX-ovCU,136
3
+ multipers-2.4.0b1.dist-info/top_level.txt,sha256=L9e0AGmhRzrNw9FpuUx-zlqi5NcBOmrI9wYY8kYWr8A,10
4
+ multipers-2.4.0b1.dist-info/METADATA,sha256=CuRhfMSIQzXXftNTEfGW4xcZEKTOL-2OOY7a3ImG6wg,10121
5
+ multipers-2.4.0b1.dist-info/licenses/LICENSE,sha256=UsQRnvlo_9wpQS9DNt52GEraERHwK2GIRwuqr2Yv5JI,1071
6
+ multipers/multiparameter_module_approximation.cpython-312-darwin.so,sha256=WBO_Je52tTr2t3iNS_fTdnj6bAgWByiu6DrPKzJV5kQ,659264
7
+ multipers/filtration_conversions.pxd.tp,sha256=yGEYKsVBFWwmmNb9Irw7inyqBjOeheHpO3PkYuoVQ74,8747
8
+ multipers/slicer.cpython-312-darwin.so,sha256=b3MP-GfEBTCbN2JlpGD70_GJs1dECBFokFDCuVzz_7c,9069744
9
+ multipers/io.cpython-312-darwin.so,sha256=KOk9FAop3rxHngb4CvGU1qYqdwdjptwdNsNMtfEaohc,278408
10
+ multipers/grids.cpython-312-darwin.so,sha256=3_8W3C1u1ehn4GmJ-NlKGWWcnxTtqL5whdTsT06YQd8,572584
11
+ multipers/distances.py,sha256=t3fu4noXoyZLOYDQVWfbXSVL8UethCSBiO1XIQzW6u8,6228
12
+ multipers/mma_structures.pyx,sha256=lT5LCO4Kt920MzZxn_QTa-yDQisYJCTykGpF3S_6EJo,55934
13
+ multipers/filtrations.pxd,sha256=CABPluYgxyeIprC4tIMzJ8VZXHvDZFI_7pJzWDEzuTU,23724
14
+ multipers/point_measure.cpython-312-darwin.so,sha256=GQTyf4Rgtp2x92iLkkm99uaL6jntTIzi6VHoDz8iBSI,753056
15
+ multipers/slicer.pyx,sha256=O7L2433FSwinsIpAkjD53mPin4IrQ5sE3yPZJbQwlx8,613299
16
+ multipers/simplex_tree_multi.cpython-312-darwin.so,sha256=4mc0JwAAed4Dr322eRqFuLSuHUHjp_6rmeEb7s-0-LI,5411392
17
+ multipers/simplex_tree_multi.pyx,sha256=5kifBuSKIqanTrx-LrbSy4LOZ1AqUVEwgX5VG75sS1Q,537221
18
+ multipers/__init__.py,sha256=y4BfbXAY2M2yZYob758IegZHwIbRgmKrph6lwe6WR6Q,733
19
+ multipers/_slicer_meta.py,sha256=3tcDCdu21x8Zf5SIqhzWgdyugj8oYZtbESQXiD2VBjw,7405
20
+ multipers/io.pyx,sha256=rxiIF10-VMRjCm-8okh__N4y123BiNbbBroyLVP_kEw,16409
21
+ multipers/multiparameter_edge_collapse.py,sha256=MFt0eKQQSv2354omeIqOmzASYTKIMsYdxZHFZauQr8g,1229
22
+ multipers/ops.cpython-312-darwin.so,sha256=ho6TLs2CVT5ps8usZCp5zD6440Kbcl2L8sSbN-TKUrA,774496
23
+ multipers/slicer.pyx.tp,sha256=_RpXTGiOI8FgP8rmIHO2Kw_OmrHSdIHdU5UD-i73Onc,52168
24
+ multipers/mma_structures.pyx.tp,sha256=ZxvyWdbMSKQ1YabDj2vvepAHQw-y304sas8LS9KoWeI,43391
25
+ multipers/plots.py,sha256=co7NgUzzlxqmctaMHXyYZRX8bvDJefFP6vPsJUMGDdk,17130
26
+ multipers/point_measure.pyx,sha256=tU6Ucedk2Ekuop25BHDTcuu0ywzXVkVoZYglpc5f-Zk,14476
27
+ multipers/slicer.pxd.tp,sha256=5LL1OCmNNw7sc2jaYNfJ82Ha-Vx9firoTbVZTQK_Fw8,13118
28
+ multipers/simplex_tree_multi.pxd,sha256=Ka5F9ALGDsynITm7aVdVV9-l8RL7jYYn47mp-HmLNlo,6794
29
+ multipers/simplex_tree_multi.pyx.tp,sha256=wD0LTG3-LCYzH2xRpQrGy5Wfo3LJ-vju2PtWZssW6H8,93472
30
+ multipers/vector_interface.pxd,sha256=fvNvRaU4Y0vMf9LCuXo2GcoxaCZNvxSRAPxNFX8etDs,1500
31
+ multipers/mma_structures.cpython-312-darwin.so,sha256=M9aujJTf8MPVGmattvrDrb3hJz075KO5f6kl10I1oro,1054176
32
+ multipers/slicer.pxd,sha256=S7Gr5Tozegp58kestSiskULSfIW4P8xT4g6UcVAONKU,218152
33
+ multipers/grids.pyx,sha256=d4HvO85XKFlRcU3307Z0rA0Trd5_uOClV1iT-vR8uOw,19747
34
+ multipers/test.pyx,sha256=-g7WU-jKrZK8H0c-6eAPsfrApjvTKrUoswVYFu8LoV4,1798
35
+ multipers/multiparameter_module_approximation.pyx,sha256=7daAEdxDcY0OmZCatTCPEcan_upfq5aFi46_CEWsJ0U,10876
36
+ multipers/pickle.py,sha256=SeYPlxQ6aPJqtD76k3UXrpLC4o_KtKs7FDayJvRHf38,2578
37
+ multipers/_signed_measure_meta.py,sha256=Az3HLMfBdhapSP5BlHyWIkuvpzrQrN2x-hVlmxZQA8U,16684
38
+ multipers/tensor.pxd,sha256=MSmaMU0sOP9CHLmg4dym7nOGaI1S4cOdM01TQ9flI54,417
39
+ multipers/mma_structures.pxd,sha256=QyoCGNb9gKa-DG8lH2frDyWLwO3atQmiLOcOumGCoKM,6914
40
+ multipers/function_rips.pyx,sha256=5aRVCG6BdkS3SmOFftlNuQkpQsM-9nsb_Y4j9ExRimY,5160
41
+ multipers/function_rips.cpython-312-darwin.so,sha256=QZMBR5x0b842p9W5BDOUopmJwllDL9YIObJHouwIETA,505872
42
+ multipers/filtrations.pxd.tp,sha256=esk45bTddJfGNFNv-26GYD-3rVy7FjNF2xx5r7sAZ5Y,14028
43
+ multipers/ops.pyx,sha256=unHvaRmIJBwGflAt1cEhUeSAosW-3fGBs35NmOJJGbQ,9714
44
+ multipers/filtration_conversions.pxd,sha256=bBSjc79FnjbE6jZ7KQBUNhUSLatIp7UTW3OY0i0AIU8,31333
45
+ multipers/gudhi/Simplex_tree_multi_interface.h,sha256=98AhsTUXoi5NJRfgLvPko0ZgOhB4pCY14gnlGTZI8a8,31403
46
+ multipers/gudhi/Persistence_slices_interface.h,sha256=Zh4VGUObyOXZuFE5s0q1xJ7TmocLPjg_NTAgY4pFHfI,9970
47
+ multipers/gudhi/Simplex_tree_interface.h,sha256=yLk4KNoPAyDj8bx35JuX013w24fNIQP5ahC6GTB6cIc,10779
48
+ multipers/gudhi/gudhi/Multi_parameter_filtration.h,sha256=RjLhwSAaqBYAo3Ol9bzgaBNSro518t5oj4hAg791SzM,105146
49
+ multipers/gudhi/gudhi/multi_simplex_tree_helpers.h,sha256=QcQc0GPvt4wx2lwua7Njv0Aa-InDP5eZnmGug49LfYI,7153
50
+ multipers/gudhi/gudhi/Degree_rips_bifiltration.h,sha256=P0waX28OTCjohMEFpalb-3f8fm3x7jGW3D2KeAZh6Io,90613
51
+ multipers/gudhi/gudhi/Multi_parameter_filtered_complex.h,sha256=S04-QaIYf4IEDTERAM03Lj9SVEyaXlBEgN6X-w4eB-g,20404
52
+ multipers/gudhi/gudhi/Projective_cover_kernel.h,sha256=nxo-IVpEWkL47HYyhGiuUYxEjNjhgJFKOi3I7BKHp88,14315
53
+ multipers/gudhi/gudhi/slicer_helpers.h,sha256=08nd1VVoS6ud_A0SjSsVEu5j5Xgs_wwO98IoZHlrGwc,34531
54
+ multipers/gudhi/gudhi/graph_simplicial_complex.h,sha256=Wuy5qOkx592qKsweovOaD2TwW4k7iu8ro3o5F-VnThI,3772
55
+ multipers/gudhi/gudhi/Simple_object_pool.h,sha256=Dc_bn6g5rCMg_wZtKNzueJPKfFh1SI-QO-HKAI_74jM,1809
56
+ multipers/gudhi/gudhi/Thread_safe_slicer.h,sha256=kNNLQZ_KC1whFuJVo3EycZ849fYVZUaXk5XnLokVFfw,15429
57
+ multipers/gudhi/gudhi/persistence_interval.h,sha256=vkZ-fniPGToi_Gf9TD7d45mESuZSKKLkMS0CiO3dyuU,10856
58
+ multipers/gudhi/gudhi/Flag_complex_edge_collapser.h,sha256=DQ_wyOG3z09jX6sq_79oTxZM_Z5Hi_zIZ_LL1EFMLAw,13247
59
+ multipers/gudhi/gudhi/Matrix.h,sha256=PKu-g04cOpj4YCOtMYpPxIrzAZnSq0KGDMPCbg9lkMM,118010
60
+ multipers/gudhi/gudhi/Persistence_on_rectangle.h,sha256=nbF4N48WmYtNsu2YoEKJh2OL5msFfAhQX1rSkB9Qp5A,25430
61
+ multipers/gudhi/gudhi/simple_mdspan.h,sha256=Z0qPe3_OkUp1ci033hQdtgf_6oD0czXFU45oaJf2RtM,16842
62
+ multipers/gudhi/gudhi/Bitmap_cubical_complex_base.h,sha256=62rgpvCQhAA7hpKSxRAKDO9uLZK2txxjf953kQA56eM,44544
63
+ multipers/gudhi/gudhi/Dynamic_multi_parameter_filtration.h,sha256=uzPa2GYZj7N0YJAfqj6BrChvT7A_nnYNVsH1wfwkyVg,103532
64
+ multipers/gudhi/gudhi/Off_reader.h,sha256=Owwc7wgQzOgq4URfA3V5c9v_8IY6ODKXeZefjFk8Kok,4871
65
+ multipers/gudhi/gudhi/Bitmap_cubical_complex_periodic_boundary_conditions_base.h,sha256=TJTN_RWANVEl5A4NeZYAfVzwLiP474J1vl16Pn1QqJE,25829
66
+ multipers/gudhi/gudhi/Bitmap_cubical_complex.h,sha256=EdKBo5TQM8tCvap6_Lw2w-2kDOx4p10tQRXqKYcUs28,16159
67
+ multipers/gudhi/gudhi/persistence_matrix_options.h,sha256=pWeD_U70q0Kd0ar_VxN-bOrqmDKLRq42g8cIoKxTIuk,7298
68
+ multipers/gudhi/gudhi/Points_off_io.h,sha256=kdLw8d8c-zwLl-l5W7BE4lhTLr40FV4gkGo33sU-tbs,5226
69
+ multipers/gudhi/gudhi/Persistence_on_a_line.h,sha256=zeNm-mPmBOBwMw_cqOT6nRKpqT2AKCRbhHVmc5iXsB0,4576
70
+ multipers/gudhi/gudhi/Debug_utils.h,sha256=t1OOvnqPJimxXctfGG8TF5_uDxMIp05yKj0Z3ca__VE,1815
71
+ multipers/gudhi/gudhi/Slicer.h,sha256=q4HBrNJHFeoM3vxdB0iiRVEIn0eOTb9gXJkOPCTe5I0,34101
72
+ multipers/gudhi/gudhi/Simplex_tree.h,sha256=oUP_GV3pcvam4OCrKvZvWdIruUs7i8LHpzsEW6p1moI,144200
73
+ multipers/gudhi/gudhi/distance_functions.h,sha256=r9AZnpO0--xqrAT_XSNPdhy_i3J1iL5qfRISMyF9g34,1901
74
+ multipers/gudhi/gudhi/Persistent_cohomology.h,sha256=4pLRyh3UcZ9IgRqvv5MLLSrcuSf-UherrGq0B4IzTd8,31463
75
+ multipers/gudhi/gudhi/reader_utils.h,sha256=2JFkAZtqptxkUDwIA78GG-GYktzjrNlTIFoUNdsYIxM,11568
76
+ multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_star_simplex_iterators.h,sha256=foPng9Eik3cD6At0DliXRgrpbhWudg7J2svPEmI65iE,11276
77
+ multipers/gudhi/gudhi/Simplex_tree/simplex_tree_options.h,sha256=zNBTfjZSSPL_HuByTBYOZ6_5aDco6HuNVevG-RiZWrk,3702
78
+ multipers/gudhi/gudhi/Simplex_tree/hooks_simplex_base.h,sha256=HDs4C5QU92Nmbw025_PxgI3GblcXy_C7N1V2bFsSgz0,2404
79
+ multipers/gudhi/gudhi/Simplex_tree/filtration_value_utils.h,sha256=3EkVR22nDaBKeX1tqtKvnOuDJi76Kf7J7ajHXq1h8jY,5744
80
+ multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_node_explicit_storage.h,sha256=QzuY_IDiq7V2JiIclCvl8XQ3fbEw6xVqY8MTgI03Q5s,2682
81
+ multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_siblings.h,sha256=x-1Zf22TMs8Xv1CTL3vL1MT3Mikk4mrbo5zMPcdQj2w,3418
82
+ multipers/gudhi/gudhi/Simplex_tree/serialization_utils.h,sha256=GztzBfNFPc387WdB-GxJazmOY3z7_2SYintB1vuZAGI,1929
83
+ multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_iterators.h,sha256=1rqHmaFSpDEvr1a0EVOYi6-ORi5yKFHPu-BhfKaovhM,18202
84
+ multipers/gudhi/gudhi/Simplex_tree/indexing_tag.h,sha256=qadCFWwXgyw53icvnYktqqCGPa1TIwm2fNFNRM3NVwY,720
85
+ multipers/gudhi/gudhi/Persistence_matrix/Boundary_matrix.h,sha256=cI2pseYfggzse6p20NrS3CwyL_wXrRJ6yr953kTyjqY,35254
86
+ multipers/gudhi/gudhi/Persistence_matrix/ru_vine_swap.h,sha256=GgSSkkTZ-w_KHF5NVPiDLcENmzOkJPsvYACYXKuBFTE,20660
87
+ multipers/gudhi/gudhi/Persistence_matrix/ru_rep_cycles.h,sha256=SVsryEiKMPwj91_NoRAJqsP-xyIKGbMlFjjWdMAVxUM,10873
88
+ multipers/gudhi/gudhi/Persistence_matrix/matrix_dimension_holders.h,sha256=4UJeXSkVXSGaj19lzVqDf4rNCAlq0zSD-66-VO1-NE4,6661
89
+ multipers/gudhi/gudhi/Persistence_matrix/Chain_matrix.h,sha256=WsRafb5TuL_IrqRMCZ66soF54LmVR5XGtOURnQR9ylc,62851
90
+ multipers/gudhi/gudhi/Persistence_matrix/RU_matrix.h,sha256=VfGaLEmoWfNzorTDzNsS35mKQTruMGU719nSfHDVejk,39508
91
+ multipers/gudhi/gudhi/Persistence_matrix/chain_rep_cycles.h,sha256=Po3Yvt5t1cEsbW9B3_7MugKPHv9oXhrwmBNCwyXkjKI,9138
92
+ multipers/gudhi/gudhi/Persistence_matrix/Id_to_index_overlay.h,sha256=xj5ibe-YSPNT5iuKQkHPsLxv-6bfMkWEUF-j4uUnzT4,57066
93
+ multipers/gudhi/gudhi/Persistence_matrix/chain_vine_swap.h,sha256=n9OoVfZD60CSNun69GNum3blYjOC9r9o0mMelIRN-F0,21207
94
+ multipers/gudhi/gudhi/Persistence_matrix/ru_pairing.h,sha256=8V3ANAWmmR23wGwKMF2vr3QmETU7221CnATaBVgznGE,5420
95
+ multipers/gudhi/gudhi/Persistence_matrix/Base_matrix.h,sha256=S6S1nGuRChXUxiPTW8BynPZA091QmrHCe4ZLL-cauZc,34847
96
+ multipers/gudhi/gudhi/Persistence_matrix/base_pairing.h,sha256=EobH2exA3hJEXZXIVs7C9O-qqdAT0-v5F0fOyAmL2e0,9260
97
+ multipers/gudhi/gudhi/Persistence_matrix/index_mapper.h,sha256=K1bebrIorP8aTrjmH2vSQOSQ2l-8-bd6aG6FwK8jUNg,1532
98
+ multipers/gudhi/gudhi/Persistence_matrix/Position_to_index_overlay.h,sha256=A89h0yhoO0F432QDIde9vOUjO6S9VABKkSoWQbXHj0M,43683
99
+ multipers/gudhi/gudhi/Persistence_matrix/chain_pairing.h,sha256=eNceKFoAX2B24aqS_MdWSVyrH-mzkzwET0JPY3tyTD0,5259
100
+ multipers/gudhi/gudhi/Persistence_matrix/Base_matrix_with_column_compression.h,sha256=bMaDMyZV_kneb0qn-D0D8sRdcyxBaTRj9i3TBwYMCEc,34266
101
+ multipers/gudhi/gudhi/Persistence_matrix/base_swap.h,sha256=8S4yro5kS3QG4lA-XNgIp9k4ly92AOwOOBd_CeQkGiY,9316
102
+ multipers/gudhi/gudhi/Persistence_matrix/matrix_row_access.h,sha256=zfPHi7_Pug6q0nrjQe1DdfQ-JKGbDDdrAOIKY4p0oaQ,6017
103
+ multipers/gudhi/gudhi/Persistence_matrix/allocators/entry_constructors.h,sha256=0uc5wKZCqp-GI6b6L3rIk9SHpnPkGUPAWipk2A4Vl54,2960
104
+ multipers/gudhi/gudhi/Persistence_matrix/columns/column_utilities.h,sha256=Yf3NcbkWQW0UqumKUjD74eA85HD90nPWAx2aAtG86sE,10082
105
+ multipers/gudhi/gudhi/Persistence_matrix/columns/entry_types.h,sha256=2A3y7tR_HMbbl5d_qXsbMYbRFOLhx_yZr7tvK2_66ZY,9387
106
+ multipers/gudhi/gudhi/Persistence_matrix/columns/naive_vector_column.h,sha256=K2tnJGfeS3pfm_ZynnKdvDL5xcMbWXdlAXeHbLGi-JU,46004
107
+ multipers/gudhi/gudhi/Persistence_matrix/columns/intrusive_list_column.h,sha256=tpBTkFF6MydQDmWiJorZhJdhcjmBywzZk1z3zKK5Qyk,38789
108
+ multipers/gudhi/gudhi/Persistence_matrix/columns/list_column.h,sha256=i_OTVufTYFQ06NMoVsKFmqbY-JY0vwHhBQ93KPdInPc,37789
109
+ multipers/gudhi/gudhi/Persistence_matrix/columns/intrusive_set_column.h,sha256=4B5EXx51gwuWdJCiQvCELhdtOky_zGHPvVChfaKLkc4,38434
110
+ multipers/gudhi/gudhi/Persistence_matrix/columns/row_access.h,sha256=OaETDl8snr_clfSXzeEauYoQWYVw1Z9j0kPVQYF5vD4,6292
111
+ multipers/gudhi/gudhi/Persistence_matrix/columns/vector_column.h,sha256=4x7DHR2zMJZebtFv2uiRhoBAyWxKDKcnvWbUh13XddE,49226
112
+ multipers/gudhi/gudhi/Persistence_matrix/columns/unordered_set_column.h,sha256=vKFbfJGJaSYCCn78LlGUyB3Iu5mLhDzIJ01i-6HwcsI,40168
113
+ multipers/gudhi/gudhi/Persistence_matrix/columns/heap_column.h,sha256=9a0LJvA9IeUGQol-vFQcMMyf1DZv-PYC1GO2jSeh68I,40076
114
+ multipers/gudhi/gudhi/Persistence_matrix/columns/column_dimension_holder.h,sha256=OuEdrMj275H8tqSnX4GivFIR9nwc9WYoc_Rnfk6bUoE,3676
115
+ multipers/gudhi/gudhi/Persistence_matrix/columns/set_column.h,sha256=EJKq3dIkGF5qLbC99_rx1u_5Qynlz0r7V4x_mNjgaLg,35770
116
+ multipers/gudhi/gudhi/Persistence_matrix/columns/chain_column_extra_properties.h,sha256=WgXqyxvtkICe0rLLTHJwhud7r-PY8fDRAsC4xbfLcso,6458
117
+ multipers/gudhi/gudhi/Multi_filtration/multi_filtration_utils.h,sha256=UNrlyF-aY1ZcZnmiCJgry4MFb2vD57a_mU85FQsLi88,6016
118
+ multipers/gudhi/gudhi/Multi_filtration/multi_filtration_conversions.h,sha256=h4EWb3K6ZwptpP3ZD4GcjJgY9WTYNbXmFItPJ-v2C9Q,10151
119
+ multipers/gudhi/gudhi/Multi_filtration/Multi_parameter_generator.h,sha256=4PLq6UXAi_u2_sVi4Pk2H1rzaF0qjIiyQcadoMkC29E,59858
120
+ multipers/gudhi/gudhi/Fields/Zp_field_operators.h,sha256=iiFt2KkLxX-0YXVEnlSt6uxLeU6m2nQyxPdHZz5sntI,12838
121
+ multipers/gudhi/gudhi/Fields/Multi_field_small_operators.h,sha256=kb1od_ddsdGc20xrgrF8uMGa69eUn4cWKJEsNq0HEwU,17193
122
+ multipers/gudhi/gudhi/Fields/Z2_field_operators.h,sha256=gZ21D5jRbAi0l8y63BKhytrzu-vpJQM5oGPO56jmV2M,14031
123
+ multipers/gudhi/gudhi/Fields/Multi_field.h,sha256=DhM4HJA9FLUS_BCbTEkxvBxvhQ-HwFqYuINfgTfRC1M,13279
124
+ multipers/gudhi/gudhi/Fields/Multi_field_small.h,sha256=mHMyQhzu_gSElT2RYMBf6qkS4T65BxejKVBwJPM5haY,18736
125
+ multipers/gudhi/gudhi/Fields/Multi_field_operators.h,sha256=TyI2P4wy5i6AVy9PnKfbEru3mEd7HHsKHo_eXlCmHUo,15761
126
+ multipers/gudhi/gudhi/Fields/Z2_field.h,sha256=R7tDsORvgsGRId0209GS3fdxnLUKpzimlhHUra4S91Y,10272
127
+ multipers/gudhi/gudhi/Fields/Zp_field_shared.h,sha256=6riCHyfhZy7ABiVuOxQi0T5ub83Q--0XSS5lv0-3dRM,14368
128
+ multipers/gudhi/gudhi/Fields/Multi_field_shared.h,sha256=U1IygFJkjJINjTBhBlksGGATJjA3XWmHBB5SKtzUtY4,13758
129
+ multipers/gudhi/gudhi/Fields/Multi_field_small_shared.h,sha256=TeLlmJ639SFUUChX5FFfv7GeL_IwNXoLzONl_fcUSG8,19272
130
+ multipers/gudhi/gudhi/Fields/Zp_field.h,sha256=WjI2DtKN-weQyOhTNQQX9cZza3NmjSmJ_4DYKWuJ8CU,13486
131
+ multipers/gudhi/gudhi/Persistent_cohomology/Multi_field.h,sha256=S-jpKT5KlZ1X--LfNGTyfmoULNpu29hZUz9_lttxEYY,5678
132
+ multipers/gudhi/gudhi/Persistent_cohomology/Field_Zp.h,sha256=ui3kgxOgWZBQbIDe5ki_TocRX_0Ao_7TDQIdBIZc1XI,3399
133
+ multipers/gudhi/gudhi/Persistent_cohomology/Persistent_cohomology_column.h,sha256=0JQzCsQGLc3uiQuC_2a8W9-2drqv2gLgazP4wbeJAFk,3967
134
+ multipers/gudhi/gudhi/Multi_persistence/Multi_parameter_filtered_complex_pcoh_interface.h,sha256=9jJ8a5qEPzGZO3B5IXo6zEuGpGPPjJ98oNz8sJKfebU,11683
135
+ multipers/gudhi/gudhi/Multi_persistence/Box.h,sha256=vCGWxVVZX0X-mh8uLyKVZa-4BgPgfEfV4BS1P-YJoLo,7576
136
+ multipers/gudhi/gudhi/Multi_persistence/Point.h,sha256=kcIs3uh3jKK2z0vMWLLUJFY8RLFurFHYUN3WgAMS0l8,26656
137
+ multipers/gudhi/gudhi/Multi_persistence/Persistence_interface_cohomology.h,sha256=jxAT2XHqJmrIztYUWr5bVU4QKVKxVtkz4cpNuKAWQnc,5716
138
+ multipers/gudhi/gudhi/Multi_persistence/Persistence_interface_matrix.h,sha256=2VjgJrxm5rWLfHAv9pY5U3VBqjyttz5o-h3gkf-79Bo,16076
139
+ multipers/gudhi/gudhi/Multi_persistence/Line.h,sha256=mfpf12IK5sqzGWNqk2_JzXRsdyYwlK7MzDeeWKP2_cE,10594
140
+ multipers/gudhi/tmp_h0_pers/naive_merge_tree.h,sha256=iYrizGLZgCm_Dr-eNp4avfHLnXtyzlEslpzME4XPfek,18854
141
+ multipers/gudhi/tmp_h0_pers/mma_interface_h0.h,sha256=5g7wsCJ_79PS8gLpHaCODHS1BCLBUGTlkS2IcnC_fqY,7596
142
+ multipers/tests/__init__.py,sha256=9HIaEmHDsrmYQk8nGJjBIb99FIpYL1-jUptBMEBxN0A,1995
143
+ multipers/filtrations/__init__.py,sha256=C1xr5K_LRHzYa6tZOgXtQMIkszVIoDPWSXDDa6Kpgqk,374
144
+ multipers/filtrations/density.py,sha256=SKGe1cqDVQwLciU_yd9bgCL8oO6cYsMwes-cytINTBM,18119
145
+ multipers/filtrations/filtrations.py,sha256=O1KCnOad6J_c5iLSBO2VYSzz2SenBJcWUeQYyMOYVrA,16968
146
+ multipers/torch/diff_grids.py,sha256=LWbKCdZ9DgxxQcyp0y4je4mNt0uIBcpcNWNS5R7fGXk,7494
147
+ multipers/torch/rips_density.py,sha256=H-kmSzY8hXhmVn15Oltc71DHs1IUHg5oPRgNyWW8L4Q,11706
148
+ multipers/torch/__init__.py,sha256=OLxIiZ389uCqehpUxBPUI_x1SYu531onc4tiTscAuIw,27
149
+ multipers/array_api/__init__.py,sha256=jyvi7Gzd7Si_imgaodz80fcA-68MikAGk8g79_vj6yo,1545
150
+ multipers/array_api/numpy.py,sha256=8QWsUuI4j2DGcFbv65xJ4LX-G9LlQBycYSOHIh-Jj00,2734
151
+ multipers/array_api/torch.py,sha256=aJGoU4i-Qo9YWoJhnO6TS_GaDrVV2JrP7erg5SAs5DY,2783
152
+ multipers/multiparameter_module_approximation/debug.h,sha256=yy7miaqw-Lj8u1yMB9HmtJL02abf3K6JlqS6LbkUVfI,2692
153
+ multipers/multiparameter_module_approximation/utilities.h,sha256=Ps8RzNxQ9jLZuUVoygQCvRQhWZrCl2BD3URx61v0sz8,15922
154
+ multipers/multiparameter_module_approximation/format_python-cpp.h,sha256=ouhULSLrdRDqOkL16aABlDMLJPZscxyzoSaddGz3g8U,11091
155
+ multipers/multiparameter_module_approximation/approximation.h,sha256=T7xXZD3F_1yYM_G1DLHFcBgsXGd5lu1FohxdAfdq9Ng,104680
156
+ multipers/multi_parameter_rank_invariant/rank_invariant.h,sha256=7AS8cY-1LfDRV1y2bqe7Q2ljUrj6weiGF3R8KEhwBw4,15635
157
+ multipers/multi_parameter_rank_invariant/hilbert_function.h,sha256=Q-f4iDfLbuGg6XEauLWLExpFbDsAWvpT42Yig9gX7_c,35897
158
+ multipers/multi_parameter_rank_invariant/diff_helpers.h,sha256=Yl2JlZMxRsOIxTUZhrkJrBqMrFqx7pBiD0SHLG5eqIo,3477
159
+ multipers/multi_parameter_rank_invariant/function_rips.h,sha256=wlbJYc5Cbm5xaXLLlQYRgpYzaxXoJ4_91GxgAiQcLac,14601
160
+ multipers/multi_parameter_rank_invariant/persistence_slices.h,sha256=1UVZrEi31aFjO_iMSxF1H7fs46S-U__o27PIfTqMQpU,5914
161
+ multipers/multi_parameter_rank_invariant/euler_characteristic.h,sha256=pf8BVkibsxL3QDpK02xrue_6HPPy_BTIj3SmjMSI6wU,3174
162
+ multipers/.dylibs/libc++.1.0.dylib,sha256=nCVSMhreUtd5_peSLl1zvfIOQ_PBuVwifMnfdJ3yCj4,1173408
163
+ multipers/.dylibs/libtbb.12.17.dylib,sha256=Lqj1QrlEUIfTtO0U5PadiwOgrrElWSPwlmHVsAARWag,388000
164
+ multipers/.dylibs/libboost_timer.dylib,sha256=wCohMwDwoGdj1Zbyg-FzP9yG4ATllYo7eg9EYB_y60U,76064
165
+ multipers/ml/one.py,sha256=np5jM8gywm65TsK1yeZ1BDWqP-Ym-7hz4brTXI_0imk,20119
166
+ multipers/ml/point_clouds.py,sha256=nTkSjSzQy6S10-sZ0uwBp_Fs2EIWleB7yHncK2b_xLg,13770
167
+ multipers/ml/accuracies.py,sha256=4KfH7EB6-3KjXhOcleHcCP_2OOA6mC9v7DI7MSA2PnU,2940
168
+ multipers/ml/tools.py,sha256=DOPcqmvZP2bA7M08GrwccdebwDq1HEwYdhNRGT7eZMI,3453
169
+ multipers/ml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
170
+ multipers/ml/signed_measures.py,sha256=pwV6-XAQnS5itlfGgA64qxPomBqOuqsd-ulnkoYFdto,60981
171
+ multipers/ml/sliced_wasserstein.py,sha256=jgq4ND3EWwwJBopqRvfJLsoOptiMHjS3zEAENBmPJDc,18644
172
+ multipers/ml/kernels.py,sha256=XWfvKY68-c9E-MpRzdNqGzGD6K24Aizx95TkiSeAtIY,6175
173
+ multipers/ml/invariants_with_persistable.py,sha256=HL0_IIrcJdAmCIqcyHPg0PNLle_pa2esnGQJsK2hnHc,2261
174
+ multipers/ml/mma.py,sha256=mSwYqSHWGiboEiMnxArCuhHyrOExPYdML2Mbx4dTO7s,23950
175
+ multipers/tensor/tensor.h,sha256=x2WknRJ_GzqYkBYnkJdVfjNJ197moRLFMy7oBmN1ITA,25261
176
+ multipers/data/synthetic.py,sha256=SirUGfntzQhsShuWquxHdGEJWsdnRGJpRc6l4jOEfg8,3078
177
+ multipers/data/pytorch2simplextree.py,sha256=cvOJTUleK_qEbcpygRD77GuQl_0qDsSjjD6e6UFUDD0,3048
178
+ multipers/data/shape3d.py,sha256=AE-vvjKrhKxOwMo-lurUsFqqLjIg5obo-RTbRZF_5Mk,3893
179
+ multipers/data/minimal_presentation_to_st_bf.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
180
+ multipers/data/MOL2.py,sha256=nLZHy2OSFN9Z2uJKsbqWOEG2R7G-uH6dCLHG48UjvR4,15428
181
+ multipers/data/__init__.py,sha256=TXf4bjwdTCogOhXMbpTkSxSklqJAswZfx4X_z1wcSec,25
182
+ multipers/data/UCR.py,sha256=PuT8l3i26y0goBzIESwdgJAe6YFCyDiWSoxECcP5rhs,798
183
+ multipers/data/immuno_regions.py,sha256=BNN81DOwdu6sJTkaSeziAYyx0jd0kuZZB5Se0Fo95vA,903
184
+ multipers/data/graphs.py,sha256=wef36QXuzi2EMQJi6W_sEB3JnShfSAbfylP6-2rLSUA,16346
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp312-cp312-macosx_11_0_arm64
5
+ Generator: delocate 0.13.0
6
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 David Loiseaux
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ multipers