Skip to content

Commit

Permalink
v0.0.47
Browse files Browse the repository at this point in the history
  • Loading branch information
softwaredoug committed Apr 19, 2024
1 parent 46c1649 commit 278a6e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion searcharray/indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def _gather_tokens(array, tokenizer, term_dict, term_doc, start_doc_id=0, trunc_
term_doc.append(np.unique(terms))

if idx % 10000 == 0 and idx > 0:
logger.info(f"Tokenized {doc_id} ({100.0 * (idx/len(array))}%)")
logger.info(f"Tokenized {doc_id} ({100.0 * (idx / len(array))}%)")

# Flatten each
all_terms = np.concatenate(all_terms)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
# For a discussion on single-sourcing the version across setup.py and the
# project code, see
# https://packaging.python.org/guides/single-sourcing-package-version/
version="0.0.46", # Required
version="0.0.47", # Required
# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:
# https://packaging.python.org/specifications/core-metadata/#summary
Expand Down

0 comments on commit 278a6e8

Please sign in to comment.