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")

Then, add Registered Model Versions (RMVs) to it. This guide lists the various ways to create RMVs.

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 updated