Ruarai Tobin

Results 10 comments of Ruarai Tobin

This might be an issue with Compile Pal, but it sounds like you've just got the 'CUBEMAPS' option enabled - that's what causes the game to launch and take screenshots...

Hey, thanks very much for taking care of this project in my absence. It doesn't look like I can add another admin to the repository as I don't have a...

> I'm actually quite surprised that chain_1 works for you I think I may have tried a similar hack to what you described and forgotten that it was still in...

Possibly! I think I have a grasp of what would be required to do the `getlogp` interface. Something like the following in `external_sampler.jl`: ```julia getlogp(transition) = nothing getlogp(transition::AdvancedMH.Transition) = transition.lp...

Thanks for the help! I am a bit in the weeds on the state/transition interface. I realise now that many samplers don't actually have a `state.transition` field, and some have...

Okay I've had a few goes at this and not sure I will have the time to work it out properly, sorry (and the logjoint function has otherwise solved the...

> Do you have a code example I can work with? This should demonstrate it: ```julia using AdvancedMH @model function test_model_1() a ~ Normal(0.0, 1.0) b ~ Normal(0.0, 1.0) 1.5...

I just tried the example above on your PR branch and it unfortunately trips up on the second chain as well

Ah yep I am using my own sampler(s). One to deal with a gross discrete parameter space and one to reproduce the sampler used in an earlier paper, then combining...