One Simple Way
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.
One Example
Implement an Adaptive Importance Sampling algorithm to evaluate mean and variance of a density
π(x)∝N(x;0,2I4)+2N(x;3e,I4)+1.5N(x;−3e,D4) 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
gk(x)=(1−ϵ)gk−1(x)+ϵtν(μ,Σ) in which one chooses (ϵ,μ,Σ) to minimize the variation of coefficient of the importance weights.