-
Notifications
You must be signed in to change notification settings - Fork 221
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
Fix 173 #341
Merged
Fix 173 #341
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
219b9f4
Initial support for infix ~ (#173).
yebai cb5b054
Merge branch 'master' of github.com:yebai/Turing.jl
yebai ffb9407
seperate model wrapper call in sample.jl test
xukai92 2a9466d
update ForwardDiff.Dual signature
xukai92 1431b24
Merge branch 'master' into Fix-173
yebai d54e9da
Merge branch 'Fix-173' of github.com:yebai/Turing.jl into Fix-173
yebai 008f41e
sample.jl test passed
xukai92 80df8fe
fix some tests for Julia 0.6
xukai92 74c7c5f
remove typealias for 0.6
xukai92 6d7feac
make some functions 0.6-ish
xukai92 b14035e
make abstract 0.6-ish
xukai92 551f122
Merge branch 'Fix-173' of https://github.com/yebai/Turing.jl into Fix…
xukai92 e038605
change some decpreated functions
xukai92 80b4db6
Update .travis.yml
yebai ac74f77
Update appveyor.yml
yebai 06520fc
Update appveyor.yml
yebai 1d8139f
fix test
xukai92 8c74ec6
Deprecations on package loading fixed
xukai92 d976b45
fix deprecations
xukai92 aecd4e7
implement callbacks for inner function
xukai92 f0fa67a
fix model type bug
xukai92 ced0eb8
Fix type
xukai92 1776c1f
update Dual in benchmark
xukai92 7401353
update Dual constructor
xukai92 4f461c0
Bump up required Julia version to 0.6
yebai 36eeb26
Disable depreciated warning messages for `consume/produce`.
yebai d8b7ed0
Remove duplicate definition of produce.
yebai 848e36a
Merge branch 'master' into Fix-173
yebai 841df5c
fix floor, tanh, abs, log
xukai92 b895169
fix logpdf warning and bug
xukai92 a7bf48a
fix vec assume init
xukai92 fa57fc2
Merge branch 'master' into Fix-173
yebai 3fd77af
Travis: Allow `Benchmarking` test to fail.
yebai 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 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 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.
@yebai Plz have a look at this change - do you agree what we had before was a bug?
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.
@yebai This is actually (mathematically) correct ... as there is another bug - we didn't use customised
init
here for vectorised assume at all. I will push another commit to fix it.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.
yes - it looks correct to me.