vbcomp(VBmix)
vbcomp()所属R语言包:VBmix
vbcomp
VBCOMP
译者:生物统计家园网 机器人LoveR
描述----------Description----------
estimates the variational posterior distribution of a GMM that aggregates a collection of GMM. A lower bound is calculated and monitored at each iteration. This posterior can be used for various purposes (e.g. MC proposal distribution). It can be transformed using extractSimpleModel, outputing a GMM.
估计变后验分布的GMM,聚集的集合GMM。的下界是在每一次迭代计算和监测。此后路可以被用于各种目的(例如,MC建议分布)。可以使用extractSimpleModel,允许输出GMM转换。
用法----------Usage----------
vbcomp(models, ncomp, thres = 0.1, maxit = NULL)
参数----------Arguments----------
参数:models
GMM made with the weighted sum of the collection of GMM to aggregate.
GMM与聚集的GMM的集合的加权总和。
参数:ncomp
number of components in the posterior.
后路中的组件数量。
参数:thres
threshold for lower bound variations between 2 iterations. Convergence is decided if this variation is below thres.
阈值下限2次迭代之间的差异。如果这种变化是低于THRES,决定收敛。
参数:maxit
if NULL, the stopping criterion is related to thres. If not NULL, maxit iterations are performed.
如果为NULL,则停止条件相关的THRES。如果不为NULL,麦克斯特迭代进行。
值----------Value----------
estimated posterior with ncomp components.
估计后NCOMP组件。
(作者)----------Author(s)----------
Pierrick Bruneau
参考文献----------References----------
models with a variational-Bayes approach_, Pattern Recognition, Volume 43, Pages 850-858.
参见----------See Also----------
varbayes extractSimpleModel
varbayes extractSimpleModel
实例----------Examples----------
temp1 <- newGmm()
for(i in 1:10) temp1 <- appendToGmm(temp1, gmmpen[[i]])
temp2 <- vbcomp(temp1, 50)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|