Quickstart
Verta Model Catalog is the place to publish models that are ready to be consumed by other models or applications.
To use the catalog, first create a Registered Model.
reg_model = client.create_registered_model("my-model-name")
model_version = some_registered_model.create_standard_model(
name="v0",
model_cls=MyModel,
library_dependencies=Python(),
)
That's it. You can now use the RMV for deployment, iteration, and collaboration within your team.
Last modified 1yr ago