cc.mallet.cluster.KBestClusterer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mallet Show documentation
Show all versions of mallet Show documentation
MALLET is a Java-based package for statistical natural language processing,
document classification, clustering, topic modeling, information extraction,
and other machine learning applications to text.
The newest version!
package cc.mallet.cluster;
import cc.mallet.pipe.Pipe;
import cc.mallet.types.InstanceList;
/**
* Return the K best predicted Clusterings
* @author culotta
*
*/
public abstract class KBestClusterer extends Clusterer {
public KBestClusterer(Pipe instancePipe) {
super(instancePipe);
}
public abstract Clustering[] clusterKBest(InstanceList trainingSet, int k);
}