From 45d8f7c9b84d6123d117298eea38310117cc06f8 Mon Sep 17 00:00:00 2001 From: MathieuCarriere Date: Thu, 9 Jun 2022 15:44:53 +0200 Subject: removed default field coefficient --- src/python/gudhi/tensorflow/cubical_layer.py | 2 +- src/python/gudhi/tensorflow/lower_star_simplex_tree_layer.py | 2 +- src/python/gudhi/tensorflow/rips_layer.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/python/gudhi/tensorflow/cubical_layer.py b/src/python/gudhi/tensorflow/cubical_layer.py index 16dc7d35..d68c7556 100644 --- a/src/python/gudhi/tensorflow/cubical_layer.py +++ b/src/python/gudhi/tensorflow/cubical_layer.py @@ -8,7 +8,7 @@ from ..cubical_complex import CubicalComplex # The parameters of the model are the pixel values. -def _Cubical(Xflat, Xdim, dimensions, homology_coeff_field=11): +def _Cubical(Xflat, Xdim, dimensions, homology_coeff_field): # Parameters: Xflat (flattened image), # Xdim (shape of non-flattened image) # dimensions (homology dimensions) diff --git a/src/python/gudhi/tensorflow/lower_star_simplex_tree_layer.py b/src/python/gudhi/tensorflow/lower_star_simplex_tree_layer.py index e0a5b457..4ec3f7c7 100644 --- a/src/python/gudhi/tensorflow/lower_star_simplex_tree_layer.py +++ b/src/python/gudhi/tensorflow/lower_star_simplex_tree_layer.py @@ -7,7 +7,7 @@ import tensorflow as tf # The parameters of the model are the vertex function values of the simplex tree. -def _LowerStarSimplexTree(simplextree, filtration, dimensions, homology_coeff_field=11): +def _LowerStarSimplexTree(simplextree, filtration, dimensions, homology_coeff_field): # Parameters: simplextree (simplex tree on which to compute persistence) # filtration (function values on the vertices of st), # dimensions (homology dimensions), diff --git a/src/python/gudhi/tensorflow/rips_layer.py b/src/python/gudhi/tensorflow/rips_layer.py index e4d6d4c6..fca336f3 100644 --- a/src/python/gudhi/tensorflow/rips_layer.py +++ b/src/python/gudhi/tensorflow/rips_layer.py @@ -8,7 +8,7 @@ from ..rips_complex import RipsComplex # The parameters of the model are the point coordinates. -def _Rips(DX, max_edge, dimensions, homology_coeff_field=11): +def _Rips(DX, max_edge, dimensions, homology_coeff_field): # Parameters: DX (distance matrix), # max_edge (maximum edge length for Rips filtration), # dimensions (homology dimensions) -- cgit v1.2.3