Closed SaadAhmed433 closed 1 year ago
Hello @SaadAhmed433,
since nlp.pipe
returns a generator, can you do:
for doc in docs:
print(doc._.resolved_text)
I will update the docs accordingly
Yes thanks it works!
@shon-otmazgin Hi, thanks for this great library. I see that resolve text works with spacy, but the fastcoref package itself does not have this feature. It would be very helpful to have this feature because using spacy is much slower when inferencing one text at a time.
Hello
I am trying to use the spacy pipeline feature with resolve text. I am using the quick start example like this
I get the following error
TypeError: 'generator' object is not subscriptable
Is there any work around for this!