summaryrefslogtreecommitdiff
path: root/src/python/gudhi
diff options
context:
space:
mode:
authormartinroyer <16647869+martinroyer@users.noreply.github.com>2020-06-11 17:03:40 +0200
committerGitHub <noreply@github.com>2020-06-11 17:03:40 +0200
commita90843c6bf5f7f05392c4262efb60e94ccfb0e48 (patch)
tree2e953bfdf3fe1f71d2753d5c1a45fbb73993b096 /src/python/gudhi
parent76529cae58f8a2736a1730fd81a9e12c3f4c7e19 (diff)
test value tweak
Diffstat (limited to 'src/python/gudhi')
-rw-r--r--src/python/gudhi/representations/vector_methods.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/python/gudhi/representations/vector_methods.py b/src/python/gudhi/representations/vector_methods.py
index 49c05c51..5a45f179 100644
--- a/src/python/gudhi/representations/vector_methods.py
+++ b/src/python/gudhi/representations/vector_methods.py
@@ -616,13 +616,13 @@ class Atol(BaseEstimator, TransformerMixin):
array([[ 2. , 0.66666667, 3.33333333],
[ 2.6 , 2.8 , -0.4 ]])
>>> atol_vectoriser(a)
- array([1.0769395 , 0.58394704])
+ array([1.18168665, 0.42375966])
>>> atol_vectoriser(c)
- array([0.23559623, 1.02816136])
+ array([0.02062512, 1.25157463])
>>> atol_vectoriser.transform(X=[a, b, c])
- array([[1.0769395 , 0.58394704],
- [0.56203292, 1.04696684],
- [0.23559623, 1.02816136]])
+ array([[1.18168665, 0.42375966],
+ [0.29861028, 1.06330156],
+ [0.02062512, 1.25157463]])
"""
def __init__(self, quantiser, weighting_method="cloud", contrast="gaussian"):
"""