Class POSTaggerFactory
java.lang.Object
opennlp.tools.util.BaseToolFactory
opennlp.tools.postag.POSTaggerFactory
The factory that provides
POSTagger default implementations and resources.-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionInitializes aPOSTaggerFactorythat provides the default implementation of the resources.POSTaggerFactory(byte[] featureGeneratorBytes, Map<String, Object> resources, opennlp.tools.postag.TagDictionary posDictionary) Initializes aPOSTaggerFactoryfrom a given set of the resources. -
Method Summary
Modifier and TypeMethodDescriptionstatic POSTaggerFactorycreate(String subclassName, byte[] featureGeneratorBytes, Map<String, Object> resources, opennlp.tools.postag.TagDictionary posDictionary) Instantiates aPOSTaggerFactoryvia a givensubclassName.A model's implementation should call this constructor that creates a model programmatically.Creates aMapwith pairs of keys andArtifactSerializer.opennlp.tools.postag.TagDictionaryopennlp.tools.util.featuregen.AdaptiveFeatureGeneratorCreates theAdaptiveFeatureGenerator.opennlp.tools.postag.TagDictionarycreateTagDictionary(File dictionary) Initializes aTagDictionaryfrom adictionary file.opennlp.tools.postag.TagDictionaryInitializes aTagDictionaryfrom adictionary stream.opennlp.tools.postag.POSContextGeneratoropennlp.tools.postag.POSContextGeneratorgetPOSContextGenerator(int cacheSize) opennlp.tools.util.SequenceValidator<String> opennlp.tools.postag.TagDictionaryvoidsetTagDictionary(opennlp.tools.postag.TagDictionary dictionary) voidValidates the parsed artifacts.Methods inherited from class BaseToolFactory
create, create, createManifestEntries
-
Constructor Details
-
POSTaggerFactory
public POSTaggerFactory()Initializes aPOSTaggerFactorythat provides the default implementation of the resources. -
POSTaggerFactory
public POSTaggerFactory(byte[] featureGeneratorBytes, Map<String, Object> resources, opennlp.tools.postag.TagDictionary posDictionary) Initializes aPOSTaggerFactoryfrom a given set of the resources.- Parameters:
featureGeneratorBytes- The bytes for feature generation.resources- Additional resources as key-value map.posDictionary- ATagDictionaryused for the new instance.
-
-
Method Details
-
createFeatureGenerators
public opennlp.tools.util.featuregen.AdaptiveFeatureGenerator createFeatureGenerators()Creates theAdaptiveFeatureGenerator. Usually this is a set of generators contained in theAggregatedFeatureGenerator.Note: The generators are created on every call to this method.
- Returns:
- the feature generator or
nullif there is no descriptor in the model - Throws:
IllegalStateException- Thrown if inconsistencies occurred during creation.
-
createArtifactSerializersMap
Description copied from class:BaseToolFactoryCreates aMapwith pairs of keys andArtifactSerializer. The models implementation should call this method fromBaseModel#createArtifactSerializersMap.The base implementation will return a
HashMapthat should be populated by subclasses.- Overrides:
createArtifactSerializersMapin classBaseToolFactory
-
createArtifactMap
Description copied from class:BaseToolFactoryA model's implementation should call this constructor that creates a model programmatically.The base implementation will return a
HashMapthat should be populated by subclasses.- Overrides:
createArtifactMapin classBaseToolFactory- Returns:
- Retrieves a
Mapwith pairs of keys and objects.
-
createTagDictionary
Initializes aTagDictionaryfrom adictionary file.- Parameters:
dictionary- TheFileused for creating the dictionary.- Returns:
- A valid
TagDictionaryready for use. - Throws:
IOException- Thrown if IO errors occurred during creation.
-
createTagDictionary
Initializes aTagDictionaryfrom adictionary stream.- Parameters:
in- TheInputStreamused for creating the dictionary.- Returns:
- A valid
TagDictionaryready for use. - Throws:
IOException- Thrown if IO errors occurred during creation.
-
setTagDictionary
public void setTagDictionary(opennlp.tools.postag.TagDictionary dictionary) -
getTagDictionary
public opennlp.tools.postag.TagDictionary getTagDictionary()- Returns:
- The
TagDictionaryused.
-
getPOSContextGenerator
public opennlp.tools.postag.POSContextGenerator getPOSContextGenerator()- Returns:
- The
POSContextGeneratorwith a default cache size of0.
-
getPOSContextGenerator
public opennlp.tools.postag.POSContextGenerator getPOSContextGenerator(int cacheSize) - Parameters:
cacheSize- Must be greater than or equal to0.- Returns:
- The
POSContextGeneratorconfigured with the givencacheSize.
-
getSequenceValidator
- Returns:
- The
SequenceValidatorused.
-
validateArtifactMap
public void validateArtifactMap() throws opennlp.tools.util.InvalidFormatExceptionDescription copied from class:BaseToolFactoryValidates the parsed artifacts.Note: Subclasses should generally invoke
super.validateArtifactMapat the beginning of this method.- Specified by:
validateArtifactMapin classBaseToolFactory- Throws:
opennlp.tools.util.InvalidFormatException- Thrown if validation found invalid states.
-
create
public static POSTaggerFactory create(String subclassName, byte[] featureGeneratorBytes, Map<String, Object> resources, opennlp.tools.postag.TagDictionary posDictionary) throws opennlp.tools.util.InvalidFormatExceptionInstantiates aPOSTaggerFactoryvia a givensubclassName.- Parameters:
subclassName- The class name used for instantiation. Ifnull, an instance ofPOSTaggerFactorywill be returned per default. Otherwise, theExtensionLoadermechanism is applied to load the requestedsubclassName.featureGeneratorBytes- The bytes for feature generation.resources- Additional resources as key-value map.posDictionary- ATagDictionaryused for the new instance.- Returns:
- @return A valid
POSTaggerFactoryinstance. - Throws:
opennlp.tools.util.InvalidFormatException- Thrown if theExtensionLoadermechanism failed to load the factory via thesubclassName.
-
createEmptyTagDictionary
public opennlp.tools.postag.TagDictionary createEmptyTagDictionary()- Returns:
- An empty, case-sensitive
TagDictionary.
-