Skip to content

Commit

Permalink
remove unused print
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikoletos-K committed Jun 30, 2023
1 parent 39a4371 commit 7c9eada
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/pyjedai/vector_based_blocking.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,7 @@ def build_blocks(self,
self._si = SubsetIndexer(self.input_cleaned_blocks, self.data, self._applied_to_subset)
self._d1_valid_indices: list[int] = self._si.d1_retained_ids
self._d2_valid_indices: list[int] = [x - self.data.dataset_limit for x in self._si.d2_retained_ids]

# print(data.attributes_1, data.attributes_2)
print(attributes_1 if attributes_1 else data.attributes_1)

self._entities_d1 = data.dataset_1[attributes_1 if attributes_1 else data.attributes_1] \
.apply(" ".join, axis=1) \
.apply(self._tokenize_entity) \
Expand Down

0 comments on commit 7c9eada

Please sign in to comment.