mirror of https://github.com/explosion/spaCy.git
Refer to correct object
This commit is contained in:
parent
b1f45c9da3
commit
e2fe83e35d
|
@ -21,7 +21,7 @@ def noun_chunks(doclike):
|
|||
np_right_deps = [doc.vocab.strings.add(label) for label in right_labels]
|
||||
stop_deps = [doc.vocab.strings.add(label) for label in stop_labels]
|
||||
token = doc[0]
|
||||
while token and token.i < len(doc):
|
||||
while token and token.i < len(doclike):
|
||||
if token.pos in [PROPN, NOUN, PRON]:
|
||||
left, right = noun_bounds(
|
||||
doc, token, np_left_deps, np_right_deps, stop_deps
|
||||
|
|
Loading…
Reference in New Issue