Peter Thestrup Waade
Peter Thestrup Waade
### Minimal working example ```julia using Turing @model function m1(x) #will error n ~ Normal(0, 1) dists = [ MvNormal([n,n], I), MvNormal([n,n], I), MvNormal([n,n], I), ] x ~ arraydist(dists) end...
### Minimal working example (updated) ```julia using Turing, LogExpFunctions mutable struct Bar values::Vector end values = zeros(Real, 4) state = Bar(values) inputs = [1,2,3,4,2,3,2,1,2,3,2,1] actions = [1,2,3,4,2,3,2,1,2,3,2,1] @model function m(inputs::Vector{Int64},...
Dear ReverseDiff, Forgive me if this is a known issue, or if it is desired behaviour! And thank you for the great work you do. I get a MethodError on...
Dear ADTypes maintainers, Thank you for your work! This issue is just to request that the `AutoEnzyme` and `AutoFIniteDifferences` constructors be updated so that it is not necessary to have...
## Details Hey JuliaPlots, Thank you for your amazing work. I ran into an error when trying to define a recipe with RecipesBase which contains keyword arguments that do not...