我正在尝试在数据集上应用LatentDirichletAllocation
。当我尝试为LDA的openPdf = (content) => {
return this.save(content).then(() => {
window.open(`${window.location.pathname}/print`, '_blank');
});
}
参数赋值时。我得到以下错误。
n_component
答案 0 :(得分:2)
如果您使用旧版sklearn(< 0.19),则应使用n_topics
arg代替n_components
lda = LatentDirichletAllocation(n_topics=100)
中找到