![JAR search and dependency download from the Maven repository](/logo.png)
com.asher_stern.crf.crf.run.CrfFeatureGeneratorFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of CRF Show documentation
Show all versions of CRF Show documentation
Implementation of linear-chain Conditional Random Fields (CRF) in pure Java
package com.asher_stern.crf.crf.run;
import java.util.List;
import java.util.Set;
import com.asher_stern.crf.utilities.TaggedToken;
/**
* A factory which creates a {@link CrfFeatureGenerator}.
*
* @author Asher Stern
* Date: November 2014
*
*/
public interface CrfFeatureGeneratorFactory
{
/**
* Create the {@link CrfFeatureGenerator}.
* @param corpus
* @param tags
* @return
*/
public CrfFeatureGenerator create(Iterable extends List extends TaggedToken >> corpus, Set tags);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy