Class ThreadSafeSentenceDetectorME
java.lang.Object
opennlp.tools.sentdetect.ThreadSafeSentenceDetectorME
- All Implemented Interfaces:
AutoCloseable, opennlp.tools.ml.Probabilistic, opennlp.tools.sentdetect.SentenceDetector
@ThreadSafe
public class ThreadSafeSentenceDetectorME
extends Object
implements opennlp.tools.sentdetect.SentenceDetector, opennlp.tools.ml.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 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
-
ThreadSafeSentenceDetectorME
Initializes 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.
-
ThreadSafeSentenceDetectorME
Initializes aThreadSafeSentenceDetectorMEwith the specifiedmodel.- Parameters:
model- A validSentenceModel.
-
ThreadSafeSentenceDetectorME
Instantiates aThreadSafeSentenceDetectorMEwith an existingSentenceModel.- Parameters:
model- TheSentenceModelto be used.abbDict- TheDictionaryto be used. It must fit the language of themodel.
-
-
Method Details
-
sentDetect
- Specified by:
sentDetectin interfaceopennlp.tools.sentdetect.SentenceDetector
-
sentPosDetect
- Specified by:
sentPosDetectin interfaceopennlp.tools.sentdetect.SentenceDetector
-
getSentenceProbabilities
Deprecated.Useprobs()instead. -
probs
public double[] probs()- Specified by:
probsin interfaceopennlp.tools.ml.Probabilistic
-
close
public void close()- Specified by:
closein interfaceAutoCloseable
-
probs()instead.