Andreas Scheidegger
Andreas Scheidegger
Thanks for the really useful package! It has helped a lot to clean up our model code. One functionality I missed is to `merge` component arrays. With tuples we can...
LabelledArrays looks very promising to simplify model definitions. Unfortunately it seem largely incompatible with AD. Is there a good workaround? ```Julia using LabelledArrays import ForwardDiff import Zygote model(p) = p.a...
I have a few questions around `build_function`. I think it is mainly an issue of documentation: * Is there a catch with `expression=Val{true}`? It seems more natural, but the tutorial...
Thanks or this handy package! While looking at `namesingroup` I found that `get` cannot handle names with square brackets: ```Julia using MCMCChains # v5.3.1 x = rand(10, 4) # chain...
Additional keyword arguments seem to be not passed to `Hcubature`. In the example below I try to pass `maxevals=typemax(Int)` and `initdiv=50`, however, if used via the `Quadrature.jl` interface they have...
This is likely an off-topic, but probably it's still helpful for someone to have it documented. I created with `HDF5.jl` a file, using the default compression (blosc) at level 3....
Nishimura et all (2020) propose an HMC integrator that should work well discontinous likelihoods and hence also for discrete parameters. I was wondering if this could be added to AdvancedHMC...
It would be useful, if we can optionally define a scale to `ShiftedExp`. For example, if we have two parameter `a` and `b` that are both positive, but have very...
It would be useful if `transform` would have an option, so that the result remains a flat vector: ```Julia transform(t, x, keep_flat=true) ``` A good use case is converting MCMC...
Attempt to implement #95 I think it works in principle. However, it fails some tests due to numerical inaccuracies. Unfortunately, I don't see how to improve this.