mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
[DOCS] add vetiver to spacy universe (#12557)
* add vetiver to spacy universe * remove image * update logo to render correctly in thumbnail * apply Basil's suggestion Co-authored-by: Basile Dura <bdura@users.noreply.github.com> * refer to the same model --------- Co-authored-by: Sofie Van Landeghem <svlandeg@users.noreply.github.com> Co-authored-by: Basile Dura <bdura@users.noreply.github.com>
This commit is contained in:
parent
c936db2faf
commit
05df59fd4a
|
@ -4281,6 +4281,37 @@
|
|||
},
|
||||
"category": ["pipeline", "research"],
|
||||
"tags": ["Thai"]
|
||||
},
|
||||
{
|
||||
"id": "vetiver",
|
||||
"title": "Vetiver",
|
||||
"slogan": "Version, share, deploy, and monitor models.",
|
||||
"description": "The goal of vetiver is to provide fluent tooling to version, deploy, and monitor a trained model. Functions handle creating model objects, versioning models, predicting from a remote API endpoint, deploying Dockerfiles, and more.",
|
||||
"github": "rstudio/vetiver-python",
|
||||
"pip": "vetiver",
|
||||
"code_example": [
|
||||
"import spacy",
|
||||
"from vetiver import VetiverModel, VetiverAPI",
|
||||
"",
|
||||
"# If you use this model, you'll need to download it first:",
|
||||
"# python -m spacy download en_core_web_md",
|
||||
"nlp = spacy.load('en_core_web_md')",
|
||||
"# Create deployable model object with your nlp Language object",
|
||||
"v = VetiverModel(nlp, model_name = 'my_model')",
|
||||
"# Try out your API endpoint locally",
|
||||
"VetiverAPI(v).run()"
|
||||
],
|
||||
"code_language": "python",
|
||||
"url": "https://vetiver.rstudio.com/",
|
||||
"thumb": "https://raw.githubusercontent.com/rstudio/vetiver-python/main/docs/figures/square-logo.svg",
|
||||
"author": "Posit, PBC",
|
||||
"author_links": {
|
||||
"twitter": "posit_pbc",
|
||||
"github": "rstudio",
|
||||
"website": "https://posit.co/"
|
||||
},
|
||||
"category": ["apis", "standalone"],
|
||||
"tags": ["apis", "deployment"]
|
||||
}
|
||||
],
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user