-
Notifications
You must be signed in to change notification settings - Fork 230
Closed
Description
What is the best way to evaluate the posterior for a set of parameters? For example, with
@model gdemo(x) = begin
s ~ InverseGamma(2,3)
m ~ Normal(0,sqrt(s))
x[1] ~ Normal(m, sqrt(s))
x[2] ~ Normal(m, sqrt(s))
return s, m
end
mf = gdemo([1.5, 2.0])how do I evaluate the unnormalised posterior, say, at s=1.2 m=0.5?