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

com.etsy.conjecture.topics.lda.LDATopics Maven / Gradle / Ivy

There is a newer version: 0.2.3
Show newest version
package com.etsy.conjecture.topics.lda;

import java.io.Serializable;

public interface LDATopics extends Serializable {

    public void setDict(LDADict dict) throws Exception;

    public LDADict getDict();

    public double wordProb(int word, int topic);

    public int numTopics();

    public int dictSize();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy