我可以在Jupyter笔记本中运行此代码,并且它的可视化效果很好:
lda = gensim.models.ldamodel.LdaModel.load('C:/bla/TopicModelling/model.gensim')
lda_display = pyLDAvis.gensim.prepare(lda, corpus, dictionary, sort_topics=False)
pyLDAvis.display(lda_display)
我还配置了Visual Studio 2017以在IPython交互模式下运行。但是,当我运行代码时,没有任何显示。但是,这样的代码:
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 5, 10)
y = x ** 2
plt.plot(x, y, 'r', x, x ** 3, 'g', x, x ** 4, 'b')
plt.show()
显示一个图形。我想念什么?我可以使用Visual Studio还是必须使用Jupyter笔记本?谢谢!