-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Document Influence Model #903
Comments
@tmylk , could you add the appropriate labels for this? |
I would like to take this up. |
@anmol01gulati , have a look at #840 and tell me if anything interests you! |
I am taking a shot on this. |
Awesome! |
@mjawa , any updates? |
It would be another two weeks before I can take a stab on this. |
@mjawa any updates on this? Can I take this up? |
@dsquareindia please go ahead, @mjawa excused himself due to private issues. |
Awesome, can't wait to see the PR, @dsquareindia 😉 |
I would work on this if its okay. But i need a to read the paper first. Any other blog that expalins this. |
What exactly do you want explained? |
Is anyone working on this? |
Ping @dsquareindia @bhargavvader @kris-singh, what's status here? |
I'll be glad to help anyone willing to do this. Note: refer to #840 as well for more links and information. |
Document Influence Model is a modelling technique described here which allows us to identify which documents most influenced a topic.
The C++ implementation for the same is here, same place where the Dynamic Topic Modelling code is.
During my implementation of python DTM, I sort of 'set up' the code for DIM.
For example, in line 249 of the DTM code, if the model type was
DIM
, it would call the appropriate method for DIM. The methods are usually quite similar to the DTM version, which was translated to python from the C++ code. By referring the C++ code and the DTM python code it's possible to implement DIM by simply coding up and plugging in the appropriate methods with a few changes.As a bonus, if one can find a better way to vectorise or speed up the DTM code while doing this, it'll be awesome!
Would be happy to discuss ideas or ways to go about doing this on this thread if anyone wishes to take this up.
The text was updated successfully, but these errors were encountered: