summaryrefslogtreecommitdiff
path: root/src/python/gudhi/representations
diff options
context:
space:
mode:
authormartinroyer <16647869+martinroyer@users.noreply.github.com>2020-06-09 11:21:29 +0200
committerGitHub <noreply@github.com>2020-06-09 11:21:29 +0200
commit7eed21c364e244df7fceae11ce9d1c319db8bec9 (patch)
tree76eb005be6b8550ed3c93e70b6827c40f13f1d8f /src/python/gudhi/representations
parent588e7127d1616e40bf7e3de7e7797b54aee137da (diff)
Update src/python/gudhi/representations/vector_methods.py
Diffstat (limited to 'src/python/gudhi/representations')
-rw-r--r--src/python/gudhi/representations/vector_methods.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/gudhi/representations/vector_methods.py b/src/python/gudhi/representations/vector_methods.py
index d3b85636..0a26a8e5 100644
--- a/src/python/gudhi/representations/vector_methods.py
+++ b/src/python/gudhi/representations/vector_methods.py
@@ -626,7 +626,7 @@ class Atol(BaseEstimator, TransformerMixin):
[1.04696684, 0.56203292],
[1.02816136, 0.23559623]])
"""
- def __init__(self, quantiser, weighting_method="cloud", contrast="gaus"):
+ def __init__(self, quantiser, weighting_method="cloud", contrast="gaussian"):
"""
Constructor for the Atol measure vectorisation class.
@@ -639,7 +639,7 @@ class Atol(BaseEstimator, TransformerMixin):
This will have no impact if weights are provided along with measures all the way: `fit` and `transform`.
contrast (string): constant function for evaluating proximity of a measure with respect to centers
choose from {"gaussian", "laplacian", "indicator"}
- (default: laplacian contrast function, see page 3 in the ATOL paper).
+ (default: gaussian contrast function, see page 3 in the ATOL paper).
"""
self.quantiser = quantiser
self.contrast = {