progressive_smoothEM.RdCoarse-to-fine continuation scheme for initializing SmoothEM means over nested grids.
progressive_smoothEM(
data,
m_max = 6,
lambda_final = 500,
q = 2,
ridge = 0,
nugget_kriging = 0,
tol = 0.001,
max_iter = 1000,
relative_lambda = TRUE,
modelName = "EEI",
coords_show = c(1, 2, 3),
plot_each_stage = TRUE,
verbose = TRUE,
include.data = TRUE
)Numeric matrix n x d.
Finest grid exponent; final grid size is 2^m_max + 1.
Penalty strength on final grid.
RW order (e.g. 2 for RW2).
Ridge added in RW precision construction.
Nugget added to Q_UU during kriging solve.
Convergence tolerance on ELBO changes.
Maximum number of EM iterations.
Logical; if TRUE, rescales Q_prior by current marginal variances.
Covariance model: one of "VVV", "VII", "EII", "EEI".
Coords to visualize when plot_each_stage=TRUE.
If TRUE, plot kriged mean curves each stage.
If TRUE, print stage summaries and forward verbose to EM_algorithm().
If TRUE, include data in returned fits.
List(grid, Q_final_1d, fits, mu_full_history, mu_full_list_final, meta_history, mclust).