Skip to content

Commit

Permalink
v0.0.12 release
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Schopf <tim.schopf@t-online.de>
  • Loading branch information
TimSchopf committed Apr 29, 2024
1 parent c3bc123 commit 8ddff25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keyphrase_vectorizers/keyphrase_count_vectorizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,4 +505,4 @@ def _clean_bow(self) -> None:
x = np.array(self.keyphrases)
mask = np.full(len(self.keyphrases), True, dtype=bool)
mask[indices] = False
self.keyphrases = list(x[~mask])
self.keyphrases = list(x[~mask])

0 comments on commit 8ddff25

Please sign in to comment.