tm_map在Linux上的R 3.0.1中有parallel :: mclapply错误

时间:2014-02-21 10:53:21

标签: r tm mclapply

我在平台上使用R 3.0.1:i486-pc-linux-gnu(32位)。我正在尝试使用tm库中的tm_map。我的SmartStopWord列表中有4080个单词。但是当我执行这段代码时:

library(tm)
Get_Corpus <- system.file("texts","MyFile", package = "tm")
(corpus <- Corpus(DirSource(Get_Corpus, encoding = "UTF-8"),readerControl
 = list(language = "lat")))
show(corpus)
corpus <- tm_map(corpus, removeWords, stopwords("SmartStopWord"))

我收到此错误:

Message d'avis :
In parallel::mclapply(x, FUN, ...) :
all scheduled cores encountered errors in user code

有没有人知道这方面的解决方案?

0 个答案:

没有答案