Package cc.mallet.topics

Examples of cc.mallet.topics.SimpleLDA


       
        public SimpleMalletLDA(Corpus corpus, int numTopics, int numIterations, double alpha, double beta) {
                this.corpus = corpus;
                this.numTopics = numTopics;
                this.numIterations = numIterations;
                LDA = new SimpleLDA(numTopics, alpha, beta);
        }
View Full Code Here

TOP

Related Classes of cc.mallet.topics.SimpleLDA

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.