Skip to content
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

Progress bar callback #1450

Merged
merged 19 commits into from
Apr 24, 2020
Merged

Progress bar callback #1450

merged 19 commits into from
Apr 24, 2020

Conversation

awaelchli
Copy link
Member

@awaelchli awaelchli commented Apr 11, 2020

Before submitting

  • Was this discussed/approved via a Github issue? (no need for typos and docs improvements)
  • Did you read the contributor guideline, Pull Request section?
  • Did you make sure to update the docs?
  • Did you write any new necessary tests?
  • If you made a notable change (that affects users), did you update the CHANGELOG?

What does this PR do?

Moves the progress bar from training code into a callback. This enables customization of progress bar display as desired in #765, #1386, #1121, #1500, Lightning-Universe/lightning-bolts#2
A custom progress bar callback can be passed like so:

# is on by default and can still turn off as before:
Trainer(progress_bar_refresh_rate=0)

# a custom bar
bar = ProgressBar(...)
Trainer(callbacks=[bar])
  • The progress bar callback is used by default. The tqdm is displayed exactly as before as far as I can tell. Did not test on ddp. If anyone could check, I would appreciate that.
  • Also had to add additional callback methods as proposed in More granular callbacks #1440 and No Callbacks for Validation Batch Step - How To Get Progress of Validation? #1165. I can split this into a different PR, let me know.
  • There is a base class and there is a ProgressBar class which is the progress bar we currently have. The base class allows the user to implement a progress bar that is not based on tqdm. The current implementation gives maximum flexibility while imposing minimal structure through the base class.
  • New tests that the progress gets updated correctly

This is a draft. There are some open questions I have for the core team:

  • I append the progress bar callback the list of callbacks. Is this the right way? Or should I call the individual methods in the training loop as we do for the the checkpoint and early stopping callbacks? (answered by @jeremyjordan)
  • Should the progress_bar_refresh_rate and process_position trainer args be deprecated and instead moved to the ProgressBar callback? Right now it is a hybrid.

PR review

Anyone in the community is free to review the PR once the tests have passed.
If we didn't discuss your PR in Github issues there's a high chance it will not be merged.

Did you have fun?

Make sure you had fun coding 🙃

@mergify mergify bot requested a review from a team April 11, 2020 00:11
@awaelchli awaelchli changed the title Progress bar callback [WIP] Progress bar callback Apr 11, 2020
@jeremyjordan
Copy link
Contributor

I append the progress bar callback the list of callbacks. Is this the right way? Or should I call the individual methods in the training loop as we do for the the checkpoint and early stopping callbacks?

Yes, this is the preferred way. The plan is to migrate the checkpoint and early stopping callbacks to do this as well.

@pep8speaks
Copy link

pep8speaks commented Apr 11, 2020

Hello @awaelchli! Thanks for updating this PR.

There are currently no PEP 8 issues detected in this Pull Request. Cheers! 🍻

Comment last updated at 2020-04-23 22:38:40 UTC

@hadim
Copy link
Contributor

hadim commented Apr 11, 2020

Would that make sense to modify the default progress bar by adding a global progress bar (while keeping the existing ones too)? What I mean by global is a progress bar over epochs.

tqdm can handle nested progress bars so that should not be an issue on that side. The question is more do you guys like it as a default?

@awaelchli
Copy link
Member Author

awaelchli commented Apr 11, 2020

@hadim I wouldn't be against it, just note that the training tqdm contains the epoch number in the description already. Anyway, given the current implementation, this would be super easy to add!

@hadim
Copy link
Contributor

hadim commented Apr 11, 2020

The thing I like about the "global" progress bar is the ETA.

@awaelchli
Copy link
Member Author

awaelchli commented Apr 12, 2020

@hadim I'd like that :)
@alexeykarnachev I have a doctest failing in this method. Do you know what I have to change in the argparse setup when adding a new arg to the Trainer?

@awaelchli
Copy link
Member Author

@Borda should a new trainer arg be added at the end or before the "deprecated" block of args?

@Borda
Copy link
Member

Borda commented Apr 13, 2020

@Borda should a new trainer arg be added at the end or before the "deprecated" block of args?

before deprecated :]

@awaelchli
Copy link
Member Author

thanks! I was not sure because there was one added after.

@awaelchli
Copy link
Member Author

awaelchli commented Apr 13, 2020

