-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Convenient way of providing LDA topic summary #1411
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
Comments
abgoswam
added a commit
to abgoswam/machinelearning
that referenced
this issue
Nov 16, 2018
It turns out this can be handled by mapping slot names from the input schema during training. I have taken care of this in PR #1410 |
PR #1410 took care of this |
This is again an issue since the PigSty API was removed. This functionality is no longer available in the Dynamic API. #4322 tracks all the issues filed for LDA topic summary. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In the
LdaTransform
, the details of the learnt model are contained in theLdaState
object. When the user wants to introspect the LDA model learnt during the transformation, we return a topic summary vector .We need to find a proper way of returning topic summary information to the user. Specifically the words that map to the topic summary vector
For this we need to figure out how to extract details from the
LdaState
object using C#. CurrentlyLdaState
invokes native code behind the scenes to get model info.The text was updated successfully, but these errors were encountered: