mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
Updates spaCy Universe for amrlib (#6020)
* Updates spaCy Universe for amrlib * Updates to doc based on feedback
This commit is contained in:
parent
d7926de1e5
commit
a6e437b2bf
|
@ -1967,6 +1967,28 @@
|
||||||
"category": ["pipeline"],
|
"category": ["pipeline"],
|
||||||
"tags": ["inflection", "lemmatizer"]
|
"tags": ["inflection", "lemmatizer"]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "amrlib",
|
||||||
|
"slogan": "A python library that makes AMR parsing, generation and visualization simple.",
|
||||||
|
"description": "amrlib is a python module and spaCy add-in for Abstract Meaning Representation (AMR). The system can parse sentences to AMR graphs or generate text from existing graphs. It includes a GUI for visualization and experimentation.",
|
||||||
|
"github": "bjascob/amrlib",
|
||||||
|
"pip": "amrlib",
|
||||||
|
"code_example": [
|
||||||
|
"import spacy",
|
||||||
|
"import amrlib",
|
||||||
|
"amrlib.setup_spacy_extension()",
|
||||||
|
"nlp = spacy.load('en_core_web_sm')",
|
||||||
|
"doc = nlp('This is a test of the spaCy extension. The test has multiple sentences.')",
|
||||||
|
"graphs = doc._.to_amr()",
|
||||||
|
"for graph in graphs:",
|
||||||
|
" print(graph)"
|
||||||
|
],
|
||||||
|
"author": "Brad Jascob",
|
||||||
|
"author_links": {
|
||||||
|
"github": "bjascob"
|
||||||
|
},
|
||||||
|
"category": ["pipeline"]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "blackstone",
|
"id": "blackstone",
|
||||||
"title": "Blackstone",
|
"title": "Blackstone",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user