无法在R中运行ldatuning包

时间:2016-06-21 13:32:52

标签: r parallel-processing

我在Windows 7 quadcore笔记本电脑上运行R 3.2.2。包是ldatuning v 0.1.9和topicmodels v 0.2-4。

所以我尝试使用ldatuning软件包,我甚至无法从CRAN页面获得示例。问题与并行处理位有关。根据我的发现,我的猜测是单独的核心没有加载所需的软件包之一,我无法弄清楚如何解决这个问题。这是我第一次尝试并行处理。

这是我正在运行的代码:

    library("ldatuning")
    library("topicmodels")
    data("AssociatedPress", package="topicmodels")
    dtm <- AssociatedPress[1:10, ]

    result <- FindTopicsNumber(
    dtm,
    topics = seq(from = 2, to = 15, by = 1),
    metrics = c("Griffiths2004", "CaoJuan2009", "Arun2010", "Deveaud2014"),
    method = "Gibbs",
    control = list(seed = 77),
    mc.cores = 2L,
    verbose = TRUE
    )

以下是错误消息:

    Error in checkForRemoteErrors(val) : 
    2 nodes produced errors; first error: there is no package called 'topicmodels'

0 个答案:

没有答案