Replies: 1 comment
-
When you run |
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
-
Hi there,
I had a question about the
map_probabilities
function. It seems to only update the probabilities attribute iflen(probabilities.shape) == 2
but my question is when is this condition actually met?As far as I'm aware the shape should always be
(n_docs, )
if running a "regular" topic model since the probabilities are given for the assigned topic per document only, or if you setcalculate_probabilities=True
then it'll be (n_docs, n_topics) right?I want to understand if/when the probabilities per document are updated, but as far as I understand it this would only be recalculated if you called the hdbscan model again. The only thing that changes is that you're saying document X with probability p is now mapped to topic Y instead of topic Z but doesn't the probability p stay the same?
Beta Was this translation helpful? Give feedback.
All reactions