Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
n_components里面有什么sklearn.NMF?
n_components
sklearn.NMF
nmf = NMF(n_components=2, init='random', random_state=0) nmf.fit(V)
这是我如何看到使用此参数的一个示例:
在自然语言处理中用于主题建模时,n_components可以作为主题数量打印出来。
例如,如果我在 TF-IDF 矢量化器上拟合 NMF 对象并设置n_components= 10,我可以使用它来显示 10 个不同的单词集合,我可以将它们解释为我的主题。