Package opennlp.tools.sentdetect
Class SentenceModel
java.lang.Object
opennlp.tools.util.model.BaseModel
opennlp.tools.sentdetect.SentenceModel
- All Implemented Interfaces:
Serializable
,ArtifactProvider
The
SentenceModel
is the model used by a learnable
SentenceDetector
.- See Also:
-
Field Summary
Fields inherited from class opennlp.tools.util.model.BaseModel
TRAINING_CUTOFF_PROPERTY, TRAINING_EVENTHASH_PROPERTY, TRAINING_ITERATIONS_PROPERTY
-
Constructor Summary
ConstructorDescriptionSentenceModel
(File modelFile) Initializes aSentenceModel
instance via a validFile
.Initializes aSentenceModel
instance via a validInputStream
.SentenceModel
(String languageCode, MaxentModel sentModel, Map<String, String> manifestInfoEntries, SentenceDetectorFactory sdFactory) Initializes aSentenceModel
instance via given parameters.SentenceModel
(URL modelURL) Initializes aSentenceModel
instance via a validURL
.SentenceModel
(Path modelPath) Initializes aSentenceModel
instance via a validPath
. -
Method Summary
Modifier and TypeMethodDescriptionchar[]
boolean
Methods inherited from class opennlp.tools.util.model.BaseModel
getArtifact, getLanguage, getManifestProperty, getVersion, isLoadedFromSerialized, serialize, serialize, serialize
-
Constructor Details
-
SentenceModel
public SentenceModel(String languageCode, MaxentModel sentModel, Map<String, String> manifestInfoEntries, SentenceDetectorFactory sdFactory) Initializes aSentenceModel
instance via given parameters.- Parameters:
languageCode
- The ISO language code for this model. Must not benull
.sentModel
- A validMaxentModel
.manifestInfoEntries
- Additional information kept in the manifest.sdFactory
- TheSentenceDetectorFactory
for creating related objects.
-
SentenceModel
Initializes aSentenceModel
instance via a validInputStream
.- Parameters:
in
- TheInputStream
used for loading the model.- Throws:
IOException
- Thrown if IO errors occurred during initialization.
-
SentenceModel
Initializes aSentenceModel
instance via a validFile
.- Parameters:
modelFile
- TheFile
used for loading the model.- Throws:
IOException
- Thrown if IO errors occurred during initialization.
-
SentenceModel
Initializes aSentenceModel
instance via a validPath
.- Parameters:
modelPath
- ThePath
used for loading the model.- Throws:
IOException
- Thrown if IO errors occurred during initialization.
-
SentenceModel
Initializes aSentenceModel
instance via a validURL
.- Parameters:
modelURL
- TheURL
used for loading the model.- Throws:
IOException
- Thrown if IO errors occurred during initialization.
-
-
Method Details
-
getFactory
-
getMaxentModel
-
getAbbreviations
-
useTokenEnd
public boolean useTokenEnd() -
getEosCharacters
public char[] getEosCharacters()
-