gpt4 book ai didi

java - 什么是使用 mallet 库的主题建模中的估计函数

转载 作者:行者123 更新时间:2023-11-29 05:15:18 25 4
gpt4 key购买 nike

我是主题建模的新手,我正在尝试使用 Mallet 库,但我有一个问题。

我正在使用 LDA 的简单并行线程实现来查找某些实例的主题。我的问题是 ParallelTopicModel 中的估计函数是什么?

我在 API 中搜索但他们没有描述。我也读过this tutorial .

谁能解释一下这个函数是什么?

编辑

这是我的代码示例:

 public void runModel(Sting [] str){    
ParallelTopicModel model = new ParallelTopicModel(numTopics);
ArrayList<Pipe> pipeList = new ArrayList<Pipe>();
// Pipes: lowercase, tokenize, remove stopwords, map to features
pipeList.add(new CharSequenceLowercase());
pipeList.add(new CharSequence2TokenSequence(Pattern.compile("\\p{L}[\\p{L}\\p{P}]+\\p{L}")));
pipeList.add(new TokenSequence2FeatureSequence());
InstanceList instances = new InstanceList(new SerialPipes(pipeList));
instances.addThruPipe(new StringArrayIterator(str));

model.addInstances(instances);
model.setNumThreads(THREADS);
model.setOptimizeInterval(optimizeation);
model.setBurninPeriod(burninInterval);
model.setNumIterations(numIterations);
// model.estimate();
}

最佳答案

estimate() 运行 LDA,尝试根据您已经设置的数据和设置来估计主题模型。

看看the ParrallelTopicModel sourcemain() 函数获取有关估计模型所需内容的灵感。

关于java - 什么是使用 mallet 库的主题建模中的估计函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26769210/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com