multipers 2.3.3b5__cp310-cp310-win_amd64.whl → 2.3.3b7__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.
- multipers/_signed_measure_meta.py +4 -7
- multipers/array_api/__init__.py +18 -1
- multipers/array_api/numpy.py +68 -0
- multipers/array_api/torch.py +80 -0
- multipers/filtrations/density.py +11 -52
- multipers/filtrations/filtrations.py +19 -6
- multipers/function_rips.cp310-win_amd64.pyd +0 -0
- multipers/grids.cp310-win_amd64.pyd +0 -0
- multipers/grids.pyx +73 -32
- multipers/io.cp310-win_amd64.pyd +0 -0
- multipers/ml/signed_measures.py +105 -27
- multipers/mma_structures.cp310-win_amd64.pyd +0 -0
- multipers/mma_structures.pyx +2 -2
- multipers/mma_structures.pyx.tp +1 -1
- multipers/multiparameter_module_approximation.cp310-win_amd64.pyd +0 -0
- multipers/plots.py +12 -6
- multipers/point_measure.cp310-win_amd64.pyd +0 -0
- multipers/simplex_tree_multi.cp310-win_amd64.pyd +0 -0
- multipers/simplex_tree_multi.pyx +24 -8
- multipers/simplex_tree_multi.pyx.tp +3 -1
- multipers/slicer.cp310-win_amd64.pyd +0 -0
- multipers/slicer.pxd +20 -20
- multipers/slicer.pyx +41 -40
- multipers/slicer.pyx.tp +2 -1
- multipers/tbb12.dll +0 -0
- multipers/tbbbind_2_5.dll +0 -0
- multipers/tbbmalloc.dll +0 -0
- multipers/tbbmalloc_proxy.dll +0 -0
- {multipers-2.3.3b5.dist-info → multipers-2.3.3b7.dist-info}/METADATA +1 -1
- {multipers-2.3.3b5.dist-info → multipers-2.3.3b7.dist-info}/RECORD +33 -33
- {multipers-2.3.3b5.dist-info → multipers-2.3.3b7.dist-info}/WHEEL +0 -0
- {multipers-2.3.3b5.dist-info → multipers-2.3.3b7.dist-info}/licenses/LICENSE +0 -0
- {multipers-2.3.3b5.dist-info → multipers-2.3.3b7.dist-info}/top_level.txt +0 -0
multipers/slicer.pyx
CHANGED
|
@@ -549,7 +549,7 @@ cdef class _KSlicer_Matrix0_vine_i32:
|
|
|
549
549
|
filtration_array = np.asarray(filtration_array, dtype= np.int32)
|
|
550
550
|
cdef int32_t[:,:] arr_view = filtration_array
|
|
551
551
|
cdef int size = arr_view.shape[0]
|
|
552
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
552
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
553
553
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
554
554
|
|
|
555
555
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -1040,7 +1040,7 @@ cdef class _KSlicer_Matrix1_vine_i32:
|
|
|
1040
1040
|
filtration_array = np.asarray(filtration_array, dtype= np.int32)
|
|
1041
1041
|
cdef int32_t[:,:] arr_view = filtration_array
|
|
1042
1042
|
cdef int size = arr_view.shape[0]
|
|
1043
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
1043
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
1044
1044
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
1045
1045
|
|
|
1046
1046
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -1531,7 +1531,7 @@ cdef class _KSlicer_Matrix0_vine_i64:
|
|
|
1531
1531
|
filtration_array = np.asarray(filtration_array, dtype= np.int64)
|
|
1532
1532
|
cdef int64_t[:,:] arr_view = filtration_array
|
|
1533
1533
|
cdef int size = arr_view.shape[0]
|
|
1534
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
1534
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
1535
1535
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
1536
1536
|
|
|
1537
1537
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -2022,7 +2022,7 @@ cdef class _KSlicer_Matrix1_vine_i64:
|
|
|
2022
2022
|
filtration_array = np.asarray(filtration_array, dtype= np.int64)
|
|
2023
2023
|
cdef int64_t[:,:] arr_view = filtration_array
|
|
2024
2024
|
cdef int size = arr_view.shape[0]
|
|
2025
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
2025
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
2026
2026
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
2027
2027
|
|
|
2028
2028
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -2514,7 +2514,7 @@ cdef class _KSlicer_Matrix0_vine_f32:
|
|
|
2514
2514
|
filtration_array = np.asarray(filtration_array, dtype= np.float32)
|
|
2515
2515
|
cdef float[:,:] arr_view = filtration_array
|
|
2516
2516
|
cdef int size = arr_view.shape[0]
|
|
2517
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
2517
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
2518
2518
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
2519
2519
|
|
|
2520
2520
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -3006,7 +3006,7 @@ cdef class _KSlicer_Matrix1_vine_f32:
|
|
|
3006
3006
|
filtration_array = np.asarray(filtration_array, dtype= np.float32)
|
|
3007
3007
|
cdef float[:,:] arr_view = filtration_array
|
|
3008
3008
|
cdef int size = arr_view.shape[0]
|
|
3009
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
3009
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
3010
3010
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
3011
3011
|
|
|
3012
3012
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -3498,7 +3498,7 @@ cdef class _KSlicer_Matrix0_vine_f64:
|
|
|
3498
3498
|
filtration_array = np.asarray(filtration_array, dtype= np.float64)
|
|
3499
3499
|
cdef double[:,:] arr_view = filtration_array
|
|
3500
3500
|
cdef int size = arr_view.shape[0]
|
|
3501
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
3501
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
3502
3502
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
3503
3503
|
|
|
3504
3504
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -3990,7 +3990,7 @@ cdef class _KSlicer_Matrix1_vine_f64:
|
|
|
3990
3990
|
filtration_array = np.asarray(filtration_array, dtype= np.float64)
|
|
3991
3991
|
cdef double[:,:] arr_view = filtration_array
|
|
3992
3992
|
cdef int size = arr_view.shape[0]
|
|
3993
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
3993
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
3994
3994
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
3995
3995
|
|
|
3996
3996
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -4472,7 +4472,7 @@ cdef class _Slicer_Matrix0_vine_i32:
|
|
|
4472
4472
|
filtration_array = np.asarray(filtration_array, dtype= np.int32)
|
|
4473
4473
|
cdef int32_t[:,:] arr_view = filtration_array
|
|
4474
4474
|
cdef int size = arr_view.shape[0]
|
|
4475
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
4475
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
4476
4476
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
4477
4477
|
|
|
4478
4478
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -4976,7 +4976,7 @@ cdef class _Slicer_Matrix1_vine_i32:
|
|
|
4976
4976
|
filtration_array = np.asarray(filtration_array, dtype= np.int32)
|
|
4977
4977
|
cdef int32_t[:,:] arr_view = filtration_array
|
|
4978
4978
|
cdef int size = arr_view.shape[0]
|
|
4979
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
4979
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
4980
4980
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
4981
4981
|
|
|
4982
4982
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -5480,7 +5480,7 @@ cdef class _Slicer_Matrix0_vine_i64:
|
|
|
5480
5480
|
filtration_array = np.asarray(filtration_array, dtype= np.int64)
|
|
5481
5481
|
cdef int64_t[:,:] arr_view = filtration_array
|
|
5482
5482
|
cdef int size = arr_view.shape[0]
|
|
5483
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
5483
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
5484
5484
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
5485
5485
|
|
|
5486
5486
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -5984,7 +5984,7 @@ cdef class _Slicer_Matrix1_vine_i64:
|
|
|
5984
5984
|
filtration_array = np.asarray(filtration_array, dtype= np.int64)
|
|
5985
5985
|
cdef int64_t[:,:] arr_view = filtration_array
|
|
5986
5986
|
cdef int size = arr_view.shape[0]
|
|
5987
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
5987
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
5988
5988
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
5989
5989
|
|
|
5990
5990
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -6489,7 +6489,7 @@ cdef class _Slicer_Matrix0_vine_f32:
|
|
|
6489
6489
|
filtration_array = np.asarray(filtration_array, dtype= np.float32)
|
|
6490
6490
|
cdef float[:,:] arr_view = filtration_array
|
|
6491
6491
|
cdef int size = arr_view.shape[0]
|
|
6492
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
6492
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
6493
6493
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
6494
6494
|
|
|
6495
6495
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -6994,7 +6994,7 @@ cdef class _Slicer_Matrix1_vine_f32:
|
|
|
6994
6994
|
filtration_array = np.asarray(filtration_array, dtype= np.float32)
|
|
6995
6995
|
cdef float[:,:] arr_view = filtration_array
|
|
6996
6996
|
cdef int size = arr_view.shape[0]
|
|
6997
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
6997
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
6998
6998
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
6999
6999
|
|
|
7000
7000
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -7499,7 +7499,7 @@ cdef class _Slicer_Matrix0_vine_f64:
|
|
|
7499
7499
|
filtration_array = np.asarray(filtration_array, dtype= np.float64)
|
|
7500
7500
|
cdef double[:,:] arr_view = filtration_array
|
|
7501
7501
|
cdef int size = arr_view.shape[0]
|
|
7502
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
7502
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
7503
7503
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
7504
7504
|
|
|
7505
7505
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -8004,7 +8004,7 @@ cdef class _Slicer_Matrix1_vine_f64:
|
|
|
8004
8004
|
filtration_array = np.asarray(filtration_array, dtype= np.float64)
|
|
8005
8005
|
cdef double[:,:] arr_view = filtration_array
|
|
8006
8006
|
cdef int size = arr_view.shape[0]
|
|
8007
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
8007
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
8008
8008
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
8009
8009
|
|
|
8010
8010
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -8517,7 +8517,7 @@ cdef class _KSlicer_Matrix0_i32:
|
|
|
8517
8517
|
filtration_array = np.asarray(filtration_array, dtype= np.int32)
|
|
8518
8518
|
cdef int32_t[:,:] arr_view = filtration_array
|
|
8519
8519
|
cdef int size = arr_view.shape[0]
|
|
8520
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
8520
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
8521
8521
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
8522
8522
|
|
|
8523
8523
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -8990,7 +8990,7 @@ cdef class _KSlicer_Matrix1_i32:
|
|
|
8990
8990
|
filtration_array = np.asarray(filtration_array, dtype= np.int32)
|
|
8991
8991
|
cdef int32_t[:,:] arr_view = filtration_array
|
|
8992
8992
|
cdef int size = arr_view.shape[0]
|
|
8993
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
8993
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
8994
8994
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
8995
8995
|
|
|
8996
8996
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -9463,7 +9463,7 @@ cdef class _KSlicer_Matrix0_i64:
|
|
|
9463
9463
|
filtration_array = np.asarray(filtration_array, dtype= np.int64)
|
|
9464
9464
|
cdef int64_t[:,:] arr_view = filtration_array
|
|
9465
9465
|
cdef int size = arr_view.shape[0]
|
|
9466
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
9466
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
9467
9467
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
9468
9468
|
|
|
9469
9469
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -9936,7 +9936,7 @@ cdef class _KSlicer_Matrix1_i64:
|
|
|
9936
9936
|
filtration_array = np.asarray(filtration_array, dtype= np.int64)
|
|
9937
9937
|
cdef int64_t[:,:] arr_view = filtration_array
|
|
9938
9938
|
cdef int size = arr_view.shape[0]
|
|
9939
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
9939
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
9940
9940
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
9941
9941
|
|
|
9942
9942
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -10410,7 +10410,7 @@ cdef class _KSlicer_Matrix0_f32:
|
|
|
10410
10410
|
filtration_array = np.asarray(filtration_array, dtype= np.float32)
|
|
10411
10411
|
cdef float[:,:] arr_view = filtration_array
|
|
10412
10412
|
cdef int size = arr_view.shape[0]
|
|
10413
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
10413
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
10414
10414
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
10415
10415
|
|
|
10416
10416
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -10884,7 +10884,7 @@ cdef class _KSlicer_Matrix1_f32:
|
|
|
10884
10884
|
filtration_array = np.asarray(filtration_array, dtype= np.float32)
|
|
10885
10885
|
cdef float[:,:] arr_view = filtration_array
|
|
10886
10886
|
cdef int size = arr_view.shape[0]
|
|
10887
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
10887
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
10888
10888
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
10889
10889
|
|
|
10890
10890
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -11358,7 +11358,7 @@ cdef class _KSlicer_Matrix0_f64:
|
|
|
11358
11358
|
filtration_array = np.asarray(filtration_array, dtype= np.float64)
|
|
11359
11359
|
cdef double[:,:] arr_view = filtration_array
|
|
11360
11360
|
cdef int size = arr_view.shape[0]
|
|
11361
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
11361
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
11362
11362
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
11363
11363
|
|
|
11364
11364
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -11832,7 +11832,7 @@ cdef class _KSlicer_Matrix1_f64:
|
|
|
11832
11832
|
filtration_array = np.asarray(filtration_array, dtype= np.float64)
|
|
11833
11833
|
cdef double[:,:] arr_view = filtration_array
|
|
11834
11834
|
cdef int size = arr_view.shape[0]
|
|
11835
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
11835
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
11836
11836
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
11837
11837
|
|
|
11838
11838
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -12296,7 +12296,7 @@ cdef class _Slicer_Matrix0_i32:
|
|
|
12296
12296
|
filtration_array = np.asarray(filtration_array, dtype= np.int32)
|
|
12297
12297
|
cdef int32_t[:,:] arr_view = filtration_array
|
|
12298
12298
|
cdef int size = arr_view.shape[0]
|
|
12299
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
12299
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
12300
12300
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
12301
12301
|
|
|
12302
12302
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -12782,7 +12782,7 @@ cdef class _Slicer_Matrix1_i32:
|
|
|
12782
12782
|
filtration_array = np.asarray(filtration_array, dtype= np.int32)
|
|
12783
12783
|
cdef int32_t[:,:] arr_view = filtration_array
|
|
12784
12784
|
cdef int size = arr_view.shape[0]
|
|
12785
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
12785
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
12786
12786
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
12787
12787
|
|
|
12788
12788
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -13268,7 +13268,7 @@ cdef class _Slicer_Matrix0_i64:
|
|
|
13268
13268
|
filtration_array = np.asarray(filtration_array, dtype= np.int64)
|
|
13269
13269
|
cdef int64_t[:,:] arr_view = filtration_array
|
|
13270
13270
|
cdef int size = arr_view.shape[0]
|
|
13271
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
13271
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
13272
13272
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
13273
13273
|
|
|
13274
13274
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -13754,7 +13754,7 @@ cdef class _Slicer_Matrix1_i64:
|
|
|
13754
13754
|
filtration_array = np.asarray(filtration_array, dtype= np.int64)
|
|
13755
13755
|
cdef int64_t[:,:] arr_view = filtration_array
|
|
13756
13756
|
cdef int size = arr_view.shape[0]
|
|
13757
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
13757
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
13758
13758
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
13759
13759
|
|
|
13760
13760
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -14241,7 +14241,7 @@ cdef class _Slicer_Matrix0_f32:
|
|
|
14241
14241
|
filtration_array = np.asarray(filtration_array, dtype= np.float32)
|
|
14242
14242
|
cdef float[:,:] arr_view = filtration_array
|
|
14243
14243
|
cdef int size = arr_view.shape[0]
|
|
14244
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
14244
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
14245
14245
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
14246
14246
|
|
|
14247
14247
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -14728,7 +14728,7 @@ cdef class _Slicer_Matrix1_f32:
|
|
|
14728
14728
|
filtration_array = np.asarray(filtration_array, dtype= np.float32)
|
|
14729
14729
|
cdef float[:,:] arr_view = filtration_array
|
|
14730
14730
|
cdef int size = arr_view.shape[0]
|
|
14731
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
14731
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
14732
14732
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
14733
14733
|
|
|
14734
14734
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -15215,7 +15215,7 @@ cdef class _Slicer_Matrix0_f64:
|
|
|
15215
15215
|
filtration_array = np.asarray(filtration_array, dtype= np.float64)
|
|
15216
15216
|
cdef double[:,:] arr_view = filtration_array
|
|
15217
15217
|
cdef int size = arr_view.shape[0]
|
|
15218
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
15218
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
15219
15219
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
15220
15220
|
|
|
15221
15221
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -15702,7 +15702,7 @@ cdef class _Slicer_Matrix1_f64:
|
|
|
15702
15702
|
filtration_array = np.asarray(filtration_array, dtype= np.float64)
|
|
15703
15703
|
cdef double[:,:] arr_view = filtration_array
|
|
15704
15704
|
cdef int size = arr_view.shape[0]
|
|
15705
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
15705
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
15706
15706
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
15707
15707
|
|
|
15708
15708
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -16197,7 +16197,7 @@ cdef class _KSlicer_GudhiCohomology0_i32:
|
|
|
16197
16197
|
filtration_array = np.asarray(filtration_array, dtype= np.int32)
|
|
16198
16198
|
cdef int32_t[:,:] arr_view = filtration_array
|
|
16199
16199
|
cdef int size = arr_view.shape[0]
|
|
16200
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
16200
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
16201
16201
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
16202
16202
|
|
|
16203
16203
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -16670,7 +16670,7 @@ cdef class _KSlicer_GudhiCohomology0_i64:
|
|
|
16670
16670
|
filtration_array = np.asarray(filtration_array, dtype= np.int64)
|
|
16671
16671
|
cdef int64_t[:,:] arr_view = filtration_array
|
|
16672
16672
|
cdef int size = arr_view.shape[0]
|
|
16673
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
16673
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
16674
16674
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
16675
16675
|
|
|
16676
16676
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -17144,7 +17144,7 @@ cdef class _KSlicer_GudhiCohomology0_f32:
|
|
|
17144
17144
|
filtration_array = np.asarray(filtration_array, dtype= np.float32)
|
|
17145
17145
|
cdef float[:,:] arr_view = filtration_array
|
|
17146
17146
|
cdef int size = arr_view.shape[0]
|
|
17147
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
17147
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
17148
17148
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
17149
17149
|
|
|
17150
17150
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -17618,7 +17618,7 @@ cdef class _KSlicer_GudhiCohomology0_f64:
|
|
|
17618
17618
|
filtration_array = np.asarray(filtration_array, dtype= np.float64)
|
|
17619
17619
|
cdef double[:,:] arr_view = filtration_array
|
|
17620
17620
|
cdef int size = arr_view.shape[0]
|
|
17621
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
17621
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
17622
17622
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
17623
17623
|
|
|
17624
17624
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -18082,7 +18082,7 @@ cdef class _Slicer_GudhiCohomology0_i32:
|
|
|
18082
18082
|
filtration_array = np.asarray(filtration_array, dtype= np.int32)
|
|
18083
18083
|
cdef int32_t[:,:] arr_view = filtration_array
|
|
18084
18084
|
cdef int size = arr_view.shape[0]
|
|
18085
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
18085
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
18086
18086
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
18087
18087
|
|
|
18088
18088
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -18568,7 +18568,7 @@ cdef class _Slicer_GudhiCohomology0_i64:
|
|
|
18568
18568
|
filtration_array = np.asarray(filtration_array, dtype= np.int64)
|
|
18569
18569
|
cdef int64_t[:,:] arr_view = filtration_array
|
|
18570
18570
|
cdef int size = arr_view.shape[0]
|
|
18571
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
18571
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
18572
18572
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
18573
18573
|
|
|
18574
18574
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -19055,7 +19055,7 @@ cdef class _Slicer_GudhiCohomology0_f32:
|
|
|
19055
19055
|
filtration_array = np.asarray(filtration_array, dtype= np.float32)
|
|
19056
19056
|
cdef float[:,:] arr_view = filtration_array
|
|
19057
19057
|
cdef int size = arr_view.shape[0]
|
|
19058
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
19058
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
19059
19059
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
19060
19060
|
|
|
19061
19061
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -19542,7 +19542,7 @@ cdef class _Slicer_GudhiCohomology0_f64:
|
|
|
19542
19542
|
filtration_array = np.asarray(filtration_array, dtype= np.float64)
|
|
19543
19543
|
cdef double[:,:] arr_view = filtration_array
|
|
19544
19544
|
cdef int size = arr_view.shape[0]
|
|
19545
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
19545
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
19546
19546
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
19547
19547
|
|
|
19548
19548
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -20067,6 +20067,7 @@ def from_function_delaunay(
|
|
|
20067
20067
|
function_delaunay_presentation_to_slicer(s, points, grades, degree=degree, verbose=verbose,clear=clear)
|
|
20068
20068
|
if degree >= 0:
|
|
20069
20069
|
s.minpres_degree = degree
|
|
20070
|
+
# s = s.minpres(degree=degree, force=True)
|
|
20070
20071
|
return s
|
|
20071
20072
|
|
|
20072
20073
|
def slicer2blocks(slicer, int degree = -1, bool reverse=True):
|
multipers/slicer.pyx.tp
CHANGED
|
@@ -342,7 +342,7 @@ cdef class {{D['PYTHON_TYPE']}}:
|
|
|
342
342
|
filtration_array = np.asarray(filtration_array, dtype= {{D['PY_VALUE_TYPE']}})
|
|
343
343
|
cdef {{D['C_VALUE_TYPE']}}[:,:] arr_view = filtration_array
|
|
344
344
|
cdef int size = arr_view.shape[0]
|
|
345
|
-
if arr_view.shape[1] != self.truc.num_generators():
|
|
345
|
+
if <int>arr_view.shape[1] != <int>self.truc.num_generators():
|
|
346
346
|
raise ValueError(f"Got filtration array of shape {filtration_array.shape=} / {arr_view.shape=}. Was expecting (-1, {len(self)=})")
|
|
347
347
|
|
|
348
348
|
return tuple(tuple(np.array(bc_idx_degree, dtype=int) for bc_idx_degree in bc_idx) for bc_idx in self.truc.custom_persistences(&arr_view[0,0], size, ignore_inf))
|
|
@@ -785,6 +785,7 @@ def from_function_delaunay(
|
|
|
785
785
|
function_delaunay_presentation_to_slicer(s, points, grades, degree=degree, verbose=verbose,clear=clear)
|
|
786
786
|
if degree >= 0:
|
|
787
787
|
s.minpres_degree = degree
|
|
788
|
+
# s = s.minpres(degree=degree, force=True)
|
|
788
789
|
return s
|
|
789
790
|
|
|
790
791
|
def slicer2blocks(slicer, int degree = -1, bool reverse=True):
|
multipers/tbb12.dll
CHANGED
|
Binary file
|
multipers/tbbbind_2_5.dll
CHANGED
|
Binary file
|
multipers/tbbmalloc.dll
CHANGED
|
Binary file
|
multipers/tbbmalloc_proxy.dll
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: multipers
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.3b7
|
|
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>
|
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
multipers/__init__.py,sha256=y4BfbXAY2M2yZYob758IegZHwIbRgmKrph6lwe6WR6Q,733
|
|
2
|
-
multipers/_signed_measure_meta.py,sha256=
|
|
2
|
+
multipers/_signed_measure_meta.py,sha256=YgGhy6miY2sagJMzV8JAfos-aoR4JV6F7RUNjpmT3nU,17676
|
|
3
3
|
multipers/_slicer_meta.py,sha256=mjIGR-B6HnQLSiMowEQ8EWQkD_IF3bBnDVzvwrZugZ4,7203
|
|
4
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=
|
|
8
|
+
multipers/function_rips.cp310-win_amd64.pyd,sha256=O8pqsGzOR7BQAQdi7jr4VjfkCAVVIMtU1WTjuf8ZKTs,329728
|
|
9
9
|
multipers/function_rips.pyx,sha256=j5NjbK3YrAv_2s8YHB1JB0k6m9NC7RQCSFlJe-w_kgE,5252
|
|
10
|
-
multipers/grids.cp310-win_amd64.pyd,sha256=
|
|
11
|
-
multipers/grids.pyx,sha256=
|
|
12
|
-
multipers/io.cp310-win_amd64.pyd,sha256=
|
|
10
|
+
multipers/grids.cp310-win_amd64.pyd,sha256=sP4bLq0BIiL6FFrhqMxsNr5EfnTfQHlrD75FUDi2Qj0,468992
|
|
11
|
+
multipers/grids.pyx,sha256=4329-4IwlvZKEsmVXrG91kNl1pi-q5RzSrl8EHo2EKk,17981
|
|
12
|
+
multipers/io.cp310-win_amd64.pyd,sha256=wzi4Ie9Kjkgr5Y9qnM769lnq0V8ubO0n1R6EhKJtDKs,223232
|
|
13
13
|
multipers/io.pyx,sha256=pQBH_rSqaCZqDSxTLnhlyECP3fLbX2tR_RKJHydHm_0,22210
|
|
14
|
-
multipers/mma_structures.cp310-win_amd64.pyd,sha256=
|
|
14
|
+
multipers/mma_structures.cp310-win_amd64.pyd,sha256=Io7ZZxb0aKX6sqdMsIoiaqZPh2sCxDOtMDZinfKzajM,1324544
|
|
15
15
|
multipers/mma_structures.pxd,sha256=jh1QnQRidt_VK0CK7losQi6rAl_1qG5DNuR23J42pUA,6595
|
|
16
|
-
multipers/mma_structures.pyx,sha256=
|
|
17
|
-
multipers/mma_structures.pyx.tp,sha256=
|
|
16
|
+
multipers/mma_structures.pyx,sha256=1FQ_sqkpHHkCyCLLKkR9lUgZKDZFt-YgjnDd8NGmw6Q,109526
|
|
17
|
+
multipers/mma_structures.pyx.tp,sha256=QLo4ZZDnFuWNot771jYkYHc9ZQq6CJIpkRkeRwGi7XA,42297
|
|
18
18
|
multipers/multiparameter_edge_collapse.py,sha256=MFt0eKQQSv2354omeIqOmzASYTKIMsYdxZHFZauQr8g,1229
|
|
19
|
-
multipers/multiparameter_module_approximation.cp310-win_amd64.pyd,sha256
|
|
19
|
+
multipers/multiparameter_module_approximation.cp310-win_amd64.pyd,sha256=zZQK9ztDE_T0K6xww7lE7yCCcZfvx2bcWP_Upsq-b30,447488
|
|
20
20
|
multipers/multiparameter_module_approximation.pyx,sha256=wp7la7Z9wBngnfw6WOVddf93mPyXf4HfNT6dKW2Z0r0,9030
|
|
21
21
|
multipers/pickle.py,sha256=YYVt4iHiD16E1x5Yn_4mX6P5P8rKi56pNGjJo5IzPhc,2579
|
|
22
|
-
multipers/plots.py,sha256=
|
|
23
|
-
multipers/point_measure.cp310-win_amd64.pyd,sha256=
|
|
22
|
+
multipers/plots.py,sha256=ZJmOD5fgy0y_U-rjhR6pZ2WD8HFndpKMh5IKlU62QkI,14918
|
|
23
|
+
multipers/point_measure.cp310-win_amd64.pyd,sha256=Y4se-MjjLgOCSim4MA8RefOhDWS_UWhaI53Py3SrxWE,620544
|
|
24
24
|
multipers/point_measure.pyx,sha256=ovpyvjMdOPBOK_0TT0VoK4b2t8m5InFdKmRBB6biTts,14077
|
|
25
|
-
multipers/simplex_tree_multi.cp310-win_amd64.pyd,sha256=
|
|
25
|
+
multipers/simplex_tree_multi.cp310-win_amd64.pyd,sha256=xa_8IXOvwuYb4jOPxLuchO35_Bddm1YbTf5z3bqCxXM,3756544
|
|
26
26
|
multipers/simplex_tree_multi.pxd,sha256=KpyDEQNPoMC2sOU9-d4LtrGXx_UVCJGxMJ1kk1AzHgU,6631
|
|
27
|
-
multipers/simplex_tree_multi.pyx,sha256=
|
|
28
|
-
multipers/simplex_tree_multi.pyx.tp,sha256=
|
|
29
|
-
multipers/slicer.cp310-win_amd64.pyd,sha256=
|
|
30
|
-
multipers/slicer.pxd,sha256=
|
|
27
|
+
multipers/simplex_tree_multi.pyx,sha256=13x2WFMExcukd_2CrLOJa3Edex3WNqaSSrGBmPhYoDM,499100
|
|
28
|
+
multipers/simplex_tree_multi.pyx.tp,sha256=YFzVUJPWNOOpRiyOgaYlFR_DJ_57rAQLsOp2W0l71_s,89318
|
|
29
|
+
multipers/slicer.cp310-win_amd64.pyd,sha256=OdgrxgeWs6fNRHV7KwUkev94jYZ206_2MEUP0e_NptU,11617792
|
|
30
|
+
multipers/slicer.pxd,sha256=bHcV5COzDcjhaVcL3bWSHivUYtdkSx4bdj24fVOe_DU,185230
|
|
31
31
|
multipers/slicer.pxd.tp,sha256=fLOUPtPGqiY9o1fPDyc_whBrgKLh_6HVfvl7OtE-34Y,10243
|
|
32
|
-
multipers/slicer.pyx,sha256=
|
|
33
|
-
multipers/slicer.pyx.tp,sha256=
|
|
34
|
-
multipers/tbb12.dll,sha256=
|
|
35
|
-
multipers/tbbbind_2_5.dll,sha256=
|
|
36
|
-
multipers/tbbmalloc.dll,sha256=
|
|
37
|
-
multipers/tbbmalloc_proxy.dll,sha256=
|
|
32
|
+
multipers/slicer.pyx,sha256=fQ0zZwgwWZPXWw_rKvMCwbHXw2RQTJFSLkxiEHrrzVE,894493
|
|
33
|
+
multipers/slicer.pyx.tp,sha256=GCL7xUZccfmnIoY4bk05L5ODkSNzEzXgodp0VkH-xT8,44584
|
|
34
|
+
multipers/tbb12.dll,sha256=flSoIAkNVECA5vNkh5jLn1jcZNxTw3yb2tuTtxn6oEE,344576
|
|
35
|
+
multipers/tbbbind_2_5.dll,sha256=4JWlgl4aJJ3m5NIE85AgQi46REU3UkIJwNsKnh9aK_c,23552
|
|
36
|
+
multipers/tbbmalloc.dll,sha256=r9y_3nR6Rpc68g1F7Oci8EpunjWIJQU-zjLIVXc9SDY,113664
|
|
37
|
+
multipers/tbbmalloc_proxy.dll,sha256=5vcuiOpM9KTAY7daWxCsAc2MU_l8K3TWpw0kz-Xh0sk,30720
|
|
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=
|
|
41
|
-
multipers/array_api/numpy.py,sha256=
|
|
42
|
-
multipers/array_api/torch.py,sha256=
|
|
40
|
+
multipers/array_api/__init__.py,sha256=jyvi7Gzd7Si_imgaodz80fcA-68MikAGk8g79_vj6yo,1545
|
|
41
|
+
multipers/array_api/numpy.py,sha256=HZHJitXSb2Y3f-JNg47afmYoExgqT6dOx7sfcM9vvaA,2324
|
|
42
|
+
multipers/array_api/torch.py,sha256=7PKiSgA4TCaTspsC7wiMXUtHgSiTfSFyNtuMYU31xNo,2550
|
|
43
43
|
multipers/data/MOL2.py,sha256=nLZHy2OSFN9Z2uJKsbqWOEG2R7G-uH6dCLHG48UjvR4,15428
|
|
44
44
|
multipers/data/UCR.py,sha256=PuT8l3i26y0goBzIESwdgJAe6YFCyDiWSoxECcP5rhs,798
|
|
45
45
|
multipers/data/__init__.py,sha256=w7uUe4LOHbdbKU4R8MNs7em65wZJN0v5ukoG1otFanQ,24
|
|
@@ -50,8 +50,8 @@ multipers/data/pytorch2simplextree.py,sha256=cvOJTUleK_qEbcpygRD77GuQl_0qDsSjjD6
|
|
|
50
50
|
multipers/data/shape3d.py,sha256=AE-vvjKrhKxOwMo-lurUsFqqLjIg5obo-RTbRZF_5Mk,3893
|
|
51
51
|
multipers/data/synthetic.py,sha256=RvLWIBE5j99kJSt-D7cnPGI3c7skD4p8_qofJbMIXM0,3078
|
|
52
52
|
multipers/filtrations/__init__.py,sha256=Lg0EHe2cxT32UQAg0kr_Vpua-xPBZxGol8VIfz8UwWk,319
|
|
53
|
-
multipers/filtrations/density.py,sha256=
|
|
54
|
-
multipers/filtrations/filtrations.py,sha256=
|
|
53
|
+
multipers/filtrations/density.py,sha256=XNPHCwyC8FwAdSfNp1ofxcxfP5ZFGZ6K-DUeXsfM4eg,18155
|
|
54
|
+
multipers/filtrations/filtrations.py,sha256=r3WS4GMBvcJ0ryIMbNHFgep0FCtl3h404V_SbMM8hN0,13333
|
|
55
55
|
multipers/gudhi/Persistence_slices_interface.h,sha256=QnUeCCKi9K8CfqI3W5i3Ra1Jy2Z1IIivr3MIpnBsnYU,6562
|
|
56
56
|
multipers/gudhi/Simplex_tree_interface.h,sha256=kkq8pE3jKGLY1dK7sYpb_uERHaWGurrRXfaw_ygs-mY,10217
|
|
57
57
|
multipers/gudhi/Simplex_tree_multi_interface.h,sha256=7D9EqyO9dgi-VMTf-O8SR2UMQL95q_TL9ApmmN4ggFw,25484
|
|
@@ -146,7 +146,7 @@ multipers/ml/kernels.py,sha256=XWfvKY68-c9E-MpRzdNqGzGD6K24Aizx95TkiSeAtIY,6175
|
|
|
146
146
|
multipers/ml/mma.py,sha256=mSwYqSHWGiboEiMnxArCuhHyrOExPYdML2Mbx4dTO7s,23950
|
|
147
147
|
multipers/ml/one.py,sha256=np5jM8gywm65TsK1yeZ1BDWqP-Ym-7hz4brTXI_0imk,20119
|
|
148
148
|
multipers/ml/point_clouds.py,sha256=nTkSjSzQy6S10-sZ0uwBp_Fs2EIWleB7yHncK2b_xLg,13770
|
|
149
|
-
multipers/ml/signed_measures.py,sha256=
|
|
149
|
+
multipers/ml/signed_measures.py,sha256=pwV6-XAQnS5itlfGgA64qxPomBqOuqsd-ulnkoYFdto,60981
|
|
150
150
|
multipers/ml/sliced_wasserstein.py,sha256=jgq4ND3EWwwJBopqRvfJLsoOptiMHjS3zEAENBmPJDc,18644
|
|
151
151
|
multipers/ml/tools.py,sha256=DOPcqmvZP2bA7M08GrwccdebwDq1HEwYdhNRGT7eZMI,3453
|
|
152
152
|
multipers/multi_parameter_rank_invariant/diff_helpers.h,sha256=wMCOhAewWd6-lulLND0y8M0MZoru6zn_8J3qfXDjLds,3477
|
|
@@ -178,8 +178,8 @@ multipers/tests/__init__.py,sha256=-7Fj-zFAfBJv18trg0CPglQTmYu_ehySZGqtJzPlN8U,1
|
|
|
178
178
|
multipers/torch/__init__.py,sha256=OLxIiZ389uCqehpUxBPUI_x1SYu531onc4tiTscAuIw,27
|
|
179
179
|
multipers/torch/diff_grids.py,sha256=2YK-c351tBpj8sfzjf26fbE1l0xlWse7oVVfDHD3zwM,7492
|
|
180
180
|
multipers/torch/rips_density.py,sha256=H-kmSzY8hXhmVn15Oltc71DHs1IUHg5oPRgNyWW8L4Q,11706
|
|
181
|
-
multipers-2.3.
|
|
182
|
-
multipers-2.3.
|
|
183
|
-
multipers-2.3.
|
|
184
|
-
multipers-2.3.
|
|
185
|
-
multipers-2.3.
|
|
181
|
+
multipers-2.3.3b7.dist-info/licenses/LICENSE,sha256=UsQRnvlo_9wpQS9DNt52GEraERHwK2GIRwuqr2Yv5JI,1071
|
|
182
|
+
multipers-2.3.3b7.dist-info/METADATA,sha256=rWZTaAJnyv6X11zYE1N_EMCUrmhHZ4bmaK_uG4E7Ma8,9817
|
|
183
|
+
multipers-2.3.3b7.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
|
|
184
|
+
multipers-2.3.3b7.dist-info/top_level.txt,sha256=L9e0AGmhRzrNw9FpuUx-zlqi5NcBOmrI9wYY8kYWr8A,10
|
|
185
|
+
multipers-2.3.3b7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|