example-models
example-models copied to clipboard
Simplify LDA input parameterization
I tried to simplify LDA input representation by using a simple M x V
matrix of word frequencies where M and V represent number of documents and words. In the model, now instead of iterating over all words of all documents, iterations are over each element of the M x V
matrix.
Thanks for submitting. I've been out for a while, so haven't been able to review this, but I'll get to it ASAP.
Oh, and I'd suggest adding suffixes to existing model names like _counts
to indicate you're taking sufficient stats rather than the raw data.
Oh, and I'd suggest adding suffixes to existing model names like
_counts
to indicate you're taking sufficient stats rather than the raw data.
You mean adding _counts
to the new model? Because it's the one uses counts.
Anything to distinguish the way in which data is coded in the two approaches. So yes, I meant keeping
On Nov 17, 2018, at 6:04 PM, Gökçen Eraslan [email protected] wrote:
Oh, and I'd suggest adding suffixes to existing model names like _counts to indicate you're taking sufficient stats rather than the raw data.
You mean adding _counts to the new model? Because it's the one uses counts.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub, or mute the thread.