Skip to content

Commit

Permalink
temp printing for debugging purpose
Browse files Browse the repository at this point in the history
  • Loading branch information
raquellewei committed Nov 3, 2023
1 parent 7bd5e80 commit 23161b6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/objects/func_leaf_distance.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 23161b6

Please sign in to comment.