Last updated
start with a trial density, say g0(x)=tα(x;μ0,Σ0)
with weighted Monte Carlo samples, estimate the parameters, mean and covariate matrix, and construct new trial density, say g1(x)=tα(x;μ1,Σ1)
construct a certain measure of discrepancy between the trial distribution and the target distribution, such as the coefficient of variation of importance weights, does not improve any more.
Implement an Adaptive Importance Sampling algorithm to evaluate mean and variance of a density
where e=(1,1,1,1),I4=diag(1,1,1,1),D4=diag(2,1,1,.5).
A possible procedure is as follows:
start with a trial density g0=tν(0,Σ)
Recursively, build
in which one chooses (ϵ,μ,Σ) to minimize the variation of coefficient of the importance weights.
Last updated