com.github.chen0040.plsa.Document Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-plsa Show documentation
Show all versions of java-plsa Show documentation
Java implementation of probabilistic latent semantic analysis (pLSA)
The newest version!
package com.github.chen0040.plsa;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Created by xschen on 9/9/15.
*/
public interface Document {
Map indexedWordCount();
List wordIndices();
int docIndex();
String content();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy