我正在使用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?还有其他主题建模可视化库吗?
答案 0 :(得分:0)
当我使用pandas 0.20.3和pyLDAvis 2.1.2时,也会出现此错误。将熊猫更新为0.20.4后,问题解决了。