-
Notifications
You must be signed in to change notification settings - Fork 613
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
Adds TQDMProgressBar in callbacks #610
Conversation
Check out this pull request on You'll be able to see Jupyter notebook diff and discuss changes. Powered by ReviewNB. |
@seanpmorgan I have fixed a typo that is causing tests to fail, may you add the |
Hmmmm looks like there is still a formatting error that is found. Can you double check that any re-formats were committed/pushed |
@seanpmorgan sorry I forgot to check sanity with Another question, I found out that when someone just look at the notebook, the private output of the kernal does not show the progress bar, where should I put the below screenshot (or if I should at all)? If it would be helpful, I am thinking of putting it under |
@Squadrick, @seanpmorgan when you have time may you review this PR? Thank you so much for your time! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Almost ready to merge, please see the comments.
Also just want to tag @bstriner. The repo has an MIT license so I think it's fine but wanted to tag for visibility |
Thanks Sean! |
@seanpmorgan I have updated this Pull Request based on your comments, may you run |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the updates. So I tried running this in colab and didn't return the expected result. Any ideas?
https://colab.research.google.com/drive/1yIRkyVZEbOWtAzr2BKDoyDeCJFJinR7d
Hi @seanpmorgan, I finally found out why! The tqdm version on that runtime is 4.28.1 instead of the latest 4.36.1. I think somewhere between 4.28.1 and 4.36.1 they fixed the issue, I will update the PR based on your comments and also make sure on colab it is installing version >=4.36.1, thank you so much for pointing this out! Edit: found the solution! |
… colab tf2.0 magic function
@seanpmorgan I have updated this PR based on your comments and found the solution to the issue mentioned ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM thanks for the contribution!
Adding TQDMProgressBar in callbacks to make integration of TQDM (for progress bar) with tensorflow easy and configurable.
I also included ipython notebook usage / demo in the docs/tutorial folder.
Original source code:
https://github.com/bstriner/keras-tqdm
https://gist.github.com/ebursztein/5ff21d7600556de9946eac4a313344be
Original Pull Request :
#519
(sorry I messed up with merging and thus I have create another repo, the current one, to make pull request).
Based on the comments on 519:
bash tools/run_docker.sh -c 'make code-format'
and all tests (3) passes.Thank you so much for your time!