-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ui: remove multi threaded prefix before each progress bar #2686
Comments
@shcheklein you just want different static message right? or want some conditional message? |
I would like to work on this, I am curious what is causing this Multi-Threaded message to come though? |
@harsh8398 it's better to have a conditional message - that describes what is happening depending on the command. We def should remove the blinking behavior. @kurianbenoy feel free! but please coordinate with @harsh8398 if needed and please ask an advice with @casperdcl - an expert in TQDM :) |
Line 23 in a48481b
but @shcheklein
shouldn't happen - is this still a thing after #2546? |
@casperdcl I think it is still happening (on |
I'm referring to specifically the blinking and overwriting. Shouldn't happen. Anyway there has to at least be a temporary blank line (could replace |
Didn't get the last thing. Why tqdm can't be in multi-threaded mode without stating that with a message? |
Lines 20 to 21 in 877e385
I think the main idea is https://github.com/tqdm/tqdm/blob/91494ccf363e5eeb4745db7dbab70ef73c4a6eb0/tqdm/std.py#L1240 but due to Line 56 in 877e385
Ah wait yes of course - it we assume all threads have |
So @casperdcl will it be possible to write conditional messages for each command as @shcheklein said? |
I think missing conditional messages/verbosity is unrelated to the "remove unhelpful multi-threading message" issue. The first is a long term goal involving carefully relooking at each commamnd. The latter could probably be fixed by just removing the fake bar altogether... |
Remove multi-threaded prefix before progress bar(#2686)
When you run even a simple
dvc pull
for a single dvc file for a project that has only one data file it still shows theMulti threaded
prefix before the progress bar.outputs some like:
Commands like
dvc pull
,dvc push
, etc are affected. I would expect to see something meaningful instead:Downloading files (multiple threads)
or even w/o multiple threads.Sometimes this
Multi-Threaded:
is blinking and replacing the progress bar itself which makes experience even worse.The text was updated successfully, but these errors were encountered: