我正在使用pyLDAvis进行主题建模可视化。

Python 3.5版
pyLDAvis版本2.1.2
熊猫0.22.0版

我的代码如下:
pyLDAvis.enable_notebook()

vis = pyLDAvis.gensim.prepare(lda_model, corpus, id2word)


错误是:

TypeError: concat() got an unexpected keyword argument 'sort'

我在网上做了一些研究,似乎pyLDAvis依赖于熊猫0.17.0版?还有其他主题建模可视化库吗?

最佳答案

当我使用pandas 0.20.3和pyLDAvis 2.1.2时,也会出现此错误。将熊猫更新为0.20.4之后,问题解决了。

关于python - pyLDAvis concat()得到了意外的关键字参数'sort',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52083841/

10-11 07:39