It's driving me crazy. Tests are fine. Then, I only change the refresh_rate=1 in this line of the test
https://github.com/PyTorchLightning/pytorch-lightning/blob/dd2d49b280c5f4d414bb54cd4cfc36f4daf291a5/tests/trainer/test_callbacks.py#L301
and it passes but then many OTHER tests start to fail!
How can it be that a single test can interfere with others? Anybody knows?
Edit: problem found and fixed. It originated from the problem in #1534.

@codecov
Copy link

codecov bot commented Apr 13, 2020

Codecov Report

Merging #1450 into master will increase coverage by 0%.
The diff coverage is 95%.

@@           Coverage Diff           @@
##           master   #1450    +/-   ##
=======================================
  Coverage      88%     89%            
=======================================
  Files          68      69     +1     
  Lines        3956    4128   +172     
=======================================
+ Hits         3501    3665   +164     
- Misses        455     463     +8     

@awaelchli awaelchli changed the title [WIP] Progress bar callback Progress bar callback Apr 13, 2020
@awaelchli awaelchli marked this pull request as ready for review April 13, 2020 23:43
Copy link
Member

@justusschock justusschock left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, although I'm not sure we really need the ProgressBarBase class. Can't we just integrate all of that to the tqdm progress bar and maybe rename the tqdm parts to be more neutral? So that one just has to overwrite these methods. This would provide a more rigid structure of how such a callback should be defined.

@mergify mergify bot requested a review from a team April 14, 2020 08:22
@alexeykarnachev
Copy link
Contributor

@awaelchli Sorry, I missed your message.
the problem is still there?

@awaelchli
Copy link
Member Author

awaelchli commented Apr 14, 2020

@alexeykarnachev No, I was able to fix it. Thanks for checking!
@justusschock Thanks! I had it like this first, but I wanted to allow more flexibility. For example, let's say we wanted to implement a progress bar that doesn't use tqdm, then we would have to override almost every callback method to get "rid" of the base class's use of tqdm calls, even if we say wanted to implement a simple progress bar only for training progess. I thought, if we are anyway decoupling the tqdm bar from the Trainer class, why not allow the user to easily use a different progress bar library of their choice without having to think about our default implementation with tqdm.
Either way, this propably concerns <1% of users so I would not be against to change it like you said @justusschock.

What do the other core devs think?

@justusschock
Copy link
Member

@awaelchli I think this is a valid argument. Tbh, I didn't think that much about these details, just thought that it is somewhat heavy to introduce a base class, when there is only one child class.

@awaelchli awaelchli changed the title Progress bar callback [WIP] Progress bar callback Apr 14, 2020
@awaelchli awaelchli changed the title [WIP] Progress bar callback Progress bar callback Apr 15, 2020
@mergify
Copy link
Contributor

mergify bot commented Apr 16, 2020

This pull request is now in conflict... :(

1 similar comment
@mergify
Copy link
Contributor

mergify bot commented Apr 19, 2020

This pull request is now in conflict... :(

@awaelchli awaelchli changed the title Progress bar callback [blocked by #1534] Progress bar callback Apr 20, 2020
@mergify
Copy link
Contributor

mergify bot commented Apr 20, 2020

This pull request is now in conflict... :(

@awaelchli awaelchli changed the title [blocked by #1534] Progress bar callback Progress bar callback Apr 20, 2020
@mergify
Copy link
Contributor

mergify bot commented Apr 20, 2020

This pull request is now in conflict... :(

@mergify mergify bot requested a review from a team April 23, 2020 20:33
@mergify
Copy link
Contributor

mergify bot commented Apr 23, 2020

This pull request is now in conflict... :(

awaelchli and others added 2 commits April 23, 2020 22:56
Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
@mergify
Copy link
Contributor

mergify bot commented Apr 23, 2020

This pull request is now in conflict... :(

Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
@mergify
Copy link
Contributor

mergify bot commented Apr 23, 2020

This pull request is now in conflict... :(

@Borda
Copy link
Member

Borda commented Apr 23, 2020

seems as rename enabled/disabled is not completely propagated in loggers

@awaelchli
Copy link
Member Author

I'm working on it :)

@williamFalcon williamFalcon merged commit 3e8f2d9 into Lightning-AI:master Apr 24, 2020
@awaelchli awaelchli deleted the progress_bar_callback branch April 24, 2020 00:58
@awaelchli
Copy link
Member Author

awaelchli commented Apr 24, 2020

Thanks for merging!

@hadim Would you like to open an issue about your idea for a global bar with ETA? EDIT: I saw there is already one :)

@williamFalcon
Copy link
Contributor

Thanks for submitting!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature Is an improvement or enhancement ready PRs ready to be merged
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

8 participants