Hey Gotticketsto360tour. I am running to the same issue with Streamlit.
here is my current code. Any idea on how I can display it in Streamlit app?
lda_model = gensim.models.ldamodel.LdaModel(corpus=corpus, id2word=id2word, num_topics=5, random_state=1, update_every=1, chunksize=100, passes=10, alpha=‘auto’, per_word_topics=True)
import pyLDAvis
import pyLDAvis.gensim_models as gensimvis
vis = gensimvis.prepare(lda_model, corpus, id2word)