I am trying to port the following model from turing to rxinfer
@model function laplacian_model(A,y)
m,n = size(A)
mew ~ filldist(Laplace(10,1),n)
y ~ MvNormal(A*mew,[0.5 0;0 0.5])
end
I was not able to use laplce with rxinfer and also was not able to use cvi for non conjugate priors.
Any pointers on how to get this working in rxinfer.