Built-in visualization of GapEncoder topics? #909
jeromedockes
started this conversation in
General
Replies: 1 comment
-
One of the strengths of the GapEncoder is its interpretability. I wonder if we could have some fitted attributes or methods to inspect the topics more easily? maybe generating a plot like the one in example 2, or per-topic bar plots,
Long term yes. Mid-term, I would like to move forward our html UX first
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
One of the strengths of the GapEncoder is its interpretability. I wonder if we could have some fitted attributes or methods to inspect the topics more easily? maybe generating a plot like the one in example 2, or per-topic bar plots, or just printing lists of term: loading lines ... or getting them as a dictionary or Series to make our own plots.
we can already see the top N terms of each topic with
get_feature_names_out
, but we may want to see the coefficient as well, or get the result in a more convenient format than a comma-separated listBeta Was this translation helpful? Give feedback.
All reactions