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

cc.mallet.fst.MaxLatticeFactory 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.fst;

import java.io.Serializable;

import cc.mallet.types.Sequence;

public abstract class MaxLatticeFactory implements Serializable {
	
	public MaxLattice newMaxLattice (Transducer trans, Sequence inputSequence)
	{
		return newMaxLattice (trans, inputSequence, null);
	}
	
	// You may pass null for output
	public abstract MaxLattice newMaxLattice (Transducer trans, Sequence inputSequence, Sequence outputSequence);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy