I've created a DMR Topic model (via Java API) which calculates the topic distribution based on the publication-year of the documents.
The resulting distribution is a bit confusing, because there are a lot of negative propabilities. Sometimes all propabilities for a whole topic are negative values. See:
Q1: Why are there negative values? The lowest possible possibility for a topic distribution for a given feature should be at least 0,0 ... I guess?
Additional I build a LDA model where the ModelLogLikelihood seems to be surreal. I trained the model with nearly 4 million documents and 20 topics. Alpha =1.0 ; Beta = 0.01 ; # iterations 1000;
Results in Model-Log likelihood: -8.895651309362761E8
Q2: Can this value be correct? Or am I doing something wrong?