Merge branch 'spacy.io' of https://github.com/explosion/spaCy into spacy.io

This commit is contained in:
svlandeg 2021-08-31 10:58:40 +02:00
commit 3f16c45281

View File

@ -2064,11 +2064,9 @@
"github": "nikitakit/self-attentive-parser",
"pip": "benepar",
"code_example": [
"import spacy",
"from benepar.spacy_plugin import BeneparComponent",
"",
"nlp = spacy.load('en')",
"nlp.add_pipe(BeneparComponent('benepar_en'))",
"import benepar, spacy",
"nlp = spacy.load('en_core_web_md')",
"nlp.add_pipe('benepar', config={'model': 'benepar_en3'})",
"doc = nlp('The time for action is now. It is never too late to do something.')",
"sent = list(doc.sents)[0]",
"print(sent._.parse_string)",