mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +03:00
Fix error message and handling of doc.sents
This commit is contained in:
parent
6b215d2dd3
commit
ab7c45b12d
|
@ -508,13 +508,18 @@ cdef class Doc:
|
||||||
yield from self.user_hooks['sents'](self)
|
yield from self.user_hooks['sents'](self)
|
||||||
return
|
return
|
||||||
|
|
||||||
if not self.is_parsed:
|
|
||||||
raise ValueError(
|
|
||||||
"Sentence boundary detection requires the dependency "
|
|
||||||
"parse, which requires a statistical model to be "
|
|
||||||
"installed and loaded. For more info, see the "
|
|
||||||
"documentation: \n%s\n" % about.__docs_models__)
|
|
||||||
cdef int i
|
cdef int i
|
||||||
|
if not self.is_parsed:
|
||||||
|
for i in range(1, self.length):
|
||||||
|
if self.c[i].sent_start != 0:
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
raise ValueError(
|
||||||
|
"Sentence boundaries unset. You can add the 'sentencizer' "
|
||||||
|
"component to the pipeline with: "
|
||||||
|
"nlp.add_pipe(nlp.create_pipe('sentencizer')) "
|
||||||
|
"Alternatively, add the dependency parser, or set "
|
||||||
|
"sentence boundaries by setting doc[i].sent_start")
|
||||||
start = 0
|
start = 0
|
||||||
for i in range(1, self.length):
|
for i in range(1, self.length):
|
||||||
if self.c[i].sent_start == 1:
|
if self.c[i].sent_start == 1:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user