24

i am analysing text with topic modelling and using Gensim and pyLDAvis for that. Would like to share the results with distant colleagues, without a need for them to install python and all required libraries. Is there a way to export interactive graphs as HTML/JS files that could be uploaded to any web server? I've found something mentioned in documentation, but have no idea how to implement it: https://github.com/bmabey/pyLDAvis/blob/master/pyLDAvis/_display.py

Darius
  • 596
  • 1
  • 6
  • 22

1 Answers1

52

pyLDAvis.save_html should work:

p = pyLDAvis.gensim.prepare(topic_model, corpus, dictionary)
pyLDAvis.save_html(p, 'lda.html')
Mikhail Korobov
  • 21,908
  • 8
  • 73
  • 65