How can you disable tqdm? #85
Answered
by
xhluca
fortyfourforty
asked this question in
Q&A
-
Is there a way to disable tqdm in bm25s? Tried the Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
xhluca
Nov 19, 2024
Replies: 1 comment
-
if you uninstall tqdm it will not use it. you can also set Lines 612 to 614 in f161fba Similarly for Line 412 in f161fba |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
xhluca
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
if you uninstall tqdm it will not use it. you can also set
show_progress=False
in retrieve to disable it for a given retrieval:bm25s/bm25s/__init__.py
Lines 612 to 614 in f161fba
Similarly for
index
you can useshow_progress=False
:bm25s/bm25s/__init__.py
Line 412 in f161fba