Package opennlp.tools.sentdetect
Class ThreadSafeSentenceDetectorME
java.lang.Object
opennlp.tools.sentdetect.ThreadSafeSentenceDetectorME
- All Implemented Interfaces:
AutoCloseable
,SentenceDetector
@ThreadSafe
public class ThreadSafeSentenceDetectorME
extends Object
implements SentenceDetector, AutoCloseable
A thread-safe version of
SentenceDetectorME
. Using it is completely transparent.
You can use it in a single-threaded context as well, it only incurs a minimal overhead.- See Also:
-
Constructor Summary
ConstructorDescriptionThreadSafeSentenceDetectorME
(String language) Initializes aThreadSafeSentenceDetectorME
by downloading a default model for a givenlanguage
.Initializes aThreadSafeSentenceDetectorME
with the specifiedmodel
.ThreadSafeSentenceDetectorME
(SentenceModel model, Dictionary abbDict) Instantiates aThreadSafeSentenceDetectorME
with an existingSentenceModel
. -
Method Summary
-
Constructor Details
-
ThreadSafeSentenceDetectorME
Initializes aThreadSafeSentenceDetectorME
by downloading a default model for a givenlanguage
.- Parameters:
language
- An ISO conform language code.- Throws:
IOException
- Thrown if the model could not be downloaded or saved.
-
ThreadSafeSentenceDetectorME
Initializes aThreadSafeSentenceDetectorME
with the specifiedmodel
.- Parameters:
model
- A validSentenceModel
.
-
ThreadSafeSentenceDetectorME
Instantiates aThreadSafeSentenceDetectorME
with an existingSentenceModel
.- Parameters:
model
- TheSentenceModel
to be used.abbDict
- TheDictionary
to be used. It must fit the language of themodel
.
-
-
Method Details
-
getSentenceProbabilities
public double[] getSentenceProbabilities() -
sentDetect
Description copied from interface:SentenceDetector
Detects sentences in a character sequence.- Specified by:
sentDetect
in interfaceSentenceDetector
- Parameters:
s
- TheCharSequence
for which sentences shall to be detected.- Returns:
- The String[] with the individual sentences as the array elements.
-
sentPosDetect
Description copied from interface:SentenceDetector
Detects sentences in a character sequence.- Specified by:
sentPosDetect
in interfaceSentenceDetector
- Parameters:
s
- TheCharSequence
for which sentences shall be detected.- Returns:
- The array of
spans
(offsets intos
) for each detected sentence as the individuals array elements.
-
close
public void close()- Specified by:
close
in interfaceAutoCloseable
-