|
I am managing an input matrix table made of real values, where each entry correspond to the frequency of a word to be associated with a topic. These are the first rows:
I've been studying several LDA packages, such as "topicmodels" ( http://cran.r-project.org/web/packages/topicmodels/index.html ) R package, and they all need an input integer matrix. I cannot normalize my real input matrix to integer values otherwise I will corrupt it, and it will loose its original sense. How could I use my original real value table matrix as input to an LDA package? |