mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 18:06:29 +03:00
850 B
850 B
title | tag | source | new |
---|---|---|---|
SentenceRecognizer | class | spacy/pipeline/pipes.pyx | 3 |
A trainable pipeline component for sentence segmentation. For a simpler,
ruse-based strategy, see the Sentencizer
. This class is a
subclass of Pipe
and follows the same API. The component is also available via
the string name "senter"
. After initialization, it is typically added to the
processing pipeline using nlp.add_pipe
.
SentenceRecognizer.__init__
Initialize the sentence recognizer.
Example
# Construction via create_pipe senter = nlp.create_pipe("senter") # Construction from class from spacy.pipeline import SentenceRecognizer senter = SentenceRecognizer()