multipers 2.3.0__cp310-cp310-win_amd64.whl → 2.3.2__cp310-cp310-win_amd64.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.

Potentially problematic release.


This version of multipers might be problematic. Click here for more details.

Files changed (54) hide show
  1. multipers/_signed_measure_meta.py +71 -65
  2. multipers/array_api/__init__.py +39 -0
  3. multipers/array_api/numpy.py +34 -0
  4. multipers/array_api/torch.py +35 -0
  5. multipers/distances.py +6 -2
  6. multipers/{ml/convolutions.py → filtrations/density.py} +67 -13
  7. multipers/filtrations/filtrations.py +76 -17
  8. multipers/function_rips.cp310-win_amd64.pyd +0 -0
  9. multipers/grids.cp310-win_amd64.pyd +0 -0
  10. multipers/grids.pyx +144 -61
  11. multipers/gudhi/Simplex_tree_multi_interface.h +36 -1
  12. multipers/gudhi/gudhi/Multi_persistence/Box.h +3 -0
  13. multipers/gudhi/gudhi/One_critical_filtration.h +18 -9
  14. multipers/gudhi/mma_interface_h0.h +1 -1
  15. multipers/gudhi/mma_interface_matrix.h +10 -1
  16. multipers/gudhi/naive_merge_tree.h +1 -1
  17. multipers/gudhi/truc.h +555 -42
  18. multipers/io.cp310-win_amd64.pyd +0 -0
  19. multipers/io.pyx +26 -93
  20. multipers/ml/mma.py +4 -4
  21. multipers/ml/point_clouds.py +2 -2
  22. multipers/ml/signed_measures.py +63 -65
  23. multipers/mma_structures.cp310-win_amd64.pyd +0 -0
  24. multipers/mma_structures.pxd +2 -1
  25. multipers/mma_structures.pyx +56 -16
  26. multipers/mma_structures.pyx.tp +14 -5
  27. multipers/multiparameter_module_approximation/approximation.h +48 -14
  28. multipers/multiparameter_module_approximation.cp310-win_amd64.pyd +0 -0
  29. multipers/multiparameter_module_approximation.pyx +27 -8
  30. multipers/plots.py +2 -1
  31. multipers/point_measure.cp310-win_amd64.pyd +0 -0
  32. multipers/point_measure.pyx +6 -2
  33. multipers/simplex_tree_multi.cp310-win_amd64.pyd +0 -0
  34. multipers/simplex_tree_multi.pxd +1 -0
  35. multipers/simplex_tree_multi.pyx +632 -146
  36. multipers/simplex_tree_multi.pyx.tp +92 -24
  37. multipers/slicer.cp310-win_amd64.pyd +0 -0
  38. multipers/slicer.pxd +779 -177
  39. multipers/slicer.pxd.tp +24 -5
  40. multipers/slicer.pyx +5657 -1427
  41. multipers/slicer.pyx.tp +211 -48
  42. multipers/tbb12.dll +0 -0
  43. multipers/tbbbind_2_5.dll +0 -0
  44. multipers/tbbmalloc.dll +0 -0
  45. multipers/tbbmalloc_proxy.dll +0 -0
  46. multipers/tensor/tensor.h +1 -1
  47. multipers/tests/__init__.py +9 -4
  48. multipers/torch/diff_grids.py +30 -7
  49. multipers/torch/rips_density.py +1 -1
  50. {multipers-2.3.0.dist-info → multipers-2.3.2.dist-info}/METADATA +4 -25
  51. {multipers-2.3.0.dist-info → multipers-2.3.2.dist-info}/RECORD +54 -51
  52. {multipers-2.3.0.dist-info → multipers-2.3.2.dist-info}/WHEEL +1 -1
  53. {multipers-2.3.0.dist-info → multipers-2.3.2.dist-info/licenses}/LICENSE +0 -0
  54. {multipers-2.3.0.dist-info → multipers-2.3.2.dist-info}/top_level.txt +0 -0
@@ -1,31 +1,10 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: multipers
3
- Version: 2.3.0
3
+ Version: 2.3.2
4
4
  Summary: Multiparameter Topological Persistence for Machine Learning
5
5
  Author-email: David Loiseaux <david.lapous@proton.me>, Hannah Schreiber <hannah.schreiber@inria.fr>
6
6
  Maintainer-email: David Loiseaux <david.lapous@proton.me>
