All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gov.sandia.cognition.text.topic.LatentDirichetAllocationVectorGibbsSampler Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
package gov.sandia.cognition.text.topic;

import java.util.Random;

/**
 * @deprecated 
 * Deprecated class to fix a spelling error in original version
 * @author jfsheph
 */
@Deprecated
public class LatentDirichetAllocationVectorGibbsSampler extends LatentDirichletAllocationVectorGibbsSampler
{
    public LatentDirichetAllocationVectorGibbsSampler() {
        super();
    }
    
    public LatentDirichetAllocationVectorGibbsSampler(
        final int topicCount,
        final double alpha,
        final double beta,
        final int maxIterations,
        final int burnInIterations,
        final int iterationsPerSample,
        final Random random) {
        super(topicCount, alpha, beta, maxIterations, burnInIterations, iterationsPerSample, random);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy