summaryrefslogtreecommitdiff
path: root/src/python/gudhi/representations/vector_methods.py
AgeCommit message (Collapse)Author
2023-01-03fix get_paramsMarc Glisse
2022-12-17Make the order of atol centers a bit more reproducible.Marc Glisse
2022-12-17Fix Atol doctestMarc Glisse
the skip marks were on the wrong lines, which resulted in WARNING: ignoring invalid doctest code Reminder: testoutput was disabled because it was too random (the lines are swapped if I run it right now).
2022-12-15Merge pull request #719 from mglisse/endpointsVincent Rouvreau
More consistent choice of a grid for diagram representations
2022-11-18sklearn's DistanceMetric has movedMarc Glisse
2022-11-14Fix doc of attributesMarc Glisse
2022-11-14Avoid the word "guess"Marc Glisse
2022-11-14Document grid_Marc Glisse
2022-11-14endpoints for Entropy, idempotent fit(), refactor grid_Marc Glisse
2022-11-04More consistent choice of a grid for diagram representationsMarc Glisse
2022-10-15Treat the case when there are less points than landscape layerswreise
2022-10-15Remove old lineswreise
2022-10-12Clean argpartitionwreise
2022-10-07Remove enumeratewreise
2022-10-07Add triming of the range; Marcs' commentswreise
2022-08-10Merge branch 'master' into optimize_silhouetteswreise
2022-08-05Test the numpy versionwreise
2022-06-07DiagramScaler removed from EntropyManu
2022-06-05Import pykeops locally in Silhouette and Lanscapeswreise
2022-06-02Start landscape optimizationwreise
2022-05-25Move the initialisation of the Genred method to the constructor of Silhouettewreise
2022-05-25Optimize using keopswreise
2022-05-25Compactifywreise
2022-05-25Vectorize Silhouette implementationwreise
2022-03-07minor changes in entropyManu
2022-02-23Revert "a test for gudhi.representations.Entropy has been added"Manu
This reverts commit 758111506dfb99cdc59981395386926e178d447c.
2022-02-23a test for gudhi.representations.Entropy has been addedManu
2022-02-14A bug in the Entropy function has been solvedManu
2022-01-18Fix BettiCurve doc in source codeHind-M
2021-11-24Make the new BettiCurve class compatible with the old interfaceHind-M
2021-11-22Merge remote-tracking branch 'upstream/master' into gspr/exact-betti-curveHind-M
2021-11-05code review: try/except in function and assert on length of diagrams for ↵Vincent Rouvreau
error menagement
2021-11-05code review: factorize sample range computationVincent Rouvreau
2021-11-04code review: try-except inside the ifVincent Rouvreau
2021-10-22Fix exception management when sklearn version < 1.0Vincent Rouvreau
2021-10-20Make Entropy work and also fix a bug in the loopVincent Rouvreau
2021-10-18First part of the fixVincent Rouvreau
2021-05-16TypoGard Spreemann
2021-05-16Update doc string to reflect new class nameGard Spreemann
2021-04-30Replace old BettiCurve classGard Spreemann
2021-04-30Allow specifying range for uniform predefined grid for compatibility with ↵Gard Spreemann
old class
2021-04-28Handle an empty list of persistence diagramsGard Spreemann
2021-02-28Elaborate doc stringGard Spreemann
2021-02-28More precise interpolation invariant documentation textGard Spreemann
2021-02-28Behave in line with scikit-learn guidelinesGard Spreemann
According to [1], we should in particular not do any validation in the constructor, and fit/fit_transform should always update underscored attributes (self.grid_ in this case). We still want to allow for a user-defined, data-independent grid, so we make this a separate parameter predefined_grid. [1] https://scikit-learn.org/stable/developers/develop.html
2021-02-28Move documentation string to classGard Spreemann
2021-01-11Ignore doctest for atol doc. Rewrite unitary test for atol doc. To be ↵ROUVREAU Vincent
synchronized
2021-01-11skip doctest (but run them)ROUVREAU Vincent
2021-01-11Remove sphinx doc test for atol as points order can be inverted and add it ↵ROUVREAU Vincent
in a UT but sorted
2020-12-20More flexible Betti curve computations.Gard Spreemann
Introduce a new BettiCurve2 class that can compute Betti curves on any grid (not just np.linspace ones), and can compute the grid needed to capture all values of the Betti curves. Based on feedback from PR #427.