7
- License: MIT License
8
-
9
- Copyright (c) 2023 David Loiseaux
10
-
11
- Permission is hereby granted, free of charge, to any person obtaining a copy
12
- of this software and associated documentation files (the "Software"), to deal
13
- in the Software without restriction, including without limitation the rights
14
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
- copies of the Software, and to permit persons to whom the Software is
16
- furnished to do so, subject to the following conditions:
17
-
18
- The above copyright notice and this permission notice shall be included in all
19
- copies or substantial portions of the Software.
20
-
21
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
- SOFTWARE.
28
-
7
+ License-Expression: MIT
29
8
  Project-URL: source, https://github.com/DavidLapous/multipers
30
9
  Project-URL: download, https://pypi.org/project/multipers/#files
31
10
  Project-URL: tracker, https://github.com/DavidLapous/multipers/issues
@@ -40,7 +19,6 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
40
19
  Classifier: Topic :: Scientific/Engineering :: Mathematics
41
20
  Classifier: Topic :: Scientific/Engineering :: Visualization
42
21
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
43
- Classifier: License :: OSI Approved :: MIT License
44
22
  Requires-Python: >=3.10
45
23
  Description-Content-Type: text/markdown
46
24
  License-File: LICENSE
@@ -54,6 +32,7 @@ Requires-Dist: scikit-learn
54
32
  Requires-Dist: filtration-domination
55
33
  Requires-Dist: pykeops
56
34
  Requires-Dist: pot
35
+ Dynamic: license-file
57
36
 
58
37
  # multipers : Multiparameter Persistence for Machine Learning
