Topic Modeling

class orangecontrib.text.topics.LdaWrapper(**kwargs)[source]
fit(corpus, **kwargs)

Train the model with the corpus.

Parameters:corpus (Corpus) – A corpus to learn topics from.
transform(corpus)

Create a table with topics representation.

class orangecontrib.text.topics.LsiWrapper(**kwargs)[source]
fit(corpus, **kwargs)

Train the model with the corpus.

Parameters:corpus (Corpus) – A corpus to learn topics from.
transform(corpus)

Create a table with topics representation.

class orangecontrib.text.topics.HdpWrapper(**kwargs)[source]
fit(corpus, **kwargs)

Train the model with the corpus.

Parameters:corpus (Corpus) – A corpus to learn topics from.
transform(corpus)

Create a table with topics representation.