Retrieve model version metadata from app

After logging your models to Vectice, you can retrieve the model's metadata using the following code which will return a Model Version Representation.

A Model Version Representation shows information about a specific version of a model from the Vectice app. It makes it easier to get and read this information through the API.

A model version ID starts with 'MDV-XXX'. Retrieve the ID in the Vectice App, then use the ID with the following methods to get the model version:

connect.model_version('MDV-XXX') or connect.browse('MDV-XXX')

import vectice
connect = vectice.connect(api_token="your-api-key")

# Retrieve a specific model version metadata
connect.model_version('MDV-XXXX')

For more information on return values and other associated methods, view the Model Version Representation API documentation.

Last updated