Hi all,
I just released a python library for interactive topic model
visualization. It integrates with IPython notebook and has some helpers
to quickly visualize gensim's LdaModel.
Check out the project page and the example notebooks on how to use it with gensim.
The gensim support right now is pretty basic. If you end up using it and find ways of improving it or expanding it (e.g. support the different model types) please send a pull request my way. :)
Happy topic modelling!
-Ben
--
You received this message because you are subscribed to the Google Groups "gensim" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gensim+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Wow, this is great! I've used LDAvis in the past, and not having to break out of my gensim workflow to go to R is certainly welcomed.
Hello Ben,
that's a really awesome package, I just tried it :)
I also used my own data preparation (not your gensim.py), but I think I can see where the bug is:
The term-topic matrix is ordered differently than your vocabulary:
The order of words indoesn't match the order of words in
As a result, I guess you'd get random labels for the relevant tokens.
Re. extensions: it would be awesome to have a way of exploring the documents-topics relationship too -- same way you can now visualize terms-topics relationships. I don't think I can do this myself, but if you need assistance on the Python/gensim side, I'd be happy to help!
You received this message because you are subscribed to a topic in the Google Groups "gensim" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/gensim/9IESNxWNuqk/unsubscribe.
To unsubscribe from this group and all its topics, send an email to gensim+un...@googlegroups.com.
Hi Ben,
--