-
Notifications
You must be signed in to change notification settings - Fork 82
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
docs/progress bar #347
docs/progress bar #347
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
RTD fails because of: pydata/pydata-sphinx-theme#1274 |
Codecov Report
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more Additional details and impacted files@@ Coverage Diff @@
## main #347 +/- ##
==========================================
- Coverage 88.30% 88.22% -0.08%
==========================================
Files 51 51
Lines 5464 5488 +24
Branches 824 828 +4
==========================================
+ Hits 4825 4842 +17
- Misses 522 527 +5
- Partials 117 119 +2
|
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!!! LGTM on my end, pending small modifications (which I agree with) highlighted by michal on links to existing doc.
Thanks for the feedback, I'll update the code hopefully soon. |
No problem!
In #348, I also bumped the version of |
Thanks @michalk8! |
Thanks @bosr , looks great! |
* more sensible progress_fn with iteration + 1 * add progress_fn example in Getting Started * Pin `pydata` theme * create a new tracking progress notebook * [ci skip] Link notebooks * address review comments * fix typo * expose LRSinkhornState in docs/solvers/linear.rst * address review comments --------- Co-authored-by: rbossart <[email protected]> Co-authored-by: Michal Klein <[email protected]>
Slight update
ott.utils.default_progress_fn
I chose to increment by
1
the value ofiteration
in the function body becauseott
starts counting from0
but yields progress updates such as6/199
. I think it's better to report progress such as7/200
.Add example in the
Getting Started
notebook