Package opennlp.tools.sentdetect
Class ThreadSafeSentenceDetectorME
java.lang.Object
opennlp.tools.sentdetect.ThreadSafeSentenceDetectorME
- All Implemented Interfaces:
AutoCloseable
,Probabilistic
,SentenceDetector
@ThreadSafe
public class ThreadSafeSentenceDetectorME
extends Object
implements SentenceDetector, Probabilistic, 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.
Note:
This implementation uses a ThreadLocal
. Although the implementation is
lightweight because the model is not duplicated, if you have many long-running threads,
you may run into memory problems.
Be careful when using this in a Jakarta EE application, for example.
The user is responsible for clearing theThreadLocal
via calling close()
.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionThreadSafeSentenceDetectorME
(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
-
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.
-
getSentenceProbabilities
Deprecated.Useprobs()
instead. -
probs
public double[] probs()Description copied from interface:Probabilistic
Retrieves the probabilities of the last decoded sequence.- Specified by:
probs
in interfaceProbabilistic
- Returns:
- An array with the same number of probabilities as tokens were sent to the computational method when it was last called.
-
close
public void close()- Specified by:
close
in interfaceAutoCloseable
-
probs()
instead.