-
Notifications
You must be signed in to change notification settings - Fork 219
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
Update to tilde overloads in mh.jl
#2360
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## ch #2360 +/- ##
==========================================
+ Coverage 83.86% 84.36% +0.50%
==========================================
Files 24 24
Lines 1580 1573 -7
==========================================
+ Hits 1325 1327 +2
+ Misses 255 246 -9 ☔ View full report in Codecov by Sentry. |
It occurs to me that the value generated by I don't know if there's an easy fix for this at all though. |
|
Oh, I see, I'm just confused. The values are stored in varinfo edit; oh, I see it's this function that's doing it. Lines 267 to 282 in 40a0d84
|
Sorry, not trying to be annoying and get a final word in, but having spent a good amount of time figuring out the interplay between Turing and AdvancedMH I feel like this behaviour is a bit unexpected (and I actually now understand why it happens 😂): @model function gdemo(x, y)
s² ~ InverseGamma(2, 3)
m ~ Normal(0, sqrt(s²))
x ~ Normal(m, sqrt(s²))
y ~ Normal(m, sqrt(s²))
end
chain = sample(
gdemo(1.5, 2.0),
MH(:m => AdvancedMH.RandomWalkProposal(Normal(0, 0.25))),
10
) Here |
Very much agree with you that this is very confusing 😕 IMO we should be erroring if we some variables don't have a Gibbs sampler assigned to them |
* CompatHelper: bump compat for DynamicPPL to 0.29, (keep existing compat) (#2339) Co-authored-by: CompatHelper Julia <[email protected]> * CompatHelper: bump compat for DynamicPPL to 0.29 for package test, (keep existing compat) (#2340) Co-authored-by: CompatHelper Julia <[email protected]> * Replace vectorize(d, r) -> DynamicPPL.tovec(r) vectorize was removed in DynamicPPL 0.29.0 * Require Julia >= 1.9 * Add Julia 1.9 tests back * Fix essential/ad tests * Fix reconstruct calls in MH * Update src/mcmc/mh.jl Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Require Julia 1.10 * Change 1 -> I in MvNormal() setting a real number as σ is deprecated * Simplify tests as we no longer support Julia <1.8 * Simplify `set_namedtuple!` * Remove conditional loading/exporting of Tapir * Tapir -> Mooncake * Update src/essential/Essential.jl Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Remove Requires from Project.toml * Bump minor version instead * Restrict ADTypes to 1.9.0 for AutoMooncake() * Re-enable Mooncake tests in mcmc/abstractmcmc * Update the currently buggy and incorrect tilde overloads in `mh.jl` (#2360) * More autoformatting (#2359) * Bring more files into autoformatting fold * Run JuliaFormatter * Remove trailing whitespace * Update comment in .JuliaFormatter.toml * Fix bad merge * Restrict Mooncake to >= 0.4.9 * Add MH test for LKJCholesky * Remove Tracker * Format imports Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Add AD imports to Optimisation test * Bump Mooncake compat in tests * Bump Libtask version * Get Optimization tests to pass CI * Update API docs * Write a changelog entry * Update docs/src/api.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: CompatHelper Julia <[email protected]> Co-authored-by: Tor Erlend Fjelde <[email protected]> Co-authored-by: Markus Hauru <[email protected]>
@penelopeysm I was looking at your PR #2341 and found some bad bugs in the existing codebase for the
MH
, so I figured we should just get these fixed too.