Skip to content
View rchurch4's full-sized avatar
Block or Report

Block or report rchurch4

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. GU-DataLab/gdtm GU-DataLab/gdtm Public

    A Python Package containing wrappers for topic models, including TND, NLDA, GTM, and temporal topic-noise models.

    Python 11 1

  2. GU-DataLab/topic-noise-models-source GU-DataLab/topic-noise-models-source Public

    Mallet implementations of Topic-Noise Models

    Java 3 1

  3. running_nlda.py running_nlda.py
    1
    from gdtm.models import NLDA
    2
    
                  
    3
    # Set these paths to the path where you saved the Mallet implementation of each model, plus bin/mallet
    4
    tnd_path = 'path/to/mallet-tnd/bin/mallet'
    5
    lda_path = 'path/to/mallet-lda/bin/mallet'
  4. running_gtm.py running_gtm.py
    1
    from gdtm.models import GTM
    2
    
                  
    3
    # Set these paths to the path where you saved the Mallet implementation of each model, plus bin/mallet
    4
    tnd_path = 'path/to/mallet-tnd/bin/mallet'
    5
    gtm_path = 'path/to/mallet-gtm/bin/mallet'