I´m currently trying to evaluate my topic models with gensim topiccoherencemodel:
from gensim.models.coherencemodel import CoherenceModel
cm_u_mass = CoherenceModel(model = model1, corpus = corpus1, coherence = 'u_mass')
coherence_u_mass = cm_u_mass.get_coherence()
print('\nCoherence Score: ', coherence_u_mass)
The output is just negative values. Is this correct? Can anybody provide a formula or something how u_mass works?