diff --git a/src/objects/func_leaf_distance.py b/src/objects/func_leaf_distance.py index ff32b5e..644c060 100644 --- a/src/objects/func_leaf_distance.py +++ b/src/objects/func_leaf_distance.py @@ -31,6 +31,8 @@ def get_pairwise_vector(self, basis=None, isdistance=True): y = [] for func1 in labels: for func2 in labels: + print(f"funcs: {func1}, {func2}") + print(indices[func1], indices[func2]) y.append(self.dists[indices[func1], indices[func2]]) y = np.array(y) # by default, the values are: 0 = most dissimilar, 1 = most similar, so to convert to a distance, we subtract from 1