Vetiver
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.
View moreExample
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()
GitHubrstudio/vetiver-python
Categories apis
standalone
Found a mistake or something isn't working?
If you've come across a universe project that isn't working or is incompatible with the reported spaCy version, let us know by opening a discussion thread.
Submit your project
If you have a project that you want the spaCy community to make use of, you can suggest it by submitting a pull request to the spaCy website repository. The Universe database is open-source and collected in a simple JSON file. For more details on the formats and available fields, see the documentation. Looking for inspiration your own spaCy plugin or extension? Check out the project idea section in Discussions.