You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I'm trying to sample the following Turing Model that uses a MatrixNormal distribution:
using Random, Turing, Bijectors
Random.seed!(123)
#Estimate a MatrixNormal as simulated here
U = rand(LKJ(2, 0.5))
V = rand(LKJ(2, 0.5))
Uₐ = rand(LKJ(2, 0.5))
Vₐ = rand(LKJ(2, 0.5))
Asample = rand(MatrixNormal(zeros(Float64, 2, 2), U, V))
#Create the model
@model function estimateA(A, U, V, Uₐ, Vₐ)
mu ~ MatrixNormal(zeros(Float64,size(A,1), size(A,2)), Uₐ, Vₐ)
A ~ MatrixNormal(mu, U, V)
end
#Estimate!
model = estimateA(Asample, U, V, Uₐ, Vₐ);
chains = sample(model, NUTS(), 100);
dist = MatrixNormal(zeros(2,2), rand(LKJ(2, 0.5)), rand(LKJ(2, 0.5)))
b = bijector(dist)
I'm relatively new to Turing so maybe my diagnosis is not correct but it seems to me that the Bijectors package is lacking a definition for the MatrixNormal.
The text was updated successfully, but these errors were encountered:
Hi! I'm trying to sample the following Turing Model that uses a
MatrixNormal
distribution:however I get the following error:
The same error happens with the following code:
I'm relatively new to
Turing
so maybe my diagnosis is not correct but it seems to me that the Bijectors package is lacking a definition for theMatrixNormal
.The text was updated successfully, but these errors were encountered: