CTM(topicmodels)
CTM()所属R语言包:topicmodels
Correlated Topic Model
相关的主题模型
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Estimate a CTM model using for example the VEM algorithm.
估计一个CTM模型,为VEM算法的使用例子。
用法----------Usage----------
CTM(x, k, method = "VEM", control = NULL, model = NULL, ...)
参数----------Arguments----------
参数:x
Object of class "DocumentTermMatrix" with term-frequency weighting or an object coercible to a "simple_triplet_matrix" with integer entries.
类的对象"DocumentTermMatrix"与词频的比重或一个对象转换成一个"simple_triplet_matrix"整项。
参数:k
Integer; number of topics.
整数数量的主题。
参数:method
The method to be used for fitting; currently only method = "VEM" is supported.
用于拟合的方法,目前仅method = "VEM"支持。
参数:control
A named list of the control parameters for estimation or an object of class "CTM_VEMcontrol".
估计或对象类"CTM_VEMcontrol"的控制参数命名列表。
参数:model
Object of class "CTM" for initialization.
类"CTM"初始化的对象。
参数:...
Currently not used.
目前没有使用。
Details
详细信息----------Details----------
The C code for CTM from David M. Blei and co-authors is used to estimate and fit a correlated topic model.
CTM,从大卫M. Blei和共同作者的C代码是用来估计和适应相关的主题模型。
值----------Value----------
CTM() returns an object of class "CTM".
CTM()返回一个对象类"CTM"。
(作者)----------Author(s)----------
Bettina Gruen
参考文献----------References----------
A Correlated Topic Model of Science. The Annals of Applied Statistics, 1(1), 17–35.
参见----------See Also----------
"CTM_VEMcontrol"
"CTM_VEMcontrol"
实例----------Examples----------
data("AssociatedPress", package = "topicmodels")
ctm <- CTM(AssociatedPress[1:20,], k = 2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|