dfr-browser
dfr-browser copied to clipboard
About other LDA models
First of all kudos 💯 for this amazing data explorer! I know that this question has been asked several times, my question is how to start with that in the case I have a very basic/raw LDA implementation (LDA/Gibbs) where the output data are like:
{
"topic": 1,
"terms": [
{
"term": "love",
"weight": 0.068
},
{
"term": "body",
"weight": 0.03
},
{
"term": "baby",
"weight": 0.027
},
{
"term": "girl",
"weight": 0.025
},
{
"term": "dance",
"weight": 0.02
}
]
}
i.e. the array of topics plus the metadata of the referring documents of course.