Giter Site home page Giter Site logo

Comments (1)

bt2901 avatar bt2901 commented on June 1, 2024

This is expected behaviour for hierarchical models. In that case, ARTM adds 'pseudodocuments' to the collection and tries to factorize this new collection. Each pseudodocument is related to some topic of the parent model (since the distributions p(subtopic|doc) and p(subtopic|parent_topic) are similar computationally). If you run child_model.get_parent_psi(), the Psi matrix you obtain should consist of the "extra" columns of Theta, precisely.

Also, for convergence/memory efficiency reasons the following patter is suggested:

model = artm.ARTM(
            ...
            # cache_theta=False,
            theta_columns_naming='title'
)
model.fit_offline(batch_vectorizer, ...)
theta = model.transform(batch_vectorizer)

The result is pandas DataFrame where the index is topic names, and columns are document names (without pseudodocuments).

You are absolutely correct that this could be made more clear in the documentation.

from bigartm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.