59
38
  [![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)
@@ -1,42 +1,45 @@
1
1
  multipers/__init__.py,sha256=y4BfbXAY2M2yZYob758IegZHwIbRgmKrph6lwe6WR6Q,733
2
- multipers/_signed_measure_meta.py,sha256=kS_AhjZrk5hMXN9me0EJy6c29LmTlufo_DnaIf0neRQ,16663
2
+ multipers/_signed_measure_meta.py,sha256=njqCQbGXH2s8F1AL4Rlawi2ceq8CBcPZXjNo3JzUvnE,17277
3
3
  multipers/_slicer_meta.py,sha256=mjIGR-B6HnQLSiMowEQ8EWQkD_IF3bBnDVzvwrZugZ4,7203
4
- multipers/distances.py,sha256=am3_SqSkGB9N59grxb_EZt-KYqqKln0WiR4Wia6N_LA,6067
4
+ multipers/distances.py,sha256=uAZj2GtUQp50OxN2qU7sl2JqsmJ74IG9j5tZapLO2Us,6220
5
5
  multipers/filtration_conversions.pxd,sha256=Je7a3F4zS1PQn6Ul1YCXgA6p39X2FouStru-XtN-aOw,10800
6
6
  multipers/filtration_conversions.pxd.tp,sha256=_9tUvZVUA7J_RUM3q7BxY48fYgDHCUA7Xhy4nBfLLs0,3309
7
7
  multipers/filtrations.pxd,sha256=08ONkZNCjs8Nme8lcD9myPz-K662sA-EDpSwzgC2_ts,9461
8
- multipers/function_rips.cp310-win_amd64.pyd,sha256=jFh3oFqBydMsvVOFcUPcgpuiydD3VFvwr52qM27UQeM,337920
8
+ multipers/function_rips.cp310-win_amd64.pyd,sha256=TSWDebUujx40LmWjvjSCbmeiXdY5kTBWzQTQVwjm8Ik,329728
9
9
  multipers/function_rips.pyx,sha256=j5NjbK3YrAv_2s8YHB1JB0k6m9NC7RQCSFlJe-w_kgE,5252
10
- multipers/grids.cp310-win_amd64.pyd,sha256=RjnFpVrmW-NliEu2GIaLD-P8nbT53_VHfWIr0g_lSNM,501248
11
- multipers/grids.pyx,sha256=uYVue79CiUK1yiL3kHI9h9lx3w1atZZx1KmWE7lYGp0,13733
12
- multipers/io.cp310-win_amd64.pyd,sha256=P-4ZAT5cXCASa-uZ0wbGmnMzrfnUABLvj-9oK-ePa-o,257536
13
- multipers/io.pyx,sha256=Hji4-sNZzYRizkyX6NmxBU1GnDP30QVoiT4rXcnE_UM,25284
14
- multipers/mma_structures.cp310-win_amd64.pyd,sha256=6MxsNYu83et0G-OA1s7xVM-mEPP6BWceirH989Sazcg,1321472
15
- multipers/mma_structures.pxd,sha256=u-t_xEsLUYwLFt1v3TzKN8AcrP1V02pQRpYDw7PLpYw,6499
16
- multipers/mma_structures.pyx,sha256=kbYSWSOSzRhswRASbnLq1YVH9oacUDwZtFOAEKmdY34,108682
17
- multipers/mma_structures.pyx.tp,sha256=mVWimmsMmZiLsq038CbRJhZ1F3LmVvna0Dqi7uu1lu8,42110
10
+ multipers/grids.cp310-win_amd64.pyd,sha256=uebNWMH62108jJi9ZnYnRM7VmGiLCIYW2QlZ9jDJqkM,480256
11
+ multipers/grids.pyx,sha256=ONN_RKkuxqwb9IaS9gd42FUGaiBLc8QWcd3L-ubZjKE,16575
12
+ multipers/io.cp310-win_amd64.pyd,sha256=S6SG7GtNlkeLswPJr_gPyLMwBublTlCIVuzoE7E9i6c,225792
13
+ multipers/io.pyx,sha256=pQBH_rSqaCZqDSxTLnhlyECP3fLbX2tR_RKJHydHm_0,22210
14
+ multipers/mma_structures.cp310-win_amd64.pyd,sha256=FmD1ST11ZUKdyUEK53bgDGCqABqvEviZtFAYLNFM6sA,1292800
15
+ multipers/mma_structures.pxd,sha256=jh1QnQRidt_VK0CK7losQi6rAl_1qG5DNuR23J42pUA,6595
16
+ multipers/mma_structures.pyx,sha256=4zNC6ePfFKMvx0MrH-FqJVouyTMciRc49oevKDnsJhI,109530
17
+ multipers/mma_structures.pyx.tp,sha256=hWuuk9USDFa8CbQVRHNjWSAdGgpkWKvSCNjTtVuSzwM,42299
18
18
  multipers/multiparameter_edge_collapse.py,sha256=MFt0eKQQSv2354omeIqOmzASYTKIMsYdxZHFZauQr8g,1229
19
- multipers/multiparameter_module_approximation.cp310-win_amd64.pyd,sha256=Sbz5oSyyVRFeCOlTxoRTWNCvQs55EvoYSmD54xp3Wqo,474112
20
- multipers/multiparameter_module_approximation.pyx,sha256=cSWQJJDlWt5gi4kzR87EvRknhHnSZfDR5Fsa6HSpUSE,8557
19
+ multipers/multiparameter_module_approximation.cp310-win_amd64.pyd,sha256=3AHYGEW6RzDO4hXjJnWYBkEh-d_tGw-0GaeDiWmgML8,452608
20
+ multipers/multiparameter_module_approximation.pyx,sha256=wp7la7Z9wBngnfw6WOVddf93mPyXf4HfNT6dKW2Z0r0,9030
21
21
  multipers/pickle.py,sha256=YYVt4iHiD16E1x5Yn_4mX6P5P8rKi56pNGjJo5IzPhc,2579
22
- multipers/plots.py,sha256=dobsXPp9vN_QYUyccPaeb6oKCrtKA-6TYFLfefQpt0M,11135
23
- multipers/point_measure.cp310-win_amd64.pyd,sha256=G_qSayRkSUXITtxIKW6On-_6oSqChlVL-u2VrgS0yI8,614400
24
- multipers/point_measure.pyx,sha256=7IjakgrAmGVv57MBb8BEHRwsSGxJgxTu_Iar6zOW2_A,11951
25
- multipers/simplex_tree_multi.cp310-win_amd64.pyd,sha256=tHrk4-d6352S2KLGumTH6LPv7aDLjsgNrARi8prK3u8,3607040
26
- multipers/simplex_tree_multi.pxd,sha256=B7beQwO_qgbxF_xK55B0ics3cW_REktm7cXY2Vl3NqY,6559
27
- multipers/simplex_tree_multi.pyx,sha256=aE_0cwylWM4fgjKjS_bvl8XUgfn4QZTnyGplUkzE9Qs,479236
28
- multipers/simplex_tree_multi.pyx.tp,sha256=W9myuZNSrVnjtKsVIHjhhDgLiqD_cOeibU34JMUwtww,86661
29
- multipers/slicer.cp310-win_amd64.pyd,sha256=mQcWQ_lBiuClPKcQvc_eWp8negrzfI6Iq7zJU3B25jk,8335360
30
- multipers/slicer.pxd,sha256=dTGofb3fcA29KhHI9SiDfvKc1ffwa6jCCFZV5aFCyU0,156678
31
- multipers/slicer.pxd.tp,sha256=gsSCeTmp3nuSF0jHC5bQu8---Zc1fJVkPKDVZwLsQqo,9371
32
- multipers/slicer.pyx,sha256=5rBwcK8lr5kYq5gPU1upSwMqiBCwsLgF3M0p9OLTQ6A,694534
33
- multipers/slicer.pyx.tp,sha256=Rxruc2ZZUXEFEU3YSkSEK56f6-HHzK3WPtIgcRfsZCI,37390
34
- multipers/tbb12.dll,sha256=jutngDNBx2TW92tVYsfuHD8Sre0oO-rh4iK2edc1SGA,337920
35
- multipers/tbbbind_2_5.dll,sha256=-ywrB_hirPeygmtj_VhROzkQcw70G94x4JTgBdkUaUQ,23040
36
- multipers/tbbmalloc.dll,sha256=4uOK-Y2zeptYOLEh1bu-Yz8htiG4gtF_agyanMJO-tA,112640
37
- multipers/tbbmalloc_proxy.dll,sha256=iWWmLmm2bxDnyPQUry1kvhkgQspLyLmIjYD-k4Z9Hk0,31232
22
+ multipers/plots.py,sha256=qE08IhzCIDBUsqbxbuxDsMf2T1SBRCSeeys2dpn7I9U,11236
23
+ multipers/point_measure.cp310-win_amd64.pyd,sha256=e_awYk9OZvqdjyXJdXTCbQy1wkZubf3dIkKHGr3gEu8,590848
24
+ multipers/point_measure.pyx,sha256=DVhal6HgCCuALSJMcHHKOW16CwDQCVTc2PpK8cGCqx8,12109
25
+ multipers/simplex_tree_multi.cp310-win_amd64.pyd,sha256=E11vBQbfEbL9t2QWDlUAX5heT1kWyODWO2Lrjc-qDgo,3575296
26
+ multipers/simplex_tree_multi.pxd,sha256=KpyDEQNPoMC2sOU9-d4LtrGXx_UVCJGxMJ1kk1AzHgU,6631
27
+ multipers/simplex_tree_multi.pyx,sha256=reHyva5AR1lOQyiCs2_jQ2XfwHtktcQ1nmY_BNmyxhk,498156
28
+ multipers/simplex_tree_multi.pyx.tp,sha256=fUTuIscfDlNjsImWU1YALVZ1Mf9OEkdl-IFKcRQqalI,89202
29
+ multipers/slicer.cp310-win_amd64.pyd,sha256=QbYPF2cZHG4_UE5ASuekPYO2qE4I1hlWZMNA15o2Mfs,11322880
30
+ multipers/slicer.pxd,sha256=bHcV5COzDcjhaVcL3bWSHivUYtdkSx4bdj24fVOe_DU,185230
31
+ multipers/slicer.pxd.tp,sha256=fLOUPtPGqiY9o1fPDyc_whBrgKLh_6HVfvl7OtE-34Y,10243
32
+ multipers/slicer.pyx,sha256=l9GfAqFy9YYpQhM-sbmMvfWMjsTVZFkUKCUYumOCe0I,894068
33
+ multipers/slicer.pyx.tp,sha256=0oSaqT6-traFiDW9R3IFRQ-u0kYle9Hum8xVzkVsa3c,44550
34
+ multipers/tbb12.dll,sha256=6AsPR4GauU53hj2xqJNM0SfLkCKCDskjy-uKeS01tCk,338944
35
+ multipers/tbbbind_2_5.dll,sha256=8TtH7JJZlCEKF0UwfyJoiyrFt9utOI_x5AFOxpP-pGw,23040
36
+ multipers/tbbmalloc.dll,sha256=1MRBYYNzNcooog8__yuLq40l7kSgZ4lkNZhDFfTWM8A,112640
37
+ multipers/tbbmalloc_proxy.dll,sha256=fcM6szEVHayvxKW8sPUTWoqEZx1_4FbWni81hbOcbi4,31232
38
38
  multipers/tensor.pxd,sha256=MSmaMU0sOP9CHLmg4dym7nOGaI1S4cOdM01TQ9flI54,417
39
39
  multipers/test.pyx,sha256=-g7WU-jKrZK8H0c-6eAPsfrApjvTKrUoswVYFu8LoV4,1798
40
+ multipers/array_api/__init__.py,sha256=mEJ-vc8t9_pvwW06Psmww7EsZntZA_SiHxzRugJ_X4A,1038
41
+ multipers/array_api/numpy.py,sha256=aXNzWLfDIv0_kFqRzYUUcpAJuM9SX3_fm73Bx18nogs,606
42
+ multipers/array_api/torch.py,sha256=w55ow_Gxht2FOvc5EksCfaceh5gMTNKixHVsAMeSZik,548
40
43
  multipers/data/MOL2.py,sha256=nLZHy2OSFN9Z2uJKsbqWOEG2R7G-uH6dCLHG48UjvR4,15428
41
44
  multipers/data/UCR.py,sha256=PuT8l3i26y0goBzIESwdgJAe6YFCyDiWSoxECcP5rhs,798
42
45
  multipers/data/__init__.py,sha256=w7uUe4LOHbdbKU4R8MNs7em65wZJN0v5ukoG1otFanQ,24
@@ -47,17 +50,18 @@ multipers/data/pytorch2simplextree.py,sha256=cvOJTUleK_qEbcpygRD77GuQl_0qDsSjjD6
47
50
  multipers/data/shape3d.py,sha256=AE-vvjKrhKxOwMo-lurUsFqqLjIg5obo-RTbRZF_5Mk,3893
48
51
  multipers/data/synthetic.py,sha256=RvLWIBE5j99kJSt-D7cnPGI3c7skD4p8_qofJbMIXM0,3078
49
52
  multipers/filtrations/__init__.py,sha256=Lg0EHe2cxT32UQAg0kr_Vpua-xPBZxGol8VIfz8UwWk,319
50
- multipers/filtrations/filtrations.py,sha256=lrMu_JrefR8F_30kyneqAzjJI1A2M3j2gJkbhFNuuHE,10891
53
+ multipers/filtrations/density.py,sha256=z_QwAi_5EdUoKXc6s7N-qWM7n6r5hWHiHeJkLPWhE-w,19818
54
+ multipers/filtrations/filtrations.py,sha256=kkaUJOznzMmgQAW__lC2q6BOuiGj85_VIRP9C3TPMJk,13037
51
55
  multipers/gudhi/Persistence_slices_interface.h,sha256=QnUeCCKi9K8CfqI3W5i3Ra1Jy2Z1IIivr3MIpnBsnYU,6562
52
56
  multipers/gudhi/Simplex_tree_interface.h,sha256=kkq8pE3jKGLY1dK7sYpb_uERHaWGurrRXfaw_ygs-mY,10217
53
- multipers/gudhi/Simplex_tree_multi_interface.h,sha256=vBS1lIfxoCEvdRTtv-3WMGRiQeZnjpMqti47f0OXyc4,23512
57
+ multipers/gudhi/Simplex_tree_multi_interface.h,sha256=7D9EqyO9dgi-VMTf-O8SR2UMQL95q_TL9ApmmN4ggFw,25484
54
58
  multipers/gudhi/cubical_to_boundary.h,sha256=ELRnPe8czj9XlGNb2fLszu7EzU6itgS2vq03eVP31aU,1955
55
59
  multipers/gudhi/mma_interface_coh.h,sha256=JljD7lVwxxywxjgbK3PU4FZhLK9XUuEXuWOPDQvURWI,8433
56
- multipers/gudhi/mma_interface_h0.h,sha256=9p82qjdfVHVeTjRgHfQRQfYOATUQQMEajxQD29TtUcE,7579
57
- multipers/gudhi/mma_interface_matrix.h,sha256=0okqiXuSJYtdgn7eQWh-OA5u1P-HF23tSVKeT-4VTW0,10672
58
- multipers/gudhi/naive_merge_tree.h,sha256=VBudnSASwXjx3aO0983GmXIBCyLbH3Yxuqk6wSHZyvo,18837
60
+ multipers/gudhi/mma_interface_h0.h,sha256=puuKUcEndfv6012bSf1r0KVIJTvcsH2FOKLYc5oLwSg,7596
61
+ multipers/gudhi/mma_interface_matrix.h,sha256=v0kqeHHXD81F8D-V7Z1ZF5MSolJSyVQYFlGPbAqqgOY,11189
62
+ multipers/gudhi/naive_merge_tree.h,sha256=iYrizGLZgCm_Dr-eNp4avfHLnXtyzlEslpzME4XPfek,18854
59
63
  multipers/gudhi/scc_io.h,sha256=KB-j1CQGbJ9VLeh5VUJN9GbhxDTwbEv0Q3pQzYLjzkY,11507
60
- multipers/gudhi/truc.h,sha256=jvD2D4tzNLp6ivGYbpUbqPqIqNrn068OI9zxW78vRNM,34835
64
+ multipers/gudhi/truc.h,sha256=x4suTh1W3Y3o1k24GYSwC3bceXoBkH1lb7mJJfy2u7E,56098
61
65
  multipers/gudhi/gudhi/Bitmap_cubical_complex.h,sha256=EdKBo5TQM8tCvap6_Lw2w-2kDOx4p10tQRXqKYcUs28,16159
62
66
  multipers/gudhi/gudhi/Bitmap_cubical_complex_base.h,sha256=62rgpvCQhAA7hpKSxRAKDO9uLZK2txxjf953kQA56eM,44544
63
67
  multipers/gudhi/gudhi/Bitmap_cubical_complex_periodic_boundary_conditions_base.h,sha256=TJTN_RWANVEl5A4NeZYAfVzwLiP474J1vl16Pn1QqJE,25829
@@ -66,7 +70,7 @@ multipers/gudhi/gudhi/Flag_complex_edge_collapser.h,sha256=DQ_wyOG3z09jX6sq_79oT
66
70
  multipers/gudhi/gudhi/Matrix.h,sha256=bxCmhdWbxATmrw36GgKkIgZZM9xkCZPz4cJNNDG8qoI,115997
67
71
  multipers/gudhi/gudhi/Multi_critical_filtration.h,sha256=RDbMBMJtccxX1EtM59bVgL7uucjUUvFZhYb23kphpV8,42589
68
72
  multipers/gudhi/gudhi/Off_reader.h,sha256=Owwc7wgQzOgq4URfA3V5c9v_8IY6ODKXeZefjFk8Kok,4871
69
- multipers/gudhi/gudhi/One_critical_filtration.h,sha256=cwNh9bC79iYdK7Qc_XcbyUZWRd_vC1qZfBT-S4g8Eqg,53325
73
+ multipers/gudhi/gudhi/One_critical_filtration.h,sha256=p7XLYfWtOqwxtoj9GnlYOQ-DuuP1O9SWp4Qz6BqMv10,53638
70
74
  multipers/gudhi/gudhi/Persistent_cohomology.h,sha256=UEy1ae9YBamWICDwA120lolIYlt14ExZjr7VFJZaCzI,30725
71
75
  multipers/gudhi/gudhi/Points_off_io.h,sha256=kdLw8d8c-zwLl-l5W7BE4lhTLr40FV4gkGo33sU-tbs,5226
72
76
  multipers/gudhi/gudhi/Simple_object_pool.h,sha256=Dc_bn6g5rCMg_wZtKNzueJPKfFh1SI-QO-HKAI_74jM,1809
@@ -88,7 +92,7 @@ multipers/gudhi/gudhi/Fields/Z2_field_operators.h,sha256=8xfZf6_yLzM8qEexfAjoj2t
88
92
  multipers/gudhi/gudhi/Fields/Zp_field.h,sha256=gy8DafW6z8m4yjLCwonBwEpMnsWprvZU7xOyscZ_Aw0,13156
89
93
  multipers/gudhi/gudhi/Fields/Zp_field_operators.h,sha256=xFVPchEYpGs5snzf5iXUUbFgXGvyrHroOd-t6fo3bgg,13506
90
94
  multipers/gudhi/gudhi/Fields/Zp_field_shared.h,sha256=XfEw_DmUKpffcoQlmCphutipzQwgIaV4DPot0dWhM9s,14032
91
- multipers/gudhi/gudhi/Multi_persistence/Box.h,sha256=Xbga3BoM51WVNJNmx57oJ-GAVtTxlIfOQI34yOuwNbA,5874
95
+ multipers/gudhi/gudhi/Multi_persistence/Box.h,sha256=yiOv7dwgWWMq8FifJNsy3GjLfdxArYWWuVHm8eWe3_c,6012
92
96
  multipers/gudhi/gudhi/Multi_persistence/Line.h,sha256=SVVebEUBf0MMxTn48iNBVf3LO7bVOuaR5UQOH0OWUHA,10149
93
97
  multipers/gudhi/gudhi/Persistence_matrix/Base_matrix.h,sha256=rTTtRJa9cu37oXsX9qPwWZkI4y5-NKuphBow1B3VtH8,32784
94
98
  multipers/gudhi/gudhi/Persistence_matrix/Base_matrix_with_column_compression.h,sha256=-i3IoKX-BGdU1LmseLGJW4K9_teUkdEuMgAJQQlLexk,29830
@@ -137,13 +141,12 @@ multipers/gudhi/gudhi/Simplex_tree/serialization_utils.h,sha256=dzQfXvRCgObVLRU0
137
141
  multipers/gudhi/gudhi/Simplex_tree/simplex_tree_options.h,sha256=h0rr_PiwPeH7GyG3qLEiluA6z1d6Qrbfo64XFM0coLE,5536
138
142
  multipers/ml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
143
  multipers/ml/accuracies.py,sha256=4KfH7EB6-3KjXhOcleHcCP_2OOA6mC9v7DI7MSA2PnU,2940
140
- multipers/ml/convolutions.py,sha256=3RQsITZOlpMq_j3v0ZozraINUTTSx9zE55kxmc4Vf-Y,17864
141
144
  multipers/ml/invariants_with_persistable.py,sha256=HL0_IIrcJdAmCIqcyHPg0PNLle_pa2esnGQJsK2hnHc,2261
142
145
  multipers/ml/kernels.py,sha256=XWfvKY68-c9E-MpRzdNqGzGD6K24Aizx95TkiSeAtIY,6175
143
- multipers/ml/mma.py,sha256=jW-kUQ7PuqWHrEhEwLGaYn64Rt2lgN45tFla0T4GGQc,23962
146
+ multipers/ml/mma.py,sha256=mSwYqSHWGiboEiMnxArCuhHyrOExPYdML2Mbx4dTO7s,23950
144
147
  multipers/ml/one.py,sha256=np5jM8gywm65TsK1yeZ1BDWqP-Ym-7hz4brTXI_0imk,20119
145
- multipers/ml/point_clouds.py,sha256=_0sqp-eFh7-GQ5cVtZwG2XDeIaavQdPB0d4L80mSyKQ,13761
146
- multipers/ml/signed_measures.py,sha256=5E9VT-XBxgFIrwyZ1jop8A1lRiBGf1pBTkE29pcvs5c,58212
148
+ multipers/ml/point_clouds.py,sha256=nTkSjSzQy6S10-sZ0uwBp_Fs2EIWleB7yHncK2b_xLg,13770
149
+ multipers/ml/signed_measures.py,sha256=MGxteZRNFvOPuNxCeJEp3iFKLLqHgfOk9EVeqM1OqIU,58131
147
150
  multipers/ml/sliced_wasserstein.py,sha256=jgq4ND3EWwwJBopqRvfJLsoOptiMHjS3zEAENBmPJDc,18644
148
151
  multipers/ml/tools.py,sha256=DOPcqmvZP2bA7M08GrwccdebwDq1HEwYdhNRGT7eZMI,3453
149
152
  multipers/multi_parameter_rank_invariant/diff_helpers.h,sha256=wMCOhAewWd6-lulLND0y8M0MZoru6zn_8J3qfXDjLds,3477
@@ -152,7 +155,7 @@ multipers/multi_parameter_rank_invariant/function_rips.h,sha256=aUox99Y4X5kRgQ-n
152
155
  multipers/multi_parameter_rank_invariant/hilbert_function.h,sha256=S_LRkNSU_bjjcPRS1pWpVHWOLMFQIAYa9dbAhwz0W8c,36412
153
156
  multipers/multi_parameter_rank_invariant/persistence_slices.h,sha256=oVMsNkn_VB5lQ_2qsKw5ydPoHnMuGbtvrIN_ga7XnGQ,5986
154
157
  multipers/multi_parameter_rank_invariant/rank_invariant.h,sha256=-W_ai4I_wkAIodU3Ubgvuc5cD_VLJzB4479EsVSynsM,16371
155
- multipers/multiparameter_module_approximation/approximation.h,sha256=8387pyT23UslzfbkpjVyfto5GH0_Nf6YTrFRHGomHm8,95391
158
+ multipers/multiparameter_module_approximation/approximation.h,sha256=WoTIj3TsTikKtLb5WzrQ3hNBPdZBbtt0VQ1rwqVIi_c,96821
156
159
  multipers/multiparameter_module_approximation/combinatory.h,sha256=Ck-VKQ56wsXCgQvIbpfTnBOweSBRm4rnChLfHf6JWlc,3605
157
160
  multipers/multiparameter_module_approximation/debug.h,sha256=yy7miaqw-Lj8u1yMB9HmtJL02abf3K6JlqS6LbkUVfI,2692
158
161
  multipers/multiparameter_module_approximation/euler_curves.h,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -170,13 +173,13 @@ multipers/multiparameter_module_approximation/vector_column.h,sha256=P4HSGc-w4kd
170
173
  multipers/multiparameter_module_approximation/vector_matrix.h,sha256=0-iIA-Xk_Bz2kBYXM3-SgBzyM0QQ7RqV1WgTbGe-qXM,10378
171
174
  multipers/multiparameter_module_approximation/vineyards.h,sha256=6wN_k4CFO1BCVoT8Cc60Wi__v4C2bvFec7rpq-GPb4w,14694
172
175
  multipers/multiparameter_module_approximation/vineyards_trajectories.h,sha256=ZZ4E0gmmuHNyUD_rKioISrlWhHNLW_dhlsCWGvzHW2o,25292
173
- multipers/tensor/tensor.h,sha256=2uJcyDUEqimrjOFhZbz0XfJ2doC4uAZwV2PtXGljUZY,25244
174
- multipers/tests/__init__.py,sha256=19BXYlQxgBzj7OpMP6v6JYNZZi2y9afvD1Wvodwcb1E,1656
176
+ multipers/tensor/tensor.h,sha256=x2WknRJ_GzqYkBYnkJdVfjNJ197moRLFMy7oBmN1ITA,25261
177
+ multipers/tests/__init__.py,sha256=-7Fj-zFAfBJv18trg0CPglQTmYu_ehySZGqtJzPlN8U,1909
175
178
  multipers/torch/__init__.py,sha256=OLxIiZ389uCqehpUxBPUI_x1SYu531onc4tiTscAuIw,27
176
- multipers/torch/diff_grids.py,sha256=8d0UhiWeMrb471nMKkwrRgGQO_u2kCtRjYYn5I-BFkQ,6745
177
- multipers/torch/rips_density.py,sha256=X2H41UlDZ2b88ekZa-Gsuz0sXXt-Jge7y0DFw0vv4TY,11702
178
- multipers-2.3.0.dist-info/LICENSE,sha256=UsQRnvlo_9wpQS9DNt52GEraERHwK2GIRwuqr2Yv5JI,1071
179
- multipers-2.3.0.dist-info/METADATA,sha256=Te8v5zlQNh69GWCNHNodJzp_Kiaa_0U0D_wwB6KyQXM,10945
180
- multipers-2.3.0.dist-info/WHEEL,sha256=rzGfZgUcGeKSgIHGYMuqg4xE4VPHxnaldXH6BG0zjVk,101
181
- multipers-2.3.0.dist-info/top_level.txt,sha256=L9e0AGmhRzrNw9FpuUx-zlqi5NcBOmrI9wYY8kYWr8A,10
182
- multipers-2.3.0.dist-info/RECORD,,
179
+ multipers/torch/diff_grids.py,sha256=2YK-c351tBpj8sfzjf26fbE1l0xlWse7oVVfDHD3zwM,7492
180
+ multipers/torch/rips_density.py,sha256=H-kmSzY8hXhmVn15Oltc71DHs1IUHg5oPRgNyWW8L4Q,11706
181
+ multipers-2.3.2.dist-info/licenses/LICENSE,sha256=UsQRnvlo_9wpQS9DNt52GEraERHwK2GIRwuqr2Yv5JI,1071
182
+ multipers-2.3.2.dist-info/METADATA,sha256=mnYnepTC_P_J1PoIYU7rSkfEnylYH1O02xdXlOrz0QM,9670
183
+ multipers-2.3.2.dist-info/WHEEL,sha256=d0clRNJVaR7HXdCKNsk2VLvFV9HQ7R7Q1JcMhuI_WV0,101
184
+ multipers-2.3.2.dist-info/top_level.txt,sha256=L9e0AGmhRzrNw9FpuUx-zlqi5NcBOmrI9wYY8kYWr8A,10
185
+ multipers-2.3.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (80.8.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp310-cp310-win_amd64
5
5