Constant
UNI_SENTENCE
Sentence break.
Since v1.0
enum unibreak {
UNI_SENTENCE,
}
Discussion 🔗
Sentence boundaries are often used for triple-click or other methods of selecting or iterating through blocks of text that are larger than single words. They are also used to determine whether words occur within the same sentence in database queries.
Support for sentence break detection can be enabled in the JSON configuration file as shown below:
{
"algorithms": {
"segmentation": [
"sentence"
]
}
}