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 SummaryConstructorsConstructorDescriptionThreadSafeSentenceDetectorME(String language) Initializes aThreadSafeSentenceDetectorMEby downloading a default model for a givenlanguage.Initializes aThreadSafeSentenceDetectorMEwith the specifiedmodel.ThreadSafeSentenceDetectorME(SentenceModel model, Dictionary abbDict) Instantiates aThreadSafeSentenceDetectorMEwith an existingSentenceModel.
- 
Method Summary
- 
Constructor Details- 
ThreadSafeSentenceDetectorMEInitializes aThreadSafeSentenceDetectorMEby 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.
 
- 
ThreadSafeSentenceDetectorMEInitializes aThreadSafeSentenceDetectorMEwith the specifiedmodel.- Parameters:
- model- A valid- SentenceModel.
 
- 
ThreadSafeSentenceDetectorMEInstantiates aThreadSafeSentenceDetectorMEwith an existingSentenceModel.- Parameters:
- model- The- SentenceModelto be used.
- abbDict- The- Dictionaryto be used. It must fit the language of the- model.
 
 
- 
- 
Method Details- 
sentDetectDescription copied from interface:SentenceDetectorDetects sentences in a character sequence.- Specified by:
- sentDetectin interface- SentenceDetector
- Parameters:
- s- The- CharSequencefor which sentences shall to be detected.
- Returns:
- The String[] with the individual sentences as the array elements.
 
- 
sentPosDetectDescription copied from interface:SentenceDetectorDetects sentences in a character sequence.- Specified by:
- sentPosDetectin interface- SentenceDetector
- Parameters:
- s- The- CharSequencefor which sentences shall be detected.
- Returns:
- The array of spans(offsets intos) for each detected sentence as the individuals array elements.
 
- 
getSentenceProbabilitiesDeprecated.Useprobs()instead.
- 
probspublic double[] probs()Description copied from interface:ProbabilisticRetrieves the probabilities of the last decoded sequence.- Specified by:
- probsin interface- Probabilistic
- Returns:
- An array with the same number of probabilities as tokens were sent to the computational method when it was last called.
 
- 
closepublic void close()- Specified by:
- closein interface- AutoCloseable
 
 
- 
probs()instead.