-
Notifications
You must be signed in to change notification settings - Fork 19
Progress bars when sampling multiple chains #168
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
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
b3434ac
[wip] fix parallel sampling
penelopeysm 15250c7
Parallel sampling with ProgressLogging
penelopeysm 367718b
destroy per-chain progress bars if an error occurs
penelopeysm 60134f8
add a todo
penelopeysm e0ae513
Fix implementation
penelopeysm 6b514e4
Bump minor version
penelopeysm bbda3c8
Add `setmaxchainsprogress!`
penelopeysm a9e5306
Don't duplicate macro
penelopeysm a03692d
:overall works with MCMCDistributed now
penelopeysm 838db60
Give up on :perchain for MCMCDistributed
penelopeysm 6b59b21
Fix comments
penelopeysm b340ebc
Remove dead code
penelopeysm 1195503
Undelete some not-actually-dead code
penelopeysm 594483f
Broaden UUIDs compat so that it works on older Julia versions
penelopeysm 7def4b4
Explain progress logging in docs
penelopeysm 022678e
Remove dead code
penelopeysm 5b2577f
Fix channel buffering for MCMCThreads
penelopeysm cefafb0
Attempt to use proper types for logging
penelopeysm c6f9e78
Refactor logging, throttle per-chain updates
penelopeysm d9c2e86
Improve comment
penelopeysm f8a8b64
add warning
penelopeysm 64b0bfb
fix convergence sampling
penelopeysm 27569b3
Don't use integer division
penelopeysm 4cd647a
remove extra show
penelopeysm 9f8970d
Rename withprogresslogger macro
penelopeysm 3e43f6a
Add exclamation marks to function names
penelopeysm 7276fc2
Improve clarity of user-facing documentation
penelopeysm 284741f
Make `:overall` the default, remove `setmaxchainsprogress!`
penelopeysm 5c5b912
Make :perchain use the richer overall progress bar
penelopeysm eebb10b
Fix a typo
penelopeysm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Should the below functions have a trailing
!
? They aren't mutating the parameters, but some global state, right?(Doesn't really matter, we just as well leave the names as is)
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.
Indeed, they are mutating (although the macro hides the worst of it). Will change.