-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Ensure auto-transformed variables use specified starting values #2046
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 18 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
01c4984
Added _transformed_init function to sampling, which ensures transform…
fonnesbeck 288ab35
Added test for _transformed_init in sample
fonnesbeck 84e908e
Added example in _transformed_init docstring
fonnesbeck b9c61fc
Added interval to __all__ in transforms
fonnesbeck 3ac6735
Fixed namespace error
fonnesbeck 0ee34be
Encoded bound into interval transforms so that starting values can be…
fonnesbeck 1a748eb
Simplified transformation of start values by carrying model forward i…
fonnesbeck 555bc27
Added _transformed_init function to sampling, which ensures transform…
fonnesbeck c60a914
Added test for _transformed_init in sample
fonnesbeck 644a5b6
Added example in _transformed_init docstring
fonnesbeck 5345811
Added interval to __all__ in transforms
fonnesbeck 4fd9029
Fixed namespace error
fonnesbeck ecf980f
Encoded bound into interval transforms so that starting values can be…
fonnesbeck c54f975
Simplified transformation of start values by carrying model forward i…
fonnesbeck d86031d
Merge branch 'transformed_init_fix' of github.com:pymc-devs/pymc3 int…
fonnesbeck b9436f0
Attempt to fix spurious 2.7 diagnostic test error
fonnesbeck 863079e
Better fix for failing test
fonnesbeck b1866e9
Tweaks to fix stochastic diagnostic test error
fonnesbeck 792dd0d
Merge branch 'master' into transformed_init_fix
fonnesbeck 6117810
Renamed _soft_update to _updates_start_vals
fonnesbeck 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
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
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.
Can't we monkey-patch
lower
andupper
ontoself.transformed
? While not clean, it would be cleaner than this.