-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-9245] [MLLIB] LDA topic assignments #8329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Test build #41302 has finished for PR 8329 at commit
|
|
did not actually fail |
|
test this please |
|
Test build #41304 has finished for PR 8329 at commit
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix indentation
|
LGTM except two minor comments. |
|
OK, updated! I created a temp val for the first comment since, otherwise, it was hard to get the indentation to behave nicely. |
|
LGTM. |
|
Test build #41332 has finished for PR 8329 at commit
|
|
Merged into master and branch-1.5. Thanks! |
For each (document, term) pair, return top topic. Note that instances of (doc, term) pairs within a document (a.k.a. "tokens") are exchangeable, so we should provide an estimate per document-term, rather than per token. CC: rotationsymmetry mengxr Author: Joseph K. Bradley <[email protected]> Closes #8329 from jkbradley/lda-topic-assignments. (cherry picked from commit eaafe13) Signed-off-by: Xiangrui Meng <[email protected]>
For each (document, term) pair, return top topic. Note that instances of (doc, term) pairs within a document (a.k.a. "tokens") are exchangeable, so we should provide an estimate per document-term, rather than per token.
CC: @rotationsymmetry @mengxr