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

cc.mallet.cluster.KBestClusterer Maven / Gradle / Ivy

Go to download

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